1
0
mirror of https://github.com/dkmstr/openuds.git synced 2024-12-21 09:34:08 +03:00

fixed worker bug

This commit is contained in:
Adolfo Gómez García 2014-11-22 10:46:17 +01:00
parent 0932865215
commit 3372de7b6c

View File

@ -64,6 +64,6 @@ class AssignedAndUnused(Job):
osm.processUnused(us)
else: # No os manager, simply remove unused services in specified time
with transaction.atomic():
for us in ds.assignedUserServices().select_for_update().filter(in_use=False, state_date__lt=since_state, state=State.USABLE, os_state=State.USABLE):
for us in ds.assignedUserServices().filter(in_use=False, state_date__lt=since_state, state=State.USABLE, os_state=State.USABLE):
logger.debug('Found unused assigned service {0}'.format(us))
us.remove()