Parakeet is a Rust-based Bluesky AppServer aiming to implement most of the functionality required to support the Bluesky client
appview atproto bluesky rust appserver
66
fork

Configure Feed

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

fix(consumer/backfill): fix check_pds_repo_status for non-existent dids

Mia 50f2fff3 69e8f708

+1 -1
+1 -1
consumer/src/backfill/mod.rs
··· 303 303 .send() 304 304 .await?; 305 305 306 - if res.status() == StatusCode::NOT_FOUND { 306 + if [StatusCode::NOT_FOUND, StatusCode::BAD_REQUEST].contains(&res.status()) { 307 307 return Ok(None); 308 308 } 309 309