Skip to content

Commit e029b5b

Browse files
committed
Up the default timeout to 70s.
1 parent 50417da commit e029b5b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/functions/src/api/service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ export class Service implements FirebaseFunctions {
179179
headers.append('Firebase-Instance-ID-Token', context.instanceIdToken);
180180
}
181181

182-
// Default timeout to 60s, but let the options override it.
183-
const timeout = options.timeout || 60000;
182+
// Default timeout to 70s, but let the options override it.
183+
const timeout = options.timeout || 70000;
184184

185185
const response = await Promise.race([
186186
this.postJSON(url, body, headers),

0 commit comments

Comments
 (0)