Skip to content

Commit d2e185e

Browse files
committed
Remove type
1 parent f26b434 commit d2e185e

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/sentry/preprod/api/endpoints/preprod_artifact_snapshot.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,6 @@ def post(self, request: Request, project: Project) -> Response:
652652
base_repo_name=commit_comparison.head_repo_name,
653653
project_id=project.id,
654654
app_id=artifact.app_id,
655-
artifact_type=artifact.artifact_type,
656655
build_configuration=artifact.build_configuration,
657656
)
658657
for head_artifact in waiting_heads:

src/sentry/preprod/snapshots/utils.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ def find_head_snapshot_artifacts_awaiting_base(
3535
base_repo_name: str,
3636
project_id: int,
3737
app_id: str | None,
38-
artifact_type: str | None,
3938
build_configuration: PreprodBuildConfiguration | None,
4039
) -> list[PreprodArtifact]:
4140
"""Find head snapshot artifacts that were uploaded before their base was available.
@@ -52,7 +51,6 @@ def find_head_snapshot_artifacts_awaiting_base(
5251
project_id=project_id,
5352
preprodsnapshotmetrics__isnull=False,
5453
app_id=app_id,
55-
artifact_type=artifact_type,
5654
build_configuration=build_configuration,
5755
)
5856
.exclude(

0 commit comments

Comments
 (0)