mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
Fix event server mongo uri
- collection name in uri creates a bad database name error - uri was not composed correctly
This commit is contained in:
parent
a375a6e29b
commit
08c7d1e501
1 changed files with 1 additions and 2 deletions
|
|
@ -51,9 +51,8 @@ def get_ftrack_event_mongo_info():
|
||||||
|
|
||||||
if not _used_ftrack_url or components["database"] is None:
|
if not _used_ftrack_url or components["database"] is None:
|
||||||
components["database"] = database_name
|
components["database"] = database_name
|
||||||
components["collection"] = collection_name
|
|
||||||
|
|
||||||
uri = compose_url(components)
|
uri = compose_url(**components)
|
||||||
|
|
||||||
return uri, components["port"], database_name, collection_name
|
return uri, components["port"], database_name, collection_name
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue