Fix issue 29505: Retries with EXPERIMENTAL_strategy doesn't handle authentication properly

Signed-off-by: Bogdan Nechyporenko <bnechyporenko@bol.com>
This commit is contained in:
Bogdan Nechyporenko
2025-05-09 07:31:25 +02:00
parent 6e362e6fa7
commit ec42f8ed8e
8 changed files with 46 additions and 10 deletions
+1 -1
View File
@@ -165,7 +165,7 @@ export interface TaskContext {
export interface TaskBroker {
cancel?(taskId: string): Promise<void>;
retry?(taskId: string): Promise<void>;
retry?(options: { secrets?: TaskSecrets; taskId: string }): Promise<void>;
claim(): Promise<TaskContext>;