From b05ebbf2c0e767e671425723f245f0191bd376f7 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Tue, 21 Mar 2017 16:58:36 -0400 Subject: [PATCH] Have storage replication wait up to 20 minutes before trying again Copying a file can be a long operation, so make this configurable and far above the default 5 minutes --- workers/storagereplication.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/workers/storagereplication.py b/workers/storagereplication.py index be000884d..767daf203 100644 --- a/workers/storagereplication.py +++ b/workers/storagereplication.py @@ -10,6 +10,7 @@ from workers.queueworker import QueueWorker, WorkerUnhealthyException logger = logging.getLogger(__name__) POLL_PERIOD_SECONDS = 10 +RESERVATION_SECONDS = app.config.get('STORAGE_REPLICATION_PROCESSING_SECONDS', 60*20) class StorageReplicationWorker(QueueWorker): def process_queue_item(self, job_details): @@ -97,5 +98,6 @@ if __name__ == "__main__": logger.debug('Starting replication worker') worker = StorageReplicationWorker(image_replication_queue, - poll_period_seconds=POLL_PERIOD_SECONDS) + poll_period_seconds=POLL_PERIOD_SECONDS, + reservation_seconds=RESERVATION_SECONDS) worker.start()