File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
src/client/datascience/jupyter Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 46
46
([ #9701 ] ( https://github.com/Microsoft/vscode-python/issues/9701 ) )
47
47
48
48
### Fixes
49
+ 1 . add --ip=127.0.0.1 argument of jupyter server when running in k8s container
50
+ ([ #9976 ] ( https://github.com/Microsoft/vscode-python/issues/9976 ) )
49
51
1 . Correct the server and kernel text for when not connected to a server.
50
52
([ #9933 ] ( https://github.com/Microsoft/vscode-python/issues/9933 ) )
51
53
1 . Make sure to clear variable list on restart kernel.
Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ export class NotebookStarter implements Disposable {
211
211
// Check for a docker situation.
212
212
try {
213
213
const cgroup = await this . fileSystem . readFile ( '/proc/self/cgroup' ) . catch ( ( ) => '' ) ;
214
- if ( ! cgroup . includes ( 'docker' ) ) {
214
+ if ( ! cgroup . includes ( 'docker' ) && ! cgroup . includes ( 'kubepods' ) ) {
215
215
return args ;
216
216
}
217
217
// We definitely need an ip address.
You can’t perform that action at this time.
0 commit comments