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:
@@ -414,7 +414,7 @@ export interface TaskBroker {
|
||||
// (undocumented)
|
||||
recoverTasks?(): Promise<void>;
|
||||
// (undocumented)
|
||||
retry?(taskId: string): Promise<void>;
|
||||
retry?(options: { secrets?: TaskSecrets; taskId: string }): Promise<void>;
|
||||
// (undocumented)
|
||||
vacuumTasks(options: { timeoutS: number }): Promise<void>;
|
||||
}
|
||||
|
||||
@@ -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>;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user