tangled
alpha
login
or
join now
microcosm.blue
/
microcosm-rs
64
fork
atom
Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm
64
fork
atom
overview
issues
8
pulls
2
pipelines
remove some prints
bad-example.com
3 weeks ago
49b3ca05
9f4a13fd
-5
1 changed file
expand all
collapse all
unified
split
constellation
src
storage
rocks_store.rs
-5
constellation/src/storage/rocks_store.rs
···
961
961
let after = after.map(|s| s.parse::<u64>().map(TargetId)).transpose()?;
962
962
963
963
let Some(target_id) = self.target_id_table.get_id_val(&self.db, &target_key)? else {
964
964
-
eprintln!("nothin doin for this target, {target_key:?}");
965
964
return Ok(PagedOrderedCollection::empty());
966
965
};
967
966
···
1022
1021
.take(1)
1023
1022
.next()
1024
1023
else {
1025
1025
-
eprintln!("no forward match");
1026
1024
continue;
1027
1025
};
1028
1026
···
1172
1170
None => None,
1173
1171
};
1174
1172
1175
1175
-
eprintln!("cursor: {:#?}", cursor);
1176
1176
-
1177
1173
// (__active__) did ids and filter targets
1178
1174
let filter_did_ids: HashMap<DidId, bool> = filter_link_dids
1179
1175
.iter()
···
1225
1221
.into_iter()
1226
1222
.enumerate()
1227
1223
.filter(|(_, RecordLinkTarget(rpath, target_id))| {
1228
1228
-
eprintln!("rpath.0: {} vs. path_to_other: {path_to_other}", rpath.0);
1229
1224
rpath.0 == path_to_other
1230
1225
&& (filter_to_target_ids.is_empty()
1231
1226
|| filter_to_target_ids.contains(target_id))