Skip to content

Commit 0fbe68d

Browse files
committed
fix: Pass cancellation token to startServer
Signed-off-by: Tomas Kislan <tomas@kislan.sk>
1 parent 673bc3a commit 0fbe68d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/notebooks/deepnote/deepnoteKernelAutoSelector.node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ export class DeepnoteKernelAutoSelector implements IDeepnoteKernelAutoSelector,
441441
// as the configuration object may have stale serverInfo from a previous session
442442
logger.info(`Ensuring server is running for configuration ${configuration.id}`);
443443
progress.report({ message: 'Starting Deepnote server...' });
444-
await this.configurationManager.startServer(configuration.id);
444+
await this.configurationManager.startServer(configuration.id, progressToken);
445445

446446
// ALWAYS refresh configuration to get current serverInfo
447447
// This is critical because the configuration object may have been cached

0 commit comments

Comments
 (0)