mirror of
https://github.com/ansible/awx.git
synced 2026-05-12 03:47:36 -02:30
make the job event bigint migration chunk size configurable
This commit is contained in:
@@ -692,7 +692,7 @@ def migrate_legacy_event_data(tblname):
|
||||
with advisory_lock(f'bigint_migration_{tblname}', wait=False) as acquired:
|
||||
if acquired is False:
|
||||
return
|
||||
chunk = 1000000
|
||||
chunk = settings.JOB_EVENT_MIGRATION_CHUNK_SIZE
|
||||
|
||||
def _remaining():
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user