summaryrefslogtreecommitdiff
path: root/pkg/varlinkapi/util.go
diff options
context:
space:
mode:
authorMatthew Heon <mheon@redhat.com>2019-05-16 14:35:49 -0400
committerMatthew Heon <mheon@redhat.com>2019-05-16 14:36:11 -0400
commit601fc2ce4fa888cdd0cc33c41f6eee7ca39f585c (patch)
treedc80e1320d2aa8eeb95915c327435b7f324d7623 /pkg/varlinkapi/util.go
parent8161802f7df857e0850f842261079c83290f9891 (diff)
downloadpodman-601fc2ce4fa888cdd0cc33c41f6eee7ca39f585c.tar.gz
podman-601fc2ce4fa888cdd0cc33c41f6eee7ca39f585c.tar.bz2
podman-601fc2ce4fa888cdd0cc33c41f6eee7ca39f585c.zip
Revert "Add VarlinkCall.RequiresUpgrade() type and method"
This reverts commit bd3154fcf6a48b37cfde5d9b1226900cd863c0d9. Commit in question may be breaking upstream CI. Signed-off-by: Matthew Heon <mheon@redhat.com>
Diffstat (limited to 'pkg/varlinkapi/util.go')
-rw-r--r--pkg/varlinkapi/util.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/pkg/varlinkapi/util.go b/pkg/varlinkapi/util.go
index a9f1e20a1..8716c963a 100644
--- a/pkg/varlinkapi/util.go
+++ b/pkg/varlinkapi/util.go
@@ -13,11 +13,6 @@ import (
"github.com/containers/libpod/cmd/podman/varlink"
"github.com/containers/libpod/libpod"
"github.com/containers/storage/pkg/archive"
- "github.com/pkg/errors"
-)
-
-var (
- ErrUpgradedConnectionRequired = errors.New("peer must use upgraded connection for operation")
)
// getContext returns a non-nil, empty context
@@ -200,13 +195,3 @@ func makePsOpts(inOpts iopodman.PsOpts) shared.PsOptions {
Sync: derefBool(inOpts.Sync),
}
}
-
-// RequiresUpgrade tests if varlink connection has been marked for upgrade.
-func (v *VarlinkCall) RequiresUpgrade() error {
- if v.WantsUpgrade() {
- // A nil is sent to the peer as required by the varlink protocol.
- return v.Reply(nil)
- } else {
- return ErrUpgradedConnectionRequired
- }
-}