Skip to content

Commit

Permalink
iterator: replace "query" with "request" in logs
Browse files Browse the repository at this point in the history
  • Loading branch information
muzarski committed Dec 30, 2024
1 parent c666b1a commit ce2c6cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scylla/src/transport/iterator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ where

let request_error: UserRequestError = match queries_result {
Ok(proof) => {
trace!(parent: &span, "Query succeeded");
trace!(parent: &span, "Request succeeded");
// query_pages returned Ok, so we are guaranteed
// that it attempted to send at least one page
// through self.sender and we can safely return now.
Expand All @@ -215,7 +215,7 @@ where
trace!(
parent: &span,
error = %error,
"Query failed"
"Request failed"
);
error
}
Expand Down

0 comments on commit ce2c6cc

Please sign in to comment.