From 0ff07af684ba71d6edcc6b3672ddde930c5f26a0 Mon Sep 17 00:00:00 2001
From: Robert Butora <robert.butora@inaf.it>
Date: Tue, 21 Jan 2025 16:21:14 +0100
Subject: [PATCH] docker/soda: changes Settings::fits_path_surveys default
 value to /srv/datasets

---
 data-access/servlet/src/main/java/common/webapi/Settings.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/data-access/servlet/src/main/java/common/webapi/Settings.java b/data-access/servlet/src/main/java/common/webapi/Settings.java
index 16c0ede..c56dc95 100644
--- a/data-access/servlet/src/main/java/common/webapi/Settings.java
+++ b/data-access/servlet/src/main/java/common/webapi/Settings.java
@@ -133,7 +133,7 @@ class Settings
    private static FITSPaths loadFITSPaths(Properties properties)
    {
       FITSPaths fitspaths = new FITSPaths();
-      fitspaths.FITSpath             = properties.getProperty("fits_path_surveys", "/srv/surveys").strip();
+      fitspaths.FITSpath             = properties.getProperty("fits_path_surveys", "/srv/datasets").strip();
       fitspaths.FITScutpath          = properties.getProperty("fits_path_cutouts", "/srv/cutouts").strip();
       fitspaths.FITSRemoteUrlCutouts = properties.getProperty("fits_url_cutouts",  "").strip();
       fitspaths.surveysMetadataAbsPathname = properties.getProperty("surveys_metadata_abs_pathname", "").strip();
-- 
GitLab