Improve error message for malformed RPC secret key

This commit is contained in:
Maximilien R. 2024-08-06 23:22:25 +02:00 committed by maximilien
parent 060ad0da32
commit 9302cd42f0

View file

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