diff --git a/treeherder/etl/management/commands/ingest.py b/treeherder/etl/management/commands/ingest.py index 51493f07fde..d4c63cdd1f0 100644 --- a/treeherder/etl/management/commands/ingest.py +++ b/treeherder/etl/management/commands/ingest.py @@ -475,6 +475,6 @@ def handle(self, *args, **options): elif typeOfIngestion == "git-pushes": ingest_git_pushes(options["project"], options["dryRun"]) elif typeOfIngestion == "push": - ingest_push(options) + ingest_hg_push(options) else: raise Exception('Please check the code for valid ingestion types.')