Skip to content

Commit

Permalink
passed max_input_size to parent process
Browse files Browse the repository at this point in the history
  • Loading branch information
peteradeojo committed Oct 1, 2023
1 parent 9635abc commit 4352c45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Runtime/ParentRuntime.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class ParentRuntime extends BaseParentRuntime
{
public static function createProcess($task, ?int $outputLength = null, ?string $binary = 'php', ?int $max_input_size = 100000): Runnable
{
$runnable = parent::createProcess($task, $outputLength, $binary);
$runnable = parent::createProcess($task, $outputLength, $binary, $max_input_size);

if ($runnable instanceof SynchronousProcess) {
return $runnable;
Expand Down

0 comments on commit 4352c45

Please sign in to comment.