fix bit/byte inversion in rpc secret error message

This commit is contained in:
trinity-1686a 2024-11-07 00:29:26 +01:00
parent a18b3f0d1f
commit 9bd9e392ba

View file

@ -141,7 +141,7 @@ impl Garage {
)?)
.ok()
.and_then(|x| NetworkKey::from_slice(&x))
.ok_or_message("Invalid RPC secret key: expected 32 bits of entropy, please check the documentation for requirements")?;
.ok_or_message("Invalid RPC secret key: expected 32 bytes of random hex, please check the documentation for requirements")?;
let (replication_factor, consistency_mode) = parse_replication_mode(&config)?;