We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e9b913 commit 23a421cCopy full SHA for 23a421c
go/logic/server.go
@@ -180,10 +180,10 @@ help # This message
180
return NoPrintStatusRule, fmt.Errorf("coordinates are read-only")
181
}
182
case "applier":
183
- fmt.Fprintln(writer, this.migrationContext.GetApplierHostname())
+ fmt.Fprintf(writer, "Hostname: %s\n", this.migrationContext.GetApplierHostname())
184
return NoPrintStatusRule, nil
185
case "inspector":
186
- fmt.Fprintln(writer, this.migrationContext.GetInspectorHostname())
+ fmt.Fprintf(writer, "Hostname: %s\n", this.migrationContext.GetInspectorHostname())
187
188
case "chunk-size":
189
{
0 commit comments