diff --git a/changelog.d/20241212_183857_danyal.faheem_fix_base_url.md b/changelog.d/20241212_183857_danyal.faheem_fix_base_url.md new file mode 100644 index 0000000..5a58424 --- /dev/null +++ b/changelog.d/20241212_183857_danyal.faheem_fix_base_url.md @@ -0,0 +1 @@ +- [Bugfix] Fix the LTI_DEFAULT_JUPYTER_HUB_URL which had an extra '%' in the HTTPS URL. (by @Danyal-Faheem) \ No newline at end of file diff --git a/tutorjupyter/patches/openedx-common-settings b/tutorjupyter/patches/openedx-common-settings index 09923c3..cf41c3c 100644 --- a/tutorjupyter/patches/openedx-common-settings +++ b/tutorjupyter/patches/openedx-common-settings @@ -1,3 +1,3 @@ # Jupyter XBlock LTI_DEFAULT_JUPYTER_PASSPORT_ID = "{{ JUPYTER_DEFAULT_PASSPORT_ID }}" -LTI_DEFAULT_JUPYTER_HUB_URL = "{% if ENABLE_HTTPS %}%https{% else %}http{% endif %}://{{ JUPYTER_HOST }}" +LTI_DEFAULT_JUPYTER_HUB_URL = "{% if ENABLE_HTTPS %}https{% else %}http{% endif %}://{{ JUPYTER_HOST }}" diff --git a/tutorjupyter/patches/openedx-development-settings b/tutorjupyter/patches/openedx-development-settings index 9f45079..a345181 100644 --- a/tutorjupyter/patches/openedx-development-settings +++ b/tutorjupyter/patches/openedx-development-settings @@ -1,3 +1,3 @@ LTI_DEFAULT_JUPYTER_PASSPORT_ID = "{{ JUPYTER_DEFAULT_PASSPORT_ID }}" -LTI_DEFAULT_JUPYTER_HUB_URL = "{% if ENABLE_HTTPS %}%https{% else %}http{% endif %}://{{ JUPYTER_HOST }}:9045" +LTI_DEFAULT_JUPYTER_HUB_URL = "{% if ENABLE_HTTPS %}https{% else %}http{% endif %}://{{ JUPYTER_HOST }}:9045"