Skip to content

Commit 029b878

Browse files
committed
Address minor issues.
1 parent a1135a9 commit 029b878

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/v1/cloud-functions.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -481,12 +481,14 @@ function _detectAuthType(event: Event) {
481481
}
482482

483483
const RESETTABLE_OPTIONS: ResettableKeys<DeploymentOptions> = {
484+
ingressSettings: null,
485+
maxInstances: null,
484486
memory: null,
485-
timeoutSeconds: null,
486487
minInstances: null,
487-
maxInstances: null,
488-
vpcConnector: null,
489488
serviceAccount: null,
489+
timeoutSeconds: null,
490+
vpcConnector: null,
491+
vpcConnectorEgressSettings: null,
490492
};
491493

492494
/** @internal */

src/v2/providers/scheduler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
import * as express from "express";
2424

2525
import { copyIfPresent } from "../../common/encoding";
26+
import { ResetValue } from "../../common/options";
2627
import { timezone } from "../../common/timezone";
2728
import { ManifestEndpoint, ManifestRequiredAPI } from "../../runtime/manifest";
2829
import { HttpsFunction } from "./https";
@@ -31,7 +32,6 @@ import * as logger from "../../logger";
3132
import * as options from "../options";
3233
import { RESET_VALUE } from "../options";
3334
import { Expression } from "../../params";
34-
import { ResetValue } from "../../../lib/common/options";
3535

3636
/** @hidden */
3737
interface ScheduleArgs {

0 commit comments

Comments
 (0)