File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -577,6 +577,7 @@ async fn count_versions_published_today(
577
577
. await
578
578
}
579
579
580
+ #[ instrument( skip_all) ]
580
581
async fn read_json_metadata < R : AsyncRead + Unpin > (
581
582
reader : & mut R ,
582
583
max_length : u32 ,
@@ -608,6 +609,7 @@ async fn read_json_metadata<R: AsyncRead + Unpin>(
608
609
. map_err ( |e| bad_request ( format_args ! ( "invalid upload request: {e}" ) ) )
609
610
}
610
611
612
+ #[ instrument( skip_all) ]
611
613
async fn read_tarball_bytes < R : AsyncRead + Unpin > (
612
614
reader : & mut R ,
613
615
max_length : u32 ,
@@ -638,6 +640,7 @@ async fn read_tarball_bytes<R: AsyncRead + Unpin>(
638
640
Ok ( Bytes :: from ( tarball_bytes) )
639
641
}
640
642
643
+ #[ instrument( skip_all) ]
641
644
async fn is_reserved_name ( name : & str , conn : & mut AsyncPgConnection ) -> QueryResult < bool > {
642
645
select ( exists ( reserved_crate_names:: table. filter (
643
646
canon_crate_name ( reserved_crate_names:: name) . eq ( canon_crate_name ( name) ) ,
You can’t perform that action at this time.
0 commit comments