diff --git a/src/go/rpk/pkg/cli/cluster/storage/cancel-mount.go b/src/go/rpk/pkg/cli/cluster/storage/cancel-mount.go index be8d57f65bea6..25753540d694b 100644 --- a/src/go/rpk/pkg/cli/cluster/storage/cancel-mount.go +++ b/src/go/rpk/pkg/cli/cluster/storage/cancel-mount.go @@ -65,7 +65,7 @@ Cancel a mount/unmount operation out.MaybeDie(err, "unable to cancel the mount/unmount operation: %v", err) } - fmt.Printf("Successfully canceled the operation with ID %v", migrationID) + fmt.Printf("Successfully canceled the operation with ID %v\n", migrationID) }, } return cmd diff --git a/src/go/rpk/pkg/cli/cluster/storage/list-mount.go b/src/go/rpk/pkg/cli/cluster/storage/list-mount.go index ea7c14b390f1b..93c84afe41ccc 100644 --- a/src/go/rpk/pkg/cli/cluster/storage/list-mount.go +++ b/src/go/rpk/pkg/cli/cluster/storage/list-mount.go @@ -80,7 +80,7 @@ Use filter to list only migrations in a specific state }, } p.InstallFormatFlag(cmd) - cmd.Flags().StringVarP(&filter, "filter", "f", "", "Filter the list of migrations by state. Only valid for text") + cmd.Flags().StringVarP(&filter, "filter", "f", "all", "Filter the list of migrations by state. Only valid for text") return cmd }