Remove the hard-coded class name

This commit is contained in:
tcely 2025-03-26 02:30:43 -04:00 committed by GitHub
parent 464ac73396
commit bcb7432174
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -216,7 +216,7 @@ class Task(models.Model):
"""
Check if the locked_by process is still running.
"""
if self in Task.objects.locked(timezone.now()) and self.locked_by:
if self in self.__class__.objects.locked(timezone.now()) and self.locked_by:
pid, nodename = self.locked_by.split('/', 1)
# locked by a process on this node?
if nodename != self.nodename: