This repository has been archived by the owner on Mar 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
BaseURL Configuration for MarvinAI Notebook #32
Open
vinstonpandiyan
wants to merge
3
commits into
apache:develop
Choose a base branch
from
vinstonpandiyan:patch-1
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,7 @@ def test_notebook(system_mocked, sys_mocked): | |
spark_conf = '/opt/spark/conf' | ||
system_mocked.return_value = 1 | ||
|
||
notebook(ctx, port, enable_security, spark_conf, allow_root) | ||
notebook(ctx, port, '/', enable_security, spark_conf, allow_root) | ||
|
||
system_mocked.assert_called_once_with('SPARK_CONF_DIR=/opt/spark/conf YARN_CONF_DIR=/opt/spark/conf jupyter notebook --notebook-dir /tmp/notebooks --ip 0.0.0.0 --port 8888 --no-browser --config ' + os.environ["MARVIN_ENGINE_PATH"] + '/marvin_python_toolbox/extras/notebook_extensions/jupyter_notebook_config.py --NotebookApp.token=') | ||
|
||
|
@@ -55,7 +55,7 @@ def test_notebook_with_security(system_mocked, sys_mocked): | |
spark_conf = '/opt/spark/conf' | ||
system_mocked.return_value = 1 | ||
|
||
notebook(ctx, port, enable_security, spark_conf, allow_root) | ||
notebook(ctx, port, '/', enable_security, spark_conf, allow_root) | ||
|
||
system_mocked.assert_called_once_with('SPARK_CONF_DIR=/opt/spark/conf YARN_CONF_DIR=/opt/spark/conf jupyter notebook --notebook-dir /tmp/notebooks --ip 0.0.0.0 --port 8888 --no-browser --config ' + os.environ["MARVIN_ENGINE_PATH"] + '/marvin_python_toolbox/extras/notebook_extensions/jupyter_notebook_config.py') | ||
|
||
|
@@ -69,7 +69,7 @@ def test_jupyter_lab(system_mocked, sys_mocked): | |
spark_conf = '/opt/spark/conf' | ||
system_mocked.return_value = 1 | ||
|
||
lab(ctx, port, enable_security, spark_conf) | ||
lab(ctx, port, '/', enable_security, spark_conf) | ||
|
||
system_mocked.assert_called_once_with('SPARK_CONF_DIR=/opt/spark/conf YARN_CONF_DIR=/opt/spark/conf jupyter-lab --notebook-dir /tmp/notebooks --ip 0.0.0.0 --port 8888 --no-browser --NotebookApp.token=') | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Adding '--NotebookApp.base_url=/' for assertion error fix. |
||
|
||
|
@@ -83,6 +83,6 @@ def test_jupyter_lab_with_security(system_mocked, sys_mocked): | |
spark_conf = '/opt/spark/conf' | ||
system_mocked.return_value = 1 | ||
|
||
lab(ctx, port, enable_security, spark_conf) | ||
lab(ctx, port, '/', enable_security, spark_conf) | ||
|
||
system_mocked.assert_called_once_with('SPARK_CONF_DIR=/opt/spark/conf YARN_CONF_DIR=/opt/spark/conf jupyter-lab --notebook-dir /tmp/notebooks --ip 0.0.0.0 --port 8888 --no-browser') | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Adding '--NotebookApp.base_url=/' for assertion error fix. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I think it is better to still create a variable called
base_url
instead of directly put a'/'
in the code.