Skip to content

Commit e5cc038

Browse files
committed
Process timeout tip
1 parent 25b61d9 commit e5cc038

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Parallel/Process.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public function request(array $data): void
110110
$this->in->write($data);
111111
$this->timer = $this->loop->addTimer($this->timeoutSeconds, function (): void {
112112
$onError = $this->onError;
113-
$onError(new \Exception(sprintf('Child process timed out after %.1f seconds.', $this->timeoutSeconds)));
113+
$onError(new \Exception(sprintf('Child process timed out after %.1f seconds. Try making it longer with parallel.processTimeout setting.', $this->timeoutSeconds)));
114114
});
115115
}
116116

0 commit comments

Comments
 (0)