Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit 1fb485f

Browse files
committed
fix: stop sending commit id to process flakes task
1 parent b112e47 commit 1fb485f

2 files changed

Lines changed: 0 additions & 3 deletions

File tree

tasks/test_results_finisher.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,6 @@ def old_impl(
151151
self.app.tasks[process_flakes_task_name].apply_async(
152152
kwargs=dict(
153153
repo_id=repoid,
154-
commit_id=commit.commitid,
155154
impl_type=impl_type,
156155
)
157156
)

tasks/tests/unit/test_test_results_finisher.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1014,7 +1014,6 @@ def test_upload_finisher_task_call_main_branch(
10141014
].apply_async.assert_called_with(
10151015
kwargs={
10161016
"repo_id": repoid,
1017-
"commit_id": commit.commitid,
10181017
"impl_type": "old",
10191018
},
10201019
)
@@ -1197,7 +1196,6 @@ def test_upload_finisher_task_call_main_with_plan(
11971196
].apply_async.assert_called_with(
11981197
kwargs={
11991198
"repo_id": repoid,
1200-
"commit_id": commit.commitid,
12011199
"impl_type": "old",
12021200
},
12031201
)

0 commit comments

Comments
 (0)