Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Change graph retry logic #670

Merged
merged 3 commits into from
Aug 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/azure/graph/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ export abstract class GraphClient {
},
{
maxAttempts: 3,
factor: 10,
delay: 200,
handleError: (err, context, options) => {
const endpoint = (graphRequest as any).buildFullUrl?.();
Expand Down
Loading