Skip to content

Commit

Permalink
Merge pull request #43 from poldracklab/oesteban-patch-1
Browse files Browse the repository at this point in the history
[FIX] Problematic cast to int of empty string
  • Loading branch information
oesteban authored Aug 14, 2018
2 parents cd79e94 + 5c8c873 commit 573505b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dockereve-master/eve-app/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@
'API_VERSION': 'v1',
'ALLOWED_FILTERS': ['*'],
'MONGO_HOST': os.environ.get('MONGODB_HOST', ''),
'MONGO_PORT': int(os.environ.get('MONGODB_PORT', '')),
'MONGO_PORT': int(os.environ.get('MONGODB_PORT', 27017)),
'MONGO_DBNAME': 'mriqc_api',
'PUBLIC_METHODS': ['GET'],
'PUBLIC_ITEM_METHODS': ['GET'],
Expand Down

0 comments on commit 573505b

Please sign in to comment.