Skip to content

Commit

Permalink
Merge pull request #11 from cloudblue/fix/LITE-26978
Browse files Browse the repository at this point in the history
LITE-26978 Fixed DB creation location #2
  • Loading branch information
maxipavlovic authored Mar 29, 2023
2 parents 0110086 + e5f476d commit f60720a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbaas/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ async def _create_db_document(

db_document['cases'] = [cls._prepare_helpdesk_case(helpdesk_case)]

db_coll = cls._db_collection_from_db_session(db_session)
db_coll = cls._db_collection_from_db_session(db_session, config)
await db_coll.update_one(
{'id': db_document['id']},
{'$set': {'cases': db_document['cases']}},
Expand Down

0 comments on commit f60720a

Please sign in to comment.