From 1b6e784fa9a924c7e39f6a57fea898d57ec37ec2 Mon Sep 17 00:00:00 2001 From: David Hoese <david.hoese@ssec.wisc.edu> Date: Tue, 22 Jul 2025 12:59:36 -0500 Subject: [PATCH] Fix not pointing to rain03 --- metobsapi/common_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metobsapi/common_config.py b/metobsapi/common_config.py index 7987531..105c4cd 100644 --- a/metobsapi/common_config.py +++ b/metobsapi/common_config.py @@ -5,11 +5,11 @@ if "SECRET_KEY" not in globals(): # Security: This is expected to be overwritten either via environment variable or sub-configuration SECRET_KEY = "secret!" # noqa: S105 -ARCHIVE_ROOT = "/data1/cache" +ARCHIVE_ROOT = "/data/cache" ARCHIVE_URL = "http://metobs.ssec.wisc.edu/pub/cache" # InfluxDB Settings -INFLUXDB_HOST = "rain01" +INFLUXDB_HOST = "rain03" INFLUXDB_PORT = 8086 INFLUXDB_USER = "root" # Security: This is expected to be overwritten either via environment variable or sub-configuration -- GitLab