lightweight com.atproto.sync.listReposByCollection
45
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove debug logs

phil 13ec583f e9c040e1

+1 -3
+1 -3
src/sync/resync/describe_repo.rs
··· 116 116 _ => metrics::counter!("lightrail_resync_describe_repo_avoided", "reason" => "slice_complete", 117 117 "collections" => "multi").increment(1), 118 118 }; 119 - eprintln!("complete!! {collections:?}"); 120 119 return Ok(RepoSnapshot { 121 120 collections, 122 121 rev: report.rev, 123 122 data: report.data, 124 123 }); 125 124 } 126 - RepoCollections::Tiny(span) => { 127 - eprintln!("tiny collection! {span:?}"); 125 + RepoCollections::Tiny(_) => { 128 126 metrics::counter!("lightrail_resync_describe_repo_avoided", "reason" => "tiny_repo") 129 127 .increment(1); 130 128 // intentionally fall through to sync.getRepo instead of using describeRepo