Skip to content

Commit

Permalink
Merge pull request #3311 from Hackwar/patch-1
Browse files Browse the repository at this point in the history
Extend timeout for UML generation to 20mins
  • Loading branch information
jaapio committed Sep 27, 2022
2 parents b9b1c8f + 3b2cf23 commit bda2530
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function render(string $diagram): ?string
$this->plantUmlBinaryPath = 'plantuml';
}

$process = new Process([$this->plantUmlBinaryPath, '-tsvg', $pumlFileLocation], __DIR__, null, null, 600.0);
$process = new Process([$this->plantUmlBinaryPath, '-tsvg', $pumlFileLocation], __DIR__, null, null, 1200.0);
$process->run();

if (!$process->isSuccessful()) {
Expand Down

0 comments on commit bda2530

Please sign in to comment.