We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e199d09 commit d254848Copy full SHA for d254848
1 file changed
libsql-server/src/rpc/mod.rs
@@ -98,7 +98,7 @@ pub async fn run_rpc_server<A: Accept>(
98
99
// Create a stream of connections from the acceptor
100
let incoming = plain_incoming_stream(acceptor);
101
-
+
102
tracing::info!("Starting gRPC server with incoming stream");
103
104
// Serve with tonic's native server
@@ -116,7 +116,10 @@ struct TlsIncomingStream<A: Accept> {
116
117
impl<A: Accept> TlsIncomingStream<A> {
118
fn new(acceptor: A, tls_acceptor: TlsAcceptor) -> Self {
119
- Self { acceptor, tls_acceptor }
+ Self {
120
+ acceptor,
121
+ tls_acceptor,
122
+ }
123
}
124
125
0 commit comments