From 58c3e664440da81742f86e50ad6819c5bf80f28c Mon Sep 17 00:00:00 2001 From: kiran1415 Date: Fri, 18 Aug 2023 01:15:59 +0530 Subject: [PATCH 1/3] Fix: Profile MFE URL typofix in development environment settings --- tutormfe/patches/openedx-lms-development-settings | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutormfe/patches/openedx-lms-development-settings b/tutormfe/patches/openedx-lms-development-settings index 2ea4871..1da947c 100644 --- a/tutormfe/patches/openedx-lms-development-settings +++ b/tutormfe/patches/openedx-lms-development-settings @@ -44,7 +44,7 @@ MFE_CONFIG["LEARNING_BASE_URL"] = "http://{{ MFE_HOST }}:{{ app["port"] }}" {% elif app_name == "ora-grading" %} ORA_GRADING_MICROFRONTEND_URL = "http://{{ MFE_HOST }}:{{ app["port"] }}/ora-grading" {% elif app_name == "profile" %} -PROFILE_MICROFRONTEND_URL = "http:/{{ MFE_HOST }}:{{ app["port"] }}/profile/u/" +PROFILE_MICROFRONTEND_URL = "http://{{ MFE_HOST }}:{{ app["port"] }}/profile/u/" MFE_CONFIG["ACCOUNT_PROFILE_URL"] = "http://{{ MFE_HOST }}:{{ app["port"] }}/profile" {% elif app_name == "communications" %} COMMUNICATIONS_MICROFRONTEND_URL = "http://{{ MFE_HOST }}:{{ app["port"] }}/communications" From e852187d24eb5bd162a9d05667e9d8f232457eb7 Mon Sep 17 00:00:00 2001 From: kiran1415 Date: Sat, 19 Aug 2023 19:01:44 +0530 Subject: [PATCH 2/3] Fix: Added the changelog entry --- ...0230819_190050_kiran.767.767_settings_typo_fix.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 changelog.d/20230819_190050_kiran.767.767_settings_typo_fix.md diff --git a/changelog.d/20230819_190050_kiran.767.767_settings_typo_fix.md b/changelog.d/20230819_190050_kiran.767.767_settings_typo_fix.md new file mode 100644 index 0000000..a1bc2f7 --- /dev/null +++ b/changelog.d/20230819_190050_kiran.767.767_settings_typo_fix.md @@ -0,0 +1,12 @@ + + + + + \ No newline at end of file From 41cefd80f9a87b88ae448be072d19397b5214502 Mon Sep 17 00:00:00 2001 From: Kiran Chauhan <46924299+kiran1415@users.noreply.github.com> Date: Sat, 19 Aug 2023 19:11:44 +0530 Subject: [PATCH 3/3] Update 20230819_190050_kiran.767.767_settings_typo_fix.md --- ...230819_190050_kiran.767.767_settings_typo_fix.md | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/changelog.d/20230819_190050_kiran.767.767_settings_typo_fix.md b/changelog.d/20230819_190050_kiran.767.767_settings_typo_fix.md index a1bc2f7..dd07b77 100644 --- a/changelog.d/20230819_190050_kiran.767.767_settings_typo_fix.md +++ b/changelog.d/20230819_190050_kiran.767.767_settings_typo_fix.md @@ -1,12 +1 @@ - - - - - \ No newline at end of file +[Bugfix] Corrected typo error in PROFILE_MICROFRONTEND_URL of development env settings (by @kiran1415)