Merge pull request #1019 from shaojiaxue/master

cli: fix parameter order error in cli/ps.go
This commit is contained in:
Archana Shinde
2019-01-16 11:21:51 -08:00
committed by GitHub

View File

@@ -95,7 +95,7 @@ func ps(ctx context.Context, containerID, format string, args []string) error {
options.Format = format options.Format = format
msg, err := vci.ProcessListContainer(ctx, containerID, sandboxID, options) msg, err := vci.ProcessListContainer(ctx, sandboxID, containerID, options)
if err != nil { if err != nil {
return err return err
} }