I am using google task queues and I am setting task_retry_limit on the queue.
The default behavior is the task is removed from task queue in the following cases :
1) when the task is executed successfully or
2) when the task reaches the maximum number of retry attempts set.
In my use case, I have a problem with the second case. I want to keep the task in the task queue even after maximum number of retries
(I don't want to retry the task after task_retry_limit but I want to keep it in the task queue so that I can run it manually later)
Is there parameter in Queue.yaml which drives this?
I know that a workaround for this would be to set a moderate task_age_limit, but I don't want the task to keep retrying.