We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aed0227 commit 3b02f72Copy full SHA for 3b02f72
packages/php-wasm/universal/src/lib/php-process-manager.ts
@@ -20,7 +20,7 @@ export interface ProcessManagerOptions {
20
* cannot spawn a new one. If the timeout is reached, we assume
21
* all the PHP instances are deadlocked and a throw MaxPhpInstancesError.
22
*
23
- * Default: 5000
+ * Default: 30000
24
*/
25
timeout?: number;
26
/**
@@ -91,7 +91,7 @@ export class PHPProcessManager implements PHPInstanceManager {
91
* Wait up to 5 seconds for resources to become available
92
* before assuming that all the PHP instances are deadlocked.
93
94
- timeout: options?.timeout || 5000,
+ timeout: options?.timeout || 30000,
95
});
96
}
97
0 commit comments