Skip to content

Commit 81ad7e5

Browse files
author
v-reyder
committed
Add cast to str in produciton config, as in testing
1 parent 41090b0 commit 81ad7e5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rootfs/api/settings/production.py

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

310310
KUBERNETES_DEPLOYMENTS_REVISION_HISTORY_LIMIT = os.environ.get('KUBERNETES_DEPLOYMENTS_REVISION_HISTORY_LIMIT', None) # noqa
311311

312-
DEIS_DEFAULT_CONFIG_TAGS = os.environ.get('DEIS_DEFAULT_CONFIG_TAGS', '')
312+
DEIS_DEFAULT_CONFIG_TAGS = str(os.environ.get('DEIS_DEFAULT_CONFIG_TAGS', ''))
313313

314314
# How long k8s waits for a pod to finish work after a SIGTERM before sending SIGKILL
315315
KUBERNETES_POD_TERMINATION_GRACE_PERIOD_SECONDS = int(os.environ.get('KUBERNETES_POD_TERMINATION_GRACE_PERIOD_SECONDS', 30)) # noqa

0 commit comments

Comments
 (0)