Feat: removed QUEUED from ready for sync condition

This commit is contained in:
Idris Foughali 2025-11-19 19:01:01 +00:00
parent 2e0ff04f84
commit a49869af42

View File

@ -112,7 +112,6 @@ class DataSource(JobsMixin, PrimaryModel):
@property @property
def ready_for_sync(self): def ready_for_sync(self):
return self.enabled and self.status not in ( return self.enabled and self.status not in (
DataSourceStatusChoices.QUEUED,
DataSourceStatusChoices.SYNCING DataSourceStatusChoices.SYNCING
) )