From 2397df7f2296e7366c7bf4978f7f1d2823c301fa Mon Sep 17 00:00:00 2001 From: Raj <44002319+rajmusuku@users.noreply.github.com> Date: Tue, 12 Mar 2019 08:21:00 -0700 Subject: [PATCH] #4339: Kernel change event occurs after model load (#4366) --- src/sql/parts/notebook/notebookInput.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/sql/parts/notebook/notebookInput.ts b/src/sql/parts/notebook/notebookInput.ts index 0703ab8670..bec0272277 100644 --- a/src/sql/parts/notebook/notebookInput.ts +++ b/src/sql/parts/notebook/notebookInput.ts @@ -45,7 +45,6 @@ export class NotebookEditorModel extends EditorModel { // Hook to content change events notebook.modelReady.then(() => { this._register(notebook.model.contentChanged(e => this.updateModel())); - this._register(notebook.model.kernelChanged(e => this.updateModel())); }, err => undefined); } }));