Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge branch '2.x/bugfix/cloud_mongo_event_server' into 2.x/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
mkolar committed Jun 26, 2020
2 parents 37b46d6 + 1616d59 commit d4dc019
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pype/modules/ftrack/ftrack_server/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,10 @@ def get_ftrack_event_mongo_info():

if not _used_ftrack_url or components["database"] is None:
components["database"] = database_name
components["collection"] = collection_name

uri = compose_url(components)
components.pop("collection", None)

uri = compose_url(**components)

return uri, components["port"], database_name, collection_name

Expand Down

0 comments on commit d4dc019

Please sign in to comment.