Add unique value to cms db name

This commit is contained in:
Michael Youngstrom
2018-10-18 11:31:31 -04:00
parent 75a739e252
commit dea812ecd0

View File

@@ -97,7 +97,7 @@ CONTENTSTORE = {
'ENGINE': 'xmodule.contentstore.mongo.MongoContentStore',
'DOC_STORE_CONFIG': {
'host': MONGO_HOST,
'db': 'test_xcontent',
'db': 'test_xcontent_{}'.format(THIS_UUID),
'port': MONGO_PORT_NUM,
'collection': 'dont_trip',
},