Skip to content

Commit

Permalink
Merge pull request #13 from spotinst/BGD-4393-fix-running-module-and-…
Browse files Browse the repository at this point in the history
…kernel-polling-delay-message

Bgd 4393 fix running module and kernel polling delay message
  • Loading branch information
sigmarkarl authored Jan 15, 2024
2 parents da57ba4 + b80f713 commit d35201c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jupyterlab/staging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
"@jupyterlab/rendermime": "~4.0.10",
"@jupyterlab/rendermime-extension": "~4.0.10",
"@jupyterlab/rendermime-interfaces": "~3.8.10",
"@jupyterlab/running": "../../packages/services",
"@jupyterlab/running": "../../packages/running",
"@jupyterlab/running-extension": "~4.0.10",
"@jupyterlab/services": "../../packages/services",
"@jupyterlab/settingeditor": "~4.0.10",
Expand Down
2 changes: 1 addition & 1 deletion packages/services/src/session/restapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export async function startSession(
body: JSON.stringify(bodyjson)
};
await sleep(2000);
console.log("Waiting for kernel in session " + data.id + " for " + count + " seconds");
console.log("Waiting for kernel in session " + data.id + " for " + 2*count + " seconds");
}
}
if (count >= 300) {
Expand Down

0 comments on commit d35201c

Please sign in to comment.