Skip to content

Commit

Permalink
fix(taskqueue): fix FailFast deletion command
Browse files Browse the repository at this point in the history
  • Loading branch information
TheKevJames committed Jan 25, 2018
1 parent c638e7c commit 6d9760d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taskqueue/gcloud/aio/taskqueue/taskmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ async def process(self, task):

if autorenew is not None:
task = await autorenew.stop()
await self.tq.delete(task)
await self.tq.delete(name)
await self.fail(task, payload, e)
return
except Exception as e: # pylint: disable=broad-except
Expand Down

0 comments on commit 6d9760d

Please sign in to comment.