tangled
alpha
login
or
join now
ptr.pet
/
hydrant
28
fork
atom
at protocol indexer with flexible filtering, xrpc queries, and a cursor-backed event stream, built on fjall
at-protocol
atproto
indexer
rust
fjall
28
fork
atom
overview
issues
6
pulls
pipelines
[backfill,ingest] dont write that many logs
ptr.pet
1 month ago
9eb1bd6b
f952c5a3
verified
This commit was signed with the committer's
known signature
.
ptr.pet
SSH Key Fingerprint:
SHA256:Abmvag+juovVufZTxyWY8KcVgrznxvBjQpJesv071Aw=
+2
-2
2 changed files
expand all
collapse all
unified
split
src
backfill
mod.rs
ingest
mod.rs
+1
-1
src/backfill/mod.rs
···
176
176
http: &reqwest::Client,
177
177
did: &Did<'static>,
178
178
) -> Result<RepoState> {
179
179
-
info!("backfilling {}", did);
179
179
+
debug!("backfilling {}", did);
180
180
181
181
let db = &app_state.db;
182
182
let did_key = keys::repo_key(did);
+1
-1
src/ingest/mod.rs
···
191
191
192
192
match status {
193
193
RepoStatus::New => {
194
194
-
info!("new repo detected: {}", did);
194
194
+
debug!("new repo detected: {}", did);
195
195
// 1. save state as backfilling
196
196
let mut new_state = RepoState::new(commit.repo.clone().into_static());
197
197
new_state.status = RepoStatus::Backfilling;