We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01a7bd6 commit d380a83Copy full SHA for d380a83
src/client/common/process/pythonDaemonPool.ts
@@ -283,7 +283,7 @@ export class PythonDaemonExecutionServicePool implements IPythonDaemonExecutionS
283
*/
284
@traceDecorators.error('Pinging Daemon Failed')
285
private async testDaemon(connection: MessageConnection){
286
- // If we don't get a reply to the ping in 5 minutes assume it will never work. Bomb out.
+ // If we don't get a reply to the ping in 5 seconds assume it will never work. Bomb out.
287
// At this point there should be some information logged in stderr of the daemon process.
288
const fail = createDeferred<{pong: string}>();
289
const timer = setTimeout(() => fail.reject(new Error('Timeout waiting for daemon to start')), 5_000);
0 commit comments