Skip to content

Commit

Permalink
fix formatting of response_handle
Browse files Browse the repository at this point in the history
  • Loading branch information
bluejekyll authored and djc committed Jun 27, 2023
1 parent 708ae11 commit c4e92cf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/server/src/server/response_handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,10 @@ impl ResponseHandler for ResponseHandle {

// Set an appropriate maximum on the encoder.
let max_size = self.max_size_for_response(&response);
trace!("setting response max size: {max_size} for protocol: {:?}", self.protocol);
trace!(
"setting response max size: {max_size} for protocol: {:?}",
self.protocol
);
encoder.set_max_size(max_size);

response.destructive_emit(&mut encoder)
Expand Down

0 comments on commit c4e92cf

Please sign in to comment.