Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo: sections -> seconds. #1321

Merged
merged 1 commit into from Dec 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/v2/options.ts
Expand Up @@ -110,7 +110,7 @@ export interface GlobalOptions {
memory?: MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
*
* @remarks
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/alerts/alerts.ts
Expand Up @@ -103,7 +103,7 @@ export interface FirebaseAlertOptions extends options.EventHandlerOptions {
memory?: options.MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
* A value of null restores the default of 60s
* The minimum timeout for a gen 2 function is 1s. The maximum timeout for a
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/alerts/appDistribution.ts
Expand Up @@ -113,7 +113,7 @@ export interface AppDistributionOptions extends options.EventHandlerOptions {
memory?: options.MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
*
* @remarks
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/alerts/crashlytics.ts
Expand Up @@ -193,7 +193,7 @@ export interface CrashlyticsOptions extends options.EventHandlerOptions {
memory?: options.MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
*
* @remarks
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/database.ts
Expand Up @@ -114,7 +114,7 @@ export interface ReferenceOptions<Ref extends string = string> extends options.E
memory?: options.MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
*
* @remarks
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/eventarc.ts
Expand Up @@ -78,7 +78,7 @@ export interface EventarcTriggerOptions extends options.EventHandlerOptions {
memory?: options.MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
*
* @remarks
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/https.ts
Expand Up @@ -71,7 +71,7 @@ export interface HttpsOptions extends Omit<GlobalOptions, "region"> {
memory?: options.MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
*
* @remarks
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/identity.ts
Expand Up @@ -80,7 +80,7 @@ export interface BlockingOptions {
memory?: options.MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
*
* @remarks
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/pubsub.ts
Expand Up @@ -171,7 +171,7 @@ export interface PubSubOptions extends options.EventHandlerOptions {
memory?: options.MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
*
* @remarks
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/storage.ts
Expand Up @@ -219,7 +219,7 @@ export interface StorageOptions extends options.EventHandlerOptions {
memory?: options.MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
*
* @remarks
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/tasks.ts
Expand Up @@ -76,7 +76,7 @@ export interface TaskQueueOptions extends options.EventHandlerOptions {
memory?: options.MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
*
* @remarks
Expand Down