Skip to content

Commit 933a4c8

Browse files
committed
fmt
1 parent a24c7ee commit 933a4c8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/grpc.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -246,16 +246,16 @@ impl proxy_server::Proxy for ProxyServer {
246246
// not be shared across proxy instances and HA won't work.
247247
None => {
248248
warn!(
249-
"Private cookie key not provided by Core; falling back to a locally generated key. \
250-
This typically indicates an older Core version and disables cookie sharing across proxies."
251-
);
249+
"Private cookie key not provided by Core; falling back to a locally generated key. \
250+
This typically indicates an older Core version and disables cookie sharing across proxies."
251+
);
252252
Key::generate()
253253
}
254254
};
255255
self.http_channel.send(key).map_err(|err| {
256-
error!("Failed to send private cookies key to HTTP server: {err:?}");
257-
Status::internal("Failed to send private cookies key to HTTP server")
258-
})?;
256+
error!("Failed to send private cookies key to HTTP server: {err:?}");
257+
Status::internal("Failed to send private cookies key to HTTP server")
258+
})?;
259259

260260
let (tx, rx) = mpsc::unbounded_channel();
261261
self.clients

0 commit comments

Comments
 (0)