Skip to content

Commit e598539

Browse files
authored
Harmonize error message while waiting for storage connection. (MaterializeInc#11719)
This makes the form of the error message match the one for the coordinator connection. E.g. ``` listening for coordinator connection on 0.0.0.0:2100... ``` vs. ``` listening for storage connection on 0.0.0.0:2101... ```
1 parent a5d1c49 commit e598539

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/storage/src/boundary/tcp_boundary.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ pub mod server {
112112
info!("About to bind to {addr}");
113113
let listener = TcpListener::bind(addr).await?;
114114
info!(
115-
"listening for storage connection on {:?}...",
116-
listener.local_addr()
115+
"listening for storage connection on {}...",
116+
listener.local_addr()?
117117
);
118118

119119
let thread = mz_ore::task::spawn(

0 commit comments

Comments
 (0)