Skip to content

Commit a6898dd

Browse files
committed
cli: fix printing of the store spec
This was recently broken in 4744a80. Release note: None
1 parent e9631b4 commit a6898dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cli/start.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1240,7 +1240,7 @@ func reportServerInfo(
12401240
buf.Printf("external I/O path: \t<disabled>\n")
12411241
}
12421242
for i, spec := range serverCfg.Stores.Specs {
1243-
buf.Printf("store[%d]:\t%s\n", i, log.SafeManaged(spec))
1243+
buf.Printf("store[%d]:\t%s\n", i, log.SafeManaged(base.StoreSpecCmdLineString(spec)))
12441244
}
12451245

12461246
// Print the commong server identifiers.

0 commit comments

Comments
 (0)