diff --git a/docs/docs/installation/configuring-superset.mdx b/docs/docs/installation/configuring-superset.mdx index 9be7b8e85e31d..c99b1cd8e7d62 100644 --- a/docs/docs/installation/configuring-superset.mdx +++ b/docs/docs/installation/configuring-superset.mdx @@ -17,8 +17,6 @@ Here are some of the parameters you can set in that file: # Superset specific config ROW_LIMIT = 5000 -SUPERSET_WEBSERVER_PORT = 8088 - # Flask App Builder configuration # Your App secret key will be used for securely signing the session cookie # and encrypting sensitive information on the database diff --git a/superset/config.py b/superset/config.py index 267ad64391d02..0a8249ef092d4 100644 --- a/superset/config.py +++ b/superset/config.py @@ -166,10 +166,6 @@ def _try_json_readsha(filepath: str, length: int) -> Optional[str]: # values may be "Last day", "Last week", " : now", etc. DEFAULT_TIME_FILTER = NO_TIME_RANGE -SUPERSET_WEBSERVER_PROTOCOL = "http" -SUPERSET_WEBSERVER_ADDRESS = "0.0.0.0" -SUPERSET_WEBSERVER_PORT = 8088 - # This is an important setting, and should be lower than your # [load balancer / proxy / envoy / kong / ...] timeout settings. # You should also make sure to configure your WSGI server diff --git a/tests/integration_tests/superset_test_config.py b/tests/integration_tests/superset_test_config.py index c3f9b350f8e81..bb4abed893660 100644 --- a/tests/integration_tests/superset_test_config.py +++ b/tests/integration_tests/superset_test_config.py @@ -36,7 +36,6 @@ DATA_DIR, "unittests.integration_tests.db" ) DEBUG = False -SUPERSET_WEBSERVER_PORT = 8081 SILENCE_FAB = False # Allowing SQLALCHEMY_DATABASE_URI and SQLALCHEMY_EXAMPLES_URI to be defined as an env vars for # continuous integration diff --git a/tests/integration_tests/superset_test_config_thumbnails.py b/tests/integration_tests/superset_test_config_thumbnails.py index 9f621efabbf4d..30354c0bb18f1 100644 --- a/tests/integration_tests/superset_test_config_thumbnails.py +++ b/tests/integration_tests/superset_test_config_thumbnails.py @@ -24,7 +24,6 @@ DATA_DIR, "unittests.integration_tests.db" ) DEBUG = True -SUPERSET_WEBSERVER_PORT = 8081 # Allowing SQLALCHEMY_DATABASE_URI to be defined as an env var for # continuous integration