Skip to content

Commit 2af0a5e

Browse files
committed
Merge pull request #662 from krancour/fix-reserved-names
chore(settings): Allow for comma-delimited RESERVED_NAMES
2 parents 5821726 + 1def311 commit 2af0a5e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rootfs/deis/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@
249249
TEMPDIR = tempfile.mkdtemp(prefix='deis')
250250

251251
# names which apps cannot reserve for routing
252-
DEIS_RESERVED_NAMES = [os.environ.get('RESERVED_NAMES', 'deis')]
252+
DEIS_RESERVED_NAMES = os.environ.get('RESERVED_NAMES', '').replace(' ', '').split(',')
253253

254254
# default scheduler settings
255255
SCHEDULER_MODULE = 'scheduler'

0 commit comments

Comments
 (0)