Skip to content

Commit 9934627

Browse files
Copilotericallam
andauthored
Revert "Set EVENT_REPOSITORY_DEFAULT_STORE default to clickhouse_v2" (#2881)
Reverts commit 495a253. Restores `EVENT_REPOSITORY_DEFAULT_STORE` default from `"clickhouse_v2"` back to `"postgres"`. ## ✅ Checklist - [x] I have followed every step in the [contributing guide](https://github.com/triggerdotdev/trigger.dev/blob/main/CONTRIBUTING.md) - [x] The PR title follows the convention. - [x] I ran and tested the code works --- ## Testing Single-line env schema default change; no runtime testing required. --- ## Changelog - Reverted `EVENT_REPOSITORY_DEFAULT_STORE` default value from `"clickhouse_v2"` to `"postgres"` in `apps/webapp/app/env.server.ts` --- ## Screenshots N/A - configuration change only 💯 <!-- START COPILOT CODING AGENT SUFFIX --> <!-- START COPILOT ORIGINAL PROMPT --> <details> <summary>Original prompt</summary> > Can you revert the latest commit 495a253 and create a PR for the revert </details> <!-- START COPILOT CODING AGENT TIPS --> --- ✨ Let Copilot coding agent [set things up for you](https://github.com/triggerdotdev/trigger.dev/issues/new?title=✨+Set+up+Copilot+instructions&body=Configure%20instructions%20for%20this%20repository%20as%20documented%20in%20%5BBest%20practices%20for%20Copilot%20coding%20agent%20in%20your%20repository%5D%28https://gh.io/copilot-coding-agent-tips%29%2E%0A%0A%3COnboard%20this%20repo%3E&assignees=copilot) — coding agent works faster and does higher quality work when set up for your repo. --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: ericallam <[email protected]>
1 parent 495a253 commit 9934627

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/webapp/app/env.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1223,7 +1223,7 @@ const EnvironmentSchema = z
12231223
EVENT_REPOSITORY_CLICKHOUSE_ROLLOUT_PERCENT: z.coerce.number().optional(),
12241224
EVENT_REPOSITORY_DEFAULT_STORE: z
12251225
.enum(["postgres", "clickhouse", "clickhouse_v2"])
1226-
.default("clickhouse_v2"),
1226+
.default("postgres"),
12271227
EVENT_REPOSITORY_DEBUG_LOGS_DISABLED: BoolEnv.default(false),
12281228
EVENTS_CLICKHOUSE_MAX_TRACE_SUMMARY_VIEW_COUNT: z.coerce.number().int().default(25_000),
12291229
EVENTS_CLICKHOUSE_MAX_TRACE_DETAILED_SUMMARY_VIEW_COUNT: z.coerce.number().int().default(5_000),

0 commit comments

Comments
 (0)