Skip to content

Commit

Permalink
foo
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorlee committed Oct 24, 2024
1 parent 924ec18 commit 6063882
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/wrangler/src/versions/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -558,11 +558,12 @@ async function promptPercentages(
async function maybePatchSettings(
accountId: string,
workerName: string,
config: Pick<Config, "logpush" | "tail_consumers">
config: Pick<Config, "logpush" | "tail_consumers" | "observability">
) {
const maybeUndefinedSettings = {
logpush: config.logpush,
tail_consumers: config.tail_consumers,
observability: config.observability,
};
const definedSettings = Object.fromEntries(
Object.entries(maybeUndefinedSettings).filter(
Expand Down

0 comments on commit 6063882

Please sign in to comment.