From ef740c2147f591f39124d3774d53359de3a39cf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20P=C3=A1ral?= Date: Fri, 16 Feb 2018 16:55:10 +0100 Subject: [PATCH] fix typo in taskotron DBs and testdays configs --- roles/taskotron/execdb/templates/settings.py.j2 | 2 +- roles/taskotron/resultsdb-backend/templates/settings.py.j2 | 2 +- roles/taskotron/resultsdb-frontend/templates/settings.py.j2 | 2 +- roles/testdays/templates/settings.py.j2 | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/taskotron/execdb/templates/settings.py.j2 b/roles/taskotron/execdb/templates/settings.py.j2 index eeb44775c3..688dc451b5 100644 --- a/roles/taskotron/execdb/templates/settings.py.j2 +++ b/roles/taskotron/execdb/templates/settings.py.j2 @@ -2,7 +2,7 @@ SECRET_KEY = '{{ execdb_secret_key }}' SQLALCHEMY_DATABASE_URI = 'postgresql+psycopg2://{{ execdb_db_user }}:{{ execdb_db_password }}@{{ execdb_db_host }}:{{ execdb_db_port }}/{{ execdb_db_name }}' FILE_LOGGING = False -LOGFILR = '/var/log/execdb/execdb.log' +LOGFILE = '/var/log/execdb/execdb.log' SYSLOG_LOGGING = False STREAM_LOGGING = True diff --git a/roles/taskotron/resultsdb-backend/templates/settings.py.j2 b/roles/taskotron/resultsdb-backend/templates/settings.py.j2 index daa6e02a98..8da290f859 100644 --- a/roles/taskotron/resultsdb-backend/templates/settings.py.j2 +++ b/roles/taskotron/resultsdb-backend/templates/settings.py.j2 @@ -1,7 +1,7 @@ SECRET_KEY = '{{ resultsdb_secret_key }}' SQLALCHEMY_DATABASE_URI = 'postgresql+psycopg2://{{ resultsdb_db_user }}:{{ resultsdb_db_password }}@{{ resultsdb_db_host }}:{{ resultsdb_db_port }}/{{ resultsdb_db_name }}' FILE_LOGGING = False -LOGFILR = '/var/log/resultsdb/resultsdb.log' +LOGFILE = '/var/log/resultsdb/resultsdb.log' SYSLOG_LOGGING = False STREAM_LOGGING = True diff --git a/roles/taskotron/resultsdb-frontend/templates/settings.py.j2 b/roles/taskotron/resultsdb-frontend/templates/settings.py.j2 index 6c6042e071..29b6df89cc 100644 --- a/roles/taskotron/resultsdb-frontend/templates/settings.py.j2 +++ b/roles/taskotron/resultsdb-frontend/templates/settings.py.j2 @@ -4,6 +4,6 @@ RDB_URL = 'http://127.0.0.1/{{ resultsdb_endpoint }}/api/v2.0' SECRET_KEY = '{{ resultsdb_frontend_secret_key }}' FILE_LOGGING = False -LOGFILR = '/var/log/resultsdb_frontend/resultsdb_frontend.log' +LOGFILE = '/var/log/resultsdb_frontend/resultsdb_frontend.log' SYSLOG_LOGGING = False STREAM_LOGGING = True diff --git a/roles/testdays/templates/settings.py.j2 b/roles/testdays/templates/settings.py.j2 index 6f3b2354de..fd7d2cefe6 100644 --- a/roles/testdays/templates/settings.py.j2 +++ b/roles/testdays/templates/settings.py.j2 @@ -6,6 +6,6 @@ SQLALCHEMY_DATABASE_URI = 'postgresql+psycopg2://{{ testdays_db_user }}:{{ testd SHOW_DB_URI = False PRODUCTION = True FILE_LOGGING = False -LOGFILR = '/var/log/testdays/testdays.log' +LOGFILE = '/var/log/testdays/testdays.log' SYSLOG_LOGGING = False STREAM_LOGGING = True