Skip to content
Snippets Groups Projects
Commit 461645d1 authored by Simon Künzel's avatar Simon Künzel
Browse files

Fix sorter missing argument

parent 05e0fb67
No related branches found
No related tags found
No related merge requests found
Pipeline #7618 failed
Pipeline: backend

#7620

    ......@@ -291,7 +291,7 @@ def execute(database, own_job_id, input_data: CJsonObject):
    # Sort every file in its own transaction to reduce blocking the database
    try:
    database.execute_write_transaction_and_commit(
    _sort_file, own_job_id, db_path,
    _sort_file, own_job_id, db_path, on_transaction_failure,
    )
    except Exception:
    if on_transaction_failure.func is not None:
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment