We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44ac22b commit be6f807Copy full SHA for be6f807
1 file changed
crates/core/src/client/messages.rs
@@ -152,7 +152,7 @@ pub fn serialize(
152
const COMPRESS_THRESHOLD_OTHER: usize = 1024;
153
/// The threshold beyond which we start to compress messages for update messages.
154
/// This is 4 KiB currently.
155
- const COMPRESS_THRESHOLD_UPDATE: usize = 16 * COMPRESS_THRESHOLD_OTHER;
+ const COMPRESS_THRESHOLD_UPDATE: usize = usize::MAX;
156
// Route to the correct compression threshold.
157
let threshold = match msg {
158
ServerMessage::TransactionUpdate(_) | ServerMessage::TransactionUpdateLight(_) => {
0 commit comments