Skip to content

Commit af176ef

Browse files
authored
fix: remove container cleanup logic in functions:delete command (#8771)
* fix: remove container cleanup logic in functions:delete command. * chore: add changelog.
1 parent b8af18d commit af176ef

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
- Updated the Data Connect emulator to use pglite 0.3.x and Postgres 17, which fixes some crashes related to wire protocol inconsistencies. (#8679, #8658)
2+
- Remove container cleanup logic in functions:delete command (#8771)
23
- Fixed an issue where the IAM enablement for GenKit monitoring would try to change an invalid service account. (#8756)
34
- Added caching to API enablement checks to reduce burn of `serviceusage.googleapis.com` quota.

src/commands/functions-delete.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import * as planner from "../deploy/functions/release/planner";
1616
import * as fabricator from "../deploy/functions/release/fabricator";
1717
import * as executor from "../deploy/functions/release/executor";
1818
import * as reporter from "../deploy/functions/release/reporter";
19-
import * as containerCleaner from "../deploy/functions/containerCleaner";
2019
import { getProjectNumber } from "../getProjectNumber";
2120

2221
export const command = new Command("functions:delete [filters...]")
@@ -106,7 +105,4 @@ export const command = new Command("functions:delete [filters...]")
106105
exit: 1,
107106
});
108107
}
109-
110-
// Clean up image caches too
111-
await containerCleaner.cleanupBuildImages([], allEpToDelete);
112108
});

0 commit comments

Comments
 (0)