File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -109,16 +109,15 @@ def index_artifact_bundles_for_release(
109109 # debounce this in case there is a persistent error?
110110
111111
112- def backfill_artifact_bundle_db_indexing (organization_id : int , release : str , dist : str ):
112+ def backfill_artifact_bundle_db_indexing (organization_id : int , release : str , dist : str ) -> None :
113113 artifact_bundles = ArtifactBundle .objects .filter (
114114 releaseartifactbundle__organization_id = organization_id ,
115115 releaseartifactbundle__release_name = release ,
116116 releaseartifactbundle__dist_name = dist ,
117117 indexing_state = ArtifactBundleIndexingState .NOT_INDEXED .value ,
118118 )
119- artifact_bundles = [(ab , None ) for ab in artifact_bundles ]
120119
121- index_artifact_bundles_for_release (organization_id , artifact_bundles )
120+ index_artifact_bundles_for_release (organization_id , [( ab , None ) for ab in artifact_bundles ] )
122121
123122
124123@sentry_sdk .tracing .trace
You can’t perform that action at this time.
0 commit comments