Skip to content

Commit 4a61cda

Browse files
committed
changelog for DASH_PROXY and lint
1 parent b9c46a1 commit 4a61cda

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [UNRELEASED]
66
### Added
7+
- [#1289](https://github.com/plotly/dash/pull/1289) Supports `DASH_PROXY` env var to tell `app.run_server` to report the correct URL to view your app, when it's being proxied. Throws an error if the proxy is incompatible with the host and port you've given the server.
78
- [#1240](https://github.com/plotly/dash/pull/1240) Adds `callback_context` to clientside callbacks (e.g. `dash_clientside.callback_context.triggered`). Supports `triggered`, `inputs`, `inputs_list`, `states`, and `states_list`, all of which closely resemble their serverside cousins.
89

910
### Changed

dash/dash.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1599,7 +1599,7 @@ def verify_url_part(served_part, url_part, part_name):
15991599
else:
16001600
display_url = (protocol, host, ":{}".format(port), path)
16011601

1602-
self.logger.info("Running on {}://{}{}{}".format(*display_url))
1602+
self.logger.info("Running on %s://%s%s%s", *display_url)
16031603

16041604
if not os.environ.get("FLASK_ENV"):
16051605
os.environ["FLASK_ENV"] = "development"

0 commit comments

Comments
 (0)