Skip to content

Commit

Permalink
remove imports of errdefs package
Browse files Browse the repository at this point in the history
Use of the errdefs package was removed in 308341a
but found their way back in through 3be919f

This patch removes the imports.

Signed-off-by: Sebastiaan van Stijn <[email protected]>
  • Loading branch information
thaJeztah committed Jun 19, 2024
1 parent 1fdc9a0 commit f5ce2f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sandbox/bridge.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"google.golang.org/grpc"

api "github.com/containerd/containerd/api/runtime/sandbox/v1"
"github.com/containerd/containerd/errdefs"
"github.com/containerd/errdefs"
)

// NewClient returns a new sandbox client that handles both GRPC and TTRPC clients.
Expand Down
4 changes: 2 additions & 2 deletions services/introspection/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@
package introspection

import (
context "context"
"context"
"errors"

"google.golang.org/grpc"

api "github.com/containerd/containerd/api/services/introspection/v1"
"github.com/containerd/containerd/errdefs"
"github.com/containerd/containerd/plugin"
ptypes "github.com/containerd/containerd/protobuf/types"
"github.com/containerd/containerd/services"
"github.com/containerd/errdefs"
)

func init() {
Expand Down

0 comments on commit f5ce2f2

Please sign in to comment.