Skip to content

Commit

Permalink
Disable forceCreate for functions serve
Browse files Browse the repository at this point in the history
  • Loading branch information
meyer9 committed Oct 15, 2023
1 parent 8d30ba2 commit 1556edb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/functions/serve/templates/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ serve(async (req: Request) => {
.filter(([name, _]) =>
!EXCLUDED_ENVS.includes(name) && !name.startsWith("SUPABASE_INTERNAL_")
);
const forceCreate = true;
const forceCreate = false;
const customModuleRoot = ""; // empty string to allow any local path
const cpuTimeThresholdMs = 50;
const cpuBurstIntervalMs = 100;
Expand Down

0 comments on commit 1556edb

Please sign in to comment.