From 0d0430558d51fa73e2f1f2c41928fb14ee39013c Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Fri, 14 Jun 2024 01:37:48 +0200 Subject: [PATCH] Change the address of one of backends. --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index c6f276d..d76843c 100644 --- a/index.html +++ b/index.html @@ -427,7 +427,7 @@ const provider = document.querySelector('input[name="provider"]:checked').value; if (provider == 'self-hosted-intel') { - return ['https://fly-selfhosted-backend.clickhouse.com']; + return ['https://fly-selfhosted-backend-3.clickhouse.com']; } else if (provider == 'self-hosted-graviton') { return ['https://fly-selfhosted-backend-2.clickhouse.com']; } else { @@ -441,7 +441,7 @@ if (provider == 'cloud') { return [cloud_host]; } else { - return [cloud_host, 'https://fly-selfhosted-backend.clickhouse.com']; + return [cloud_host, 'https://fly-selfhosted-backend-3.clickhouse.com']; } } }