Skip to content

Commit

Permalink
fix: Increase default timeout to Notify (#867)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryan-robitaille authored Oct 15, 2024
1 parent b6571e3 commit 0316710
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lambda-code/nagware/lib/gc-notify-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export class GCNotifyClient {
private apiKey: string;
private timeout: number;

public static default(apiKey: string, timeout: number = 2000): GCNotifyClient {
public static default(apiKey: string, timeout: number = 5000): GCNotifyClient {
return new GCNotifyClient(API_URL, apiKey, timeout);
}

Expand Down
2 changes: 1 addition & 1 deletion lambda-code/reliability/lib/gc-notify-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export class GCNotifyClient {
private apiKey: string;
private timeout: number;

public static default(apiKey: string, timeout: number = 2000): GCNotifyClient {
public static default(apiKey: string, timeout: number = 5000): GCNotifyClient {
return new GCNotifyClient(API_URL, apiKey, timeout);
}

Expand Down

0 comments on commit 0316710

Please sign in to comment.