We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa828bc commit c5270dcCopy full SHA for c5270dc
trino-lb-persistence/src/redis/mod.rs
@@ -483,8 +483,8 @@ where
483
state: ClusterState,
484
) -> Result<(), super::Error> {
485
let key = cluster_state_key(cluster_name);
486
- let value = bincode::serde::encode_to_vec(&state, BINCODE_CONFIG)
487
- .context(SerializeToBinarySnafu)?;
+ let value =
+ bincode::serde::encode_to_vec(state, BINCODE_CONFIG).context(SerializeToBinarySnafu)?;
488
489
let _: () = self
490
.connection()
0 commit comments