1316 - exportactionlogsworker period to 60sec

This commit is contained in:
Tom McKay 2019-02-05 15:52:43 -05:00
parent 39097b2318
commit 56ceef823a
2 changed files with 4 additions and 2 deletions

View file

@ -22,7 +22,7 @@ from util.useremails import send_logs_exported_email
logger = logging.getLogger(__name__)
POLL_PERIOD_SECONDS = 1
POLL_PERIOD_SECONDS = app.config.get('EXPORT_ACTION_LOGS_WORKER_POLL_PERIOD', 60)
EXPORT_LOGS_STORAGE_PATH = app.config.get('EXPORT_ACTION_LOGS_STORAGE_PATH', 'exportedactionlogs')
MAXIMUM_WORK_PERIOD_SECONDS = app.config.get('EXPORT_ACTION_LOGS_MAXIMUM_SECONDS', 60 * 60) # 1 hour

View file

@ -7,7 +7,7 @@ from httmock import urlmatch, HTTMock
from data import model
from data.logs_model import logs_model
from workers.exportactionlogsworker import ExportActionLogsWorker
from workers.exportactionlogsworker import ExportActionLogsWorker, POLL_PERIOD_SECONDS
from test.fixtures import *
@ -64,3 +64,5 @@ def test_process_queue_item(namespace, repo_name, expects_logs, app):
assert created_json['export_id'] == 'someid'
assert len(created_json['logs']) == (expected_count + 1)
assert POLL_PERIOD_SECONDS == 60