Skip to content

Commit c44792f

Browse files
committed
docs(webapp): correct CLICKHOUSE_READER_URL comment on events reader fallback
The events read client (EVENTS_READER_CLICKHOUSE_URL) opts in explicitly and does not fall back to CLICKHOUSE_READER_URL; the comment previously implied it did.
1 parent 0bef4ee commit c44792f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

apps/webapp/app/env.server.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1719,9 +1719,9 @@ const EnvironmentSchema = z
17191719
// Clickhouse
17201720
CLICKHOUSE_URL: z.string(),
17211721
// Optional read replica endpoint. Read-only clients (logs, query, admin, runsList,
1722-
// engine, realtime) and the events client's READ path default to this when their own
1723-
// URL is unset; writes always stay on CLICKHOUSE_URL. Set once to move all reads to a
1724-
// replica. Must share storage with the CLICKHOUSE_URL warehouse.
1722+
// engine, realtime) default to this when their own URL is unset; writes always stay on
1723+
// CLICKHOUSE_URL. Events reads opt in separately via EVENTS_READER_CLICKHOUSE_URL (no
1724+
// fallback here). Must share storage with the CLICKHOUSE_URL warehouse.
17251725
CLICKHOUSE_READER_URL: z.string().optional(),
17261726
CLICKHOUSE_KEEP_ALIVE_ENABLED: z.string().default("1"),
17271727
CLICKHOUSE_KEEP_ALIVE_IDLE_SOCKET_TTL_MS: z.coerce.number().int().optional(),

0 commit comments

Comments
 (0)