aboutsummaryrefslogtreecommitdiff
path: root/cmd/podman/pods/top.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2022-06-30 09:58:52 -0400
committerGitHub <noreply@github.com>2022-06-30 09:58:52 -0400
commit3e8ab312395b32d0b43f1ac82adf53439b012893 (patch)
treeb8024f94b0f7446f6779c5d6e83bc6697c010387 /cmd/podman/pods/top.go
parentaa109ae0f058060466b61d01571e37b7cc718b9a (diff)
parente8adec5f41388916b0f2206dc898a5587d51467c (diff)
downloadpodman-3e8ab312395b32d0b43f1ac82adf53439b012893.tar.gz
podman-3e8ab312395b32d0b43f1ac82adf53439b012893.tar.bz2
podman-3e8ab312395b32d0b43f1ac82adf53439b012893.zip
Merge pull request #14785 from saschagrunert/cmd-podman-errors
cmd/podman: switch to golang native error wrapping
Diffstat (limited to 'cmd/podman/pods/top.go')
-rw-r--r--cmd/podman/pods/top.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/podman/pods/top.go b/cmd/podman/pods/top.go
index 4e9c7a3ee..34f3d1c33 100644
--- a/cmd/podman/pods/top.go
+++ b/cmd/podman/pods/top.go
@@ -2,6 +2,7 @@ package pods
import (
"context"
+ "errors"
"fmt"
"os"
"strings"
@@ -12,7 +13,6 @@ import (
"github.com/containers/podman/v4/cmd/podman/validate"
"github.com/containers/podman/v4/pkg/domain/entities"
"github.com/containers/podman/v4/pkg/util"
- "github.com/pkg/errors"
"github.com/spf13/cobra"
)
@@ -67,7 +67,7 @@ func top(_ *cobra.Command, args []string) error {
}
if len(args) < 1 && !topOptions.Latest {
- return errors.Errorf("you must provide the name or id of a running pod")
+ return errors.New("you must provide the name or id of a running pod")
}
if topOptions.Latest {