Skip to content

Commit 3d6222b

Browse files
committed
Don't hard-code KIWI_TENANTS_DOMAIN while testing
1 parent 52174e9 commit 3d6222b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test_project/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474

7575
# Allows serving non-public tenants on a sub-domain
7676
# WARNING: doesn't work well when you have a non-standard port-number
77-
KIWI_TENANTS_DOMAIN = 'tenants.localdomain'
77+
KIWI_TENANTS_DOMAIN = os.getenv("KIWI_TENANTS_DOMAIN", 'tenants.localdomain')
7878

7979

8080
# application specific configuration

0 commit comments

Comments
 (0)