core: improve detection for s3 settings to trigger backup

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-10-17 15:56:31 +02:00
parent 8d32a53126
commit ce812e14c7
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ def clean_expired_models(self: MonitoredTask):
def backup_database(self: MonitoredTask): # pragma: no cover def backup_database(self: MonitoredTask): # pragma: no cover
"""Database backup""" """Database backup"""
self.result_timeout_hours = 25 self.result_timeout_hours = 25
if SERVICE_HOST_ENV_NAME in environ and not CONFIG.y("postgresql.s3_backup"): if SERVICE_HOST_ENV_NAME in environ and not CONFIG.y("postgresql.s3_backup.bucket"):
LOGGER.info("Running in k8s and s3 backups are not configured, skipping") LOGGER.info("Running in k8s and s3 backups are not configured, skipping")
self.set_status( self.set_status(
TaskResult( TaskResult(