-
Notifications
You must be signed in to change notification settings - Fork 300
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Delete ctrl if associated kernel is deleted #12148
Conversation
@@ -302,7 +341,7 @@ export class ControllerRegistration implements IControllerRegistration { | |||
// TODO: Don't hide controllers that are already associated with a notebook. | |||
// If we have a notebook opened and its using a kernel. | |||
// Else we end up killing the execution as well. | |||
if (this.isFiltered(item.connection) && !this.isControllerAttachedToADocument(item)) { | |||
if (this.isFiltered(item.connection) && this.canControllerBeDisposed(item)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was incorrect, wonder how many users use the old filter UI, cant wait for that to be removed
too much stuff to manage due to kernel filters
59ef208
to
737ae42
Compare
Codecov Report
@@ Coverage Diff @@
## main #12148 +/- ##
=======================================
- Coverage 70% 70% -1%
=======================================
Files 497 497
Lines 31276 31384 +108
Branches 4907 4922 +15
=======================================
+ Hits 21970 22034 +64
- Misses 7438 7470 +32
- Partials 1868 1880 +12
|
Pull request was converted to draft
No description provided.