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
fix(functions): avoid recreating a deleted task queue on functions:delete
functions:delete failed for onTaskDispatched functions whose Cloud Tasks
queue had already been deleted out of band. disableTaskQueue calls
updateQueue, which issues a queues.patch (create-or-update), so patching
the missing queue tried to recreate it and failed with "The queue cannot
be created because a queue with this name existed too recently".
Guard the update with a getQueue existence check, mirroring upsertQueue:
skip the patch when the queue is already gone (404) and rethrow otherwise.
0 commit comments