mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
SyncServer - sync_project_settings now contains all projects, must skip disabled explicitly
This commit is contained in:
parent
c039d7fe5d
commit
e4b51604ad
1 changed files with 3 additions and 0 deletions
|
|
@ -274,6 +274,9 @@ class SyncServerThread(threading.Thread):
|
|||
self.module.set_sync_project_settings() # clean cache
|
||||
for collection, preset in self.module.sync_project_settings.\
|
||||
items():
|
||||
if collection not in self.module.get_enabled_projects():
|
||||
continue
|
||||
|
||||
start_time = time.time()
|
||||
local_site, remote_site = self._working_sites(collection)
|
||||
if not all([local_site, remote_site]):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue