Bläddra i källkod

Merge pull request #2962 from pyth-network/fix/db-config

chore: update default db config
Alexandru Cambose 3 månader sedan
förälder
incheckning
a750ce6e01
1 ändrade filer med 2 tillägg och 1 borttagningar
  1. 2 1
      apps/insights/src/config/server.ts

+ 2 - 1
apps/insights/src/config/server.ts

@@ -45,10 +45,11 @@ export const AMPLITUDE_API_KEY = defaultInProduction(
   "AMPLITUDE_API_KEY",
   "6faa78c51eff33087eb19f0f3dc76f33",
 );
+
 export const CLICKHOUSE = {
   url:
     process.env.CLICKHOUSE_URL ??
-    "https://oxcuvjrqq7.eu-west-2.aws.clickhouse.cloud:8443",
+    "https://ryf56suqpb.eu-west-2.aws.clickhouse.cloud:8443",
   username: process.env.CLICKHOUSE_USERNAME ?? "insights",
   password: demand("CLICKHOUSE_PASSWORD"),
 };