Skip to content

Commit fbecab9

Browse files
authored
36,00s -> 3,600s (#1660)
1 parent 5f7b331 commit fbecab9

9 files changed

+9
-9
lines changed

src/v2/providers/alerts/alerts.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export interface FirebaseAlertOptions extends options.EventHandlerOptions {
110110
* The minimum timeout for a gen 2 function is 1s. The maximum timeout for a
111111
* function depends on the type of function: Event handling functions have a
112112
* maximum timeout of 540s (9 minutes). HTTPS and callable functions have a
113-
* maximum timeout of 36,00s (1 hour). Task queue functions have a maximum
113+
* maximum timeout of 3,600s (1 hour). Task queue functions have a maximum
114114
* timeout of 1,800s (30 minutes)
115115
*/
116116
timeoutSeconds?: number | Expression<number> | ResetValue;

src/v2/providers/alerts/appDistribution.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export interface AppDistributionOptions extends options.EventHandlerOptions {
121121
* The minimum timeout for a gen 2 function is 1s. The maximum timeout for a
122122
* function depends on the type of function: Event handling functions have a
123123
* maximum timeout of 540s (9 minutes). HTTPS and callable functions have a
124-
* maximum timeout of 36,00s (1 hour). Task queue functions have a maximum
124+
* maximum timeout of 3,600s (1 hour). Task queue functions have a maximum
125125
* timeout of 1,800s (30 minutes)
126126
*/
127127
timeoutSeconds?: number | Expression<number> | ResetValue;

src/v2/providers/alerts/crashlytics.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ export interface CrashlyticsOptions extends options.EventHandlerOptions {
201201
* The minimum timeout for a gen 2 function is 1s. The maximum timeout for a
202202
* function depends on the type of function: Event handling functions have a
203203
* maximum timeout of 540s (9 minutes). HTTPS and callable functions have a
204-
* maximum timeout of 36,00s (1 hour). Task queue functions have a maximum
204+
* maximum timeout of 3,600s (1 hour). Task queue functions have a maximum
205205
* timeout of 1,800s (30 minutes)
206206
*/
207207
timeoutSeconds?: number | Expression<number> | ResetValue;

src/v2/providers/eventarc.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export interface EventarcTriggerOptions extends options.EventHandlerOptions {
8686
* The minimum timeout for a gen 2 function is 1s. The maximum timeout for a
8787
* function depends on the type of function: Event handling functions have a
8888
* maximum timeout of 540s (9 minutes). HTTPS and callable functions have a
89-
* maximum timeout of 36,00s (1 hour). Task queue functions have a maximum
89+
* maximum timeout of 3,600s (1 hour). Task queue functions have a maximum
9090
* timeout of 1,800s (30 minutes)
9191
*/
9292
timeoutSeconds?: number | Expression<number> | ResetValue;

src/v2/providers/https.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export interface HttpsOptions extends Omit<GlobalOptions, "region" | "enforceApp
8686
* The minimum timeout for a gen 2 function is 1s. The maximum timeout for a
8787
* function depends on the type of function: Event handling functions have a
8888
* maximum timeout of 540s (9 minutes). HTTPS and callable functions have a
89-
* maximum timeout of 36,00s (1 hour). Task queue functions have a maximum
89+
* maximum timeout of 3,600s (1 hour). Task queue functions have a maximum
9090
* timeout of 1,800s (30 minutes)
9191
*/
9292
timeoutSeconds?: number | Expression<number> | ResetValue;

src/v2/providers/identity.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export interface BlockingOptions {
9292
* The minimum timeout for a gen 2 function is 1s. The maximum timeout for a
9393
* function depends on the type of function: Event handling functions have a
9494
* maximum timeout of 540s (9 minutes). HTTPS and callable functions have a
95-
* maximum timeout of 36,00s (1 hour). Task queue functions have a maximum
95+
* maximum timeout of 3,600s (1 hour). Task queue functions have a maximum
9696
* timeout of 1,800s (30 minutes)
9797
*/
9898
timeoutSeconds?: number | Expression<number> | ResetValue;

src/v2/providers/pubsub.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ export interface PubSubOptions extends options.EventHandlerOptions {
179179
* The minimum timeout for a gen 2 function is 1s. The maximum timeout for a
180180
* function depends on the type of function: Event handling functions have a
181181
* maximum timeout of 540s (9 minutes). HTTPS and callable functions have a
182-
* maximum timeout of 36,00s (1 hour). Task queue functions have a maximum
182+
* maximum timeout of 3,600s (1 hour). Task queue functions have a maximum
183183
* timeout of 1,800s (30 minutes)
184184
*/
185185
timeoutSeconds?: number | Expression<number> | ResetValue;

src/v2/providers/storage.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ export interface StorageOptions extends options.EventHandlerOptions {
227227
* The minimum timeout for a gen 2 function is 1s. The maximum timeout for a
228228
* function depends on the type of function: Event handling functions have a
229229
* maximum timeout of 540s (9 minutes). HTTPS and callable functions have a
230-
* maximum timeout of 36,00s (1 hour). Task queue functions have a maximum
230+
* maximum timeout of 3,600s (1 hour). Task queue functions have a maximum
231231
* timeout of 1,800s (30 minutes)
232232
*/
233233
timeoutSeconds?: number | Expression<number> | ResetValue;

src/v2/providers/tasks.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export interface TaskQueueOptions extends options.EventHandlerOptions {
8484
* The minimum timeout for a gen 2 function is 1s. The maximum timeout for a
8585
* function depends on the type of function: Event handling functions have a
8686
* maximum timeout of 540s (9 minutes). HTTPS and callable functions have a
87-
* maximum timeout of 36,00s (1 hour). Task queue functions have a maximum
87+
* maximum timeout of 3,600s (1 hour). Task queue functions have a maximum
8888
* timeout of 1,800s (30 minutes)
8989
*/
9090
timeoutSeconds?: number | Expression<number> | ResetValue;

0 commit comments

Comments
 (0)