Skip to content

Commit

Permalink
Fix mongodb port to 27017 in the api.
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislavsulc committed Jun 4, 2024
1 parent 0f2c883 commit 7bd8607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mupifDB/api/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

import table_structures

client = MongoClient("mongodb://localhost:"+os.environ.get('MUPIFDB_MONGODB_PORT','27107'))
client = MongoClient("mongodb://localhost:"+os.environ.get('MUPIFDB_MONGODB_PORT','27017'))
db = client.MuPIF

tags_metadata = [
Expand Down

0 comments on commit 7bd8607

Please sign in to comment.