Skip to content

Commit

Permalink
Update sweepers_driver.py
Browse files Browse the repository at this point in the history
as requested
  • Loading branch information
al-niessner authored Aug 15, 2023
1 parent 1a92b53 commit 5c19915
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docker/sweepers_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
from datetime import datetime
from typing import Callable

from pds.registrysweepers import provenance, ancestry
from pds.registrysweepers import provenance, ancestry, repairkit
from pds.registrysweepers.utils import configure_logging, get_human_readable_elapsed_since, parse_log_level

configure_logging(filepath=None, log_level=logging.INFO)
Expand Down Expand Up @@ -108,10 +108,12 @@ def run_factory(sweeper_f: Callable) -> Callable:

run_provenance = run_factory(provenance.run)
run_ancestry = run_factory(ancestry.run)
run_repairkit = run_factory(repairkit.run)

log.info('Running sweepers')
execution_begin = datetime.now()

run_repairkit()
run_provenance()
run_ancestry()

Expand Down

0 comments on commit 5c19915

Please sign in to comment.