From f420005b579617c55d19a35fe174322c4f4df04d Mon Sep 17 00:00:00 2001 From: Jack <41238731+fisjac@users.noreply.github.com> Date: Wed, 15 May 2024 10:52:15 -0500 Subject: [PATCH] chore(docs): updating alerts & reports documentation WEBDRIVER_BASEURL settings for docker compose (#27951) Co-authored-by: Evan Rusackas --- docker/pythonpath_dev/superset_config.py | 2 +- docs/docs/configuration/alerts-reports.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/pythonpath_dev/superset_config.py b/docker/pythonpath_dev/superset_config.py index 005cc600a..69477d56e 100644 --- a/docker/pythonpath_dev/superset_config.py +++ b/docker/pythonpath_dev/superset_config.py @@ -94,7 +94,7 @@ CELERY_CONFIG = CeleryConfig FEATURE_FLAGS = {"ALERT_REPORTS": True} ALERT_REPORTS_NOTIFICATION_DRY_RUN = True -WEBDRIVER_BASEURL = "http://superset:8088/" +WEBDRIVER_BASEURL = "http://superset:8088/" # When using docker compose baseurl should be http://superset_app:8088/ # The base URL for the email report hyperlinks. WEBDRIVER_BASEURL_USER_FRIENDLY = WEBDRIVER_BASEURL diff --git a/docs/docs/configuration/alerts-reports.mdx b/docs/docs/configuration/alerts-reports.mdx index 9e3474a5d..cd4ed965c 100644 --- a/docs/docs/configuration/alerts-reports.mdx +++ b/docs/docs/configuration/alerts-reports.mdx @@ -160,7 +160,7 @@ WEBDRIVER_OPTION_ARGS = [ ] # This is for internal use, you can keep http -WEBDRIVER_BASEURL = "http://superset:8088" +WEBDRIVER_BASEURL = "http://superset:8088" # When running using docker compose use "http://superset_app:8088' # This is the link sent to the recipient. Change to your domain, e.g. https://superset.mydomain.com WEBDRIVER_BASEURL_USER_FRIENDLY = "http://localhost:8088" ```