From e4426e419f68d4e31f3fd9d39b4559fe3b003041 Mon Sep 17 00:00:00 2001 From: Aaron Peterson Date: Fri, 14 Jun 2024 19:10:27 -0700 Subject: [PATCH] Temporary config change revert and version bump (#1498) * Temporarily add back deprecated config var * Bump version for point release fix to 20240614.1 --- pyproject.toml | 4 ++-- turbinia/config/turbinia_config_tmpl.py | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b59b099c6..0ff25697b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "turbinia" -version = "20240614" +version = "20240614.1" description = "Automation and Scaling of Digital Forensics Tools" authors = ["Turbinia Developers "] maintainers = ["Turbinia Developers "] @@ -67,4 +67,4 @@ ignore_patterns = [ [build-system] requires = ["poetry-core"] -build-backend = "poetry.core.masonry.api" \ No newline at end of file +build-backend = "poetry.core.masonry.api" diff --git a/turbinia/config/turbinia_config_tmpl.py b/turbinia/config/turbinia_config_tmpl.py index 488314e41..398745776 100644 --- a/turbinia/config/turbinia_config_tmpl.py +++ b/turbinia/config/turbinia_config_tmpl.py @@ -74,6 +74,10 @@ # Time in seconds to sleep in task management loops SLEEP_TIME = 10 +# Whether to run as a single run, or to keep server running indefinitely +# Note: This config var is deprecated and will be removed in the next release. +SINGLE_RUN = False + # Local directory in the worker to put other mount directories for locally # mounting images/disks MOUNT_DIR_PREFIX = '/mnt/turbinia-mounts'