We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 188d7ee + 533c985 commit 4f84674Copy full SHA for 4f84674
src/backend/src/config.rs
@@ -171,8 +171,8 @@ impl CentrifugoConfig {
171
#[cfg(any(test, feature = "mock"))]
172
let binary_path = PathBuf::from("centrifugo_path");
173
#[cfg(not(any(test, feature = "mock")))]
174
- let binary_path = std::fs::canonicalize("centrifugo")
175
- .context("failed to find centrifugo binary")?;
+ let binary_path =
+ std::fs::canonicalize("centrifugo").context("failed to find centrifugo binary")?;
176
177
Ok(Self {
178
port,
0 commit comments