Fixed envvar
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Pünkösd Marcell 2021-12-13 06:08:05 +01:00
parent cf6ea3959c
commit d455bc07e8
1 changed files with 1 additions and 1 deletions

View File

@ -12,6 +12,6 @@ class Config:
DROPALL = os.environ.get("DROPALL", "no").lower() in ['yes', 'true', '1']
REPORT_ALIAS = os.environ.get("REPORTER_ALIAS", os.environ['HOSTNAME'])
REPORT_ALIAS = os.environ.get("REPORT_ALIAS", os.environ['HOSTNAME'])
REPORT_URL = os.environ.get("REPORT_URL", "")
REPORT_INTERVAL = int(os.environ.get("REPORT_INTERVAL", 15))