Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
add the following tracing events:
in various other tracing events, log the relay public key instead of the relay index.
refactor/fix: currently, the pending response futures are put into a buffered list with the
buffer_unordered
adaptor. this adaptor will yield the futures in the order in which they complete, which may be inconsistent with the order in which they were initially created. however, subsequent logic appears to rely on a consistent ordering. changes were included to group the relay index (or public key) with the response at the time the request was made.