Revert change to queue
This commit is contained in:
parent
48e5bd6613
commit
d480a204f5
1 changed files with 3 additions and 8 deletions
|
@ -120,21 +120,16 @@ class WorkQueue(object):
|
|||
name_match_query = self._name_match_query()
|
||||
|
||||
running = self._running_jobs(now, name_match_query)
|
||||
avail = self._available_jobs_not_running(now, name_match_query, running).alias('avail')
|
||||
avail = self._available_jobs_not_running(now, name_match_query, running)
|
||||
|
||||
item = None
|
||||
try:
|
||||
db_item_candidate_id = (QueueItem
|
||||
.select(avail.c.id)
|
||||
.from_(avail)
|
||||
.order_by(avail.c.id)
|
||||
.tuples()
|
||||
.get())[0]
|
||||
db_item_candidate = avail.order_by(QueueItem.id).get()
|
||||
|
||||
with self._transaction_factory(db):
|
||||
still_available_query = (db_for_update(self
|
||||
._available_jobs(now, name_match_query)
|
||||
.where(QueueItem.id == db_item_candidate_id)))
|
||||
.where(QueueItem.id == db_item_candidate.id)))
|
||||
|
||||
db_item = still_available_query.get()
|
||||
db_item.available = False
|
||||
|
|
Reference in a new issue