From 48883e6910d8f38c1679e33cda5e0f8838cd6e1c Mon Sep 17 00:00:00 2001 From: Suyash Salampuria Date: Thu, 17 Sep 2020 05:58:05 +0530 Subject: [PATCH] Fix the local ingestion command (#6723) --- treeherder/etl/management/commands/ingest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.')