Skip to content

Commit 18ba15e

Browse files
ZsailerGitHub Enterprise
authored and
GitHub Enterprise
committed
Set the cookie_secret_file from entrypoint (jupyter-server#394)
* use entrypoint to set cookie_secret_file * Bump to 0.20.4
1 parent ed1d6c4 commit 18ba15e

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.20.3" # pragma: no cover
1+
__version__ = "0.20.4" # pragma: no cover

data_studio_jupyter_extensions/modes/cluster_cluster.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ def load_mode():
1212
"quit_button": False,
1313
"token": "",
1414
"allow_remote_access": True,
15-
"cookie_secret_file": "/app/jupyter_cookie_secret",
1615
},
1716
"ConnectionFileMixin": {"transport": "tcp"},
1817
"HubbleAgentConfigurable": {"enabled": True},

deployment/bin/studio.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ NB_PREFIX=${NB_PREFIX:-/}
2020
jupyter datastudio \
2121
--ServerApp.base_url="$NB_PREFIX" \
2222
--ServerApp.root_dir="$NOTEBOOKS_DIR" \
23+
--ServerApp.cookie_secret_file="$BASE_DIR/jupyter_cookie_secret" \
2324
$@

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ testpaths = [
2323
]
2424

2525
[tool.tbump.version]
26-
current = "0.20.3"
26+
current = "0.20.4"
2727
regex = '''
2828
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
2929
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?

src/status.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import { ISessionContext, ReactWidget } from '@jupyterlab/apputils';
3131
import { EventListener } from './eventlistener';
3232

3333
// This is managed by tbump config in pyproject.toml
34-
const VERSION = '0.20.3';
34+
const VERSION = '0.20.4';
3535

3636
// Define the error states
3737
// https://github.pie.apple.com/pie-data-studio/notebook-service/blob/761d63604966db5918d2e491c0f89cce454b7f67/app/com/apple/datastudio/model/ResourceState.scala#L20

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.20.3
1+
0.20.4

0 commit comments

Comments
 (0)