Skip to content
Snippets Groups Projects
Commit 438de69c authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

archiver: Unify configuration file between director/worker

The initial director and worker had split configuration files.
Now it's unified to be both archiver/worker.yml file
parent d049805b
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,7 @@ class BaseArchiveWorker(config.SWHConfig, metaclass=abc.ABCMeta): ...@@ -53,7 +53,7 @@ class BaseArchiveWorker(config.SWHConfig, metaclass=abc.ABCMeta):
ADDITIONAL_CONFIG = {} ADDITIONAL_CONFIG = {}
CONFIG_BASE_FILENAME = 'archiver/director' CONFIG_BASE_FILENAME = 'archiver/worker'
objstorages = {} objstorages = {}
...@@ -255,8 +255,6 @@ class ArchiverWithRetentionPolicyWorker(BaseArchiveWorker): ...@@ -255,8 +255,6 @@ class ArchiverWithRetentionPolicyWorker(BaseArchiveWorker):
'archival_max_age': ('int', 3600), 'archival_max_age': ('int', 3600),
} }
CONFIG_BASE_FILENAME = 'archiver/worker'
def __init__(self, batch): def __init__(self, batch):
""" Constructor of the ArchiverWorker class. """ Constructor of the ArchiverWorker class.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment