Skip to content

Commit ef99390

Browse files
author
Alan Christie
committed
fix: Fix INGRESS_SECURE definition
1 parent 1c6246a commit ef99390

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# Configuration...
3333
_INGRESS_LOCATION: str = os.getenv("ESS_INGRESS_LOCATION", "localhost:8080")
3434
assert _INGRESS_LOCATION, "ESS_INGRESS_LOCATION environment variable must be set"
35-
_INGRESS_SECURE: bool = os.getenv("WS_INGRESS_SECURE", "no").lower() == "yes"
35+
_INGRESS_SECURE: bool = os.getenv("ESS_INGRESS_SECURE", "no").lower() == "yes"
3636
_LOGGER.info("INGRESS_LOCATION: %s", _INGRESS_LOCATION)
3737
_LOGGER.info("INGRESS_SECURE: %s", _INGRESS_SECURE)
3838

0 commit comments

Comments
 (0)