-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Use a proxy web socket with a real kernel in UI layer for IPyWidgets #10887
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
Conversation
Codecov Report
@@ Coverage Diff @@
## master #10887 +/- ##
==========================================
- Coverage 60.67% 60.63% -0.05%
==========================================
Files 580 580
Lines 31528 31555 +27
Branches 4479 4490 +11
==========================================
+ Hits 19131 19132 +1
- Misses 11427 11445 +18
- Partials 970 978 +8
Continue to review full report at Codecov.
|
@@ -4,6 +4,8 @@ | |||
import * as WebSocketWS from 'ws'; | |||
import { traceInfo } from '../../common/logger'; | |||
|
|||
export const JupyterWebSockets = new Map<string, WebSocketWS>(); |
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 is easier than a static property and works.
We couldnt use a static property due to restarts.
This works better as it is strongly typed.
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.
Kudos, SonarCloud Quality Gate passed!
|
For #10606