check that notebook controller are unique per id

This commit is contained in:
Johannes Rieken
2021-04-16 14:22:44 +02:00
parent 217359a80d
commit 95932045c7
6 changed files with 26 additions and 12 deletions

View File

@@ -1107,7 +1107,7 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
},
createNotebookController(options) {
checkProposedApiEnabled(extension);
return extHostNotebookKernels.createKernel(extension, options);
return extHostNotebookKernels.createNotebookController(extension, options);
}
};