You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug / feature
The DjangoResultStoreMixin class has event handlers that do not compare event.jobstore with self._alias. This causes the DjangoJobstore to handle events from other job stores.
To Reproduce
Steps to reproduce the behavior:
Start a scheduler with a DjangoJobStore and a MemoryJobStore with separate aliases.
Run a job on the MemoryJobStore.
The scheduler process will log "Job '[job name]' no longer exists! Skipping logging of job execution...". The database container (in my case Postgres) also logs some errors.
Expected behavior
The DjangoJobstore should ignore events from other job stores.
The text was updated successfully, but these errors were encountered:
Describe the bug / feature
The
DjangoResultStoreMixin
class has event handlers that do not compareevent.jobstore
withself._alias
. This causes theDjangoJobstore
to handle events from other job stores.To Reproduce
Steps to reproduce the behavior:
DjangoJobStore
and aMemoryJobStore
with separate aliases.MemoryJobStore
.Expected behavior
The DjangoJobstore should ignore events from other job stores.
The text was updated successfully, but these errors were encountered: