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 76737d0 commit dd0456cCopy full SHA for dd0456c
src/client/datascience/interactive-common/interactiveBase.ts
@@ -412,7 +412,6 @@ export abstract class InteractiveBase extends WebViewHost<IInteractiveWindowMapp
412
public async interruptKernel(): Promise<void> {
413
if (this._notebook && !this.restartingKernel) {
414
this.restartingKernel = true;
415
- this.startProgress();
416
417
const status = this.statusProvider.set(
418
localize.DataScience.interruptKernelStatus(),
@@ -448,7 +447,6 @@ export abstract class InteractiveBase extends WebViewHost<IInteractiveWindowMapp
448
447
this.applicationShell.showErrorMessage(err);
449
} finally {
450
this.restartingKernel = false;
451
- this.stopProgress();
452
}
453
454
0 commit comments