From df34354bd1f1a409ef551b2f32f4dd63d1908d06 Mon Sep 17 00:00:00 2001
From: Marco Malavolti <marco.malavolti@garr.it>
Date: Fri, 23 Aug 2024 13:18:08 +0200
Subject: [PATCH] Fixed CRON jobs running

---
 docker-compose-2.1.2.yml | 2 --
 eccs_properties.py       | 2 +-
 selenium-logs/.gitignore | 4 ----
 3 files changed, 1 insertion(+), 7 deletions(-)
 delete mode 100644 selenium-logs/.gitignore

diff --git a/docker-compose-2.1.2.yml b/docker-compose-2.1.2.yml
index ff75af0..8bc8a09 100644
--- a/docker-compose-2.1.2.yml
+++ b/docker-compose-2.1.2.yml
@@ -5,8 +5,6 @@ services:
     hostname: eccs
     ports:
       - 127.0.0.1:8080:80
-    environment:
-      ECCS_SELENIUM_DEBUG: false
     volumes:
       - type: bind
         source: ./output
diff --git a/eccs_properties.py b/eccs_properties.py
index 0b056fa..c596325 100644
--- a/eccs_properties.py
+++ b/eccs_properties.py
@@ -74,7 +74,7 @@ ECCS_DEBUG_STDERR_IDP = f"{ECCS_DEBUG_DIR}/stderr_idp_{DAY}.log"
 ECCS_FAILEDCMDIDP = f"{ECCS_DEBUG_DIR}/failed-cmd-idp.sh"
 
 # Selenium
-ECCS_SELENIUM_DEBUG = os.environ['ECCS_SELENIUM_DEBUG']
+ECCS_SELENIUM_DEBUG = False
 ECCS_SELENIUM_DEBUG_LOG_DIR = f"{ECCS_DEBUG_DIR}/selenium-logs"
 ECCS_SELENIUM_PAGELOADTIMEOUT = 60 #seconds (remind to change timeout seconds also on web/eccs.js)
 ECCS_SELENIUM_SCRIPTTIMEOUT = 60   #seconds
diff --git a/selenium-logs/.gitignore b/selenium-logs/.gitignore
deleted file mode 100644
index 5e7d273..0000000
--- a/selenium-logs/.gitignore
+++ /dev/null
@@ -1,4 +0,0 @@
-# Ignore everything in this directory
-*
-# Except this file
-!.gitignore
-- 
GitLab