We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e02d0a commit 5d21a74Copy full SHA for 5d21a74
apps/webapp/app/models/orgIntegration.server.ts
@@ -69,7 +69,15 @@ export class OrgIntegrationRepository {
69
return new WebClient(
70
options?.forceBotToken
71
? secret.botAccessToken
72
- : secret.userAccessToken ?? secret.botAccessToken
+ : secret.userAccessToken ?? secret.botAccessToken,
73
+ {
74
+ retryConfig: {
75
+ retries: 2,
76
+ randomize: true,
77
+ maxTimeout: 5000,
78
+ maxRetryTime: 10000,
79
+ },
80
+ }
81
) as AuthenticatedClientForIntegration<TService>;
82
}
83
default: {
0 commit comments