Skip to content

Commit a95e3ae

Browse files
rjmholtTylerLeonhardt
authored andcommitted
Increase connection timeout (#1485)
* Increase connection timeout * Fix silliness
1 parent 0f54035 commit a95e3ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ export function waitForSessionFile(sessionFilePath: string, callback: IWaitForSe
8585
}
8686
}
8787

88-
// Try once per second for 60 seconds, one full minute
89-
innerTryFunc(60, 1000);
88+
// Try once every 2 seconds, 60 times - making two full minutes
89+
innerTryFunc(60, 2000);
9090
}
9191

9292
export function readSessionFile(sessionFilePath: string): IEditorServicesSessionDetails {

0 commit comments

Comments
 (0)