We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Accessing replier_id() of a Reply always returns None.
Tested with 1.0.0.alpha-2 from crates.io & dev/1.0.0 from repo.
Had a look into sources and it seems replier_id is not always managed properly.
let replies = session .get("query-selector") .target(QueryTarget::All) .consolidation(ConsolidationMode::None) .allowed_destination(Locality::Any); .wait() .unwrap(); while let Ok(reply) = replies.recv() { match reply.result() { Ok(sample) => match sample.kind() { SampleKind::Put => { let replier_id = reply.replier_id(); dbg!(replier_id); SampleKind::Delete => { error!("Delete"); } }, Err(err) => error!("receive error: {:?})", err), } } }
Linux Debian Bookworm on AMD Ryzen 5700G
The text was updated successfully, but these errors were encountered:
Same is with sample's source_info's source_id
Sorry, something went wrong.
Linked issue: #709
No branches or pull requests
Describe the bug
Accessing replier_id() of a Reply always returns None.
Tested with 1.0.0.alpha-2 from crates.io & dev/1.0.0 from repo.
Had a look into sources and it seems replier_id is not always managed properly.
To reproduce
System info
Linux Debian Bookworm on AMD Ryzen 5700G
The text was updated successfully, but these errors were encountered: