summaryrefslogtreecommitdiff
path: root/pkg/bindings/healthcheck.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-01-28 08:21:18 -0800
committerGitHub <noreply@github.com>2020-01-28 08:21:18 -0800
commita8bd3473e0bb648be88b6d9b84f18fc097de70ee (patch)
tree08f7cd1282654c0a82d16d8db5de41d2f6f4bcd5 /pkg/bindings/healthcheck.go
parentd07c26310697d8874219731c6c42f6d0d0330e87 (diff)
parent54587335bee45bdd5e4b975b4760b2898a138f2a (diff)
downloadpodman-a8bd3473e0bb648be88b6d9b84f18fc097de70ee.tar.gz
podman-a8bd3473e0bb648be88b6d9b84f18fc097de70ee.tar.bz2
podman-a8bd3473e0bb648be88b6d9b84f18fc097de70ee.zip
Merge pull request #4980 from baude/bindingdocs
[CI:DOCS]Binding overhauls
Diffstat (limited to 'pkg/bindings/healthcheck.go')
-rw-r--r--pkg/bindings/healthcheck.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/pkg/bindings/healthcheck.go b/pkg/bindings/healthcheck.go
deleted file mode 100644
index 32515e332..000000000
--- a/pkg/bindings/healthcheck.go
+++ /dev/null
@@ -1,19 +0,0 @@
-package bindings
-
-import (
- "fmt"
- "net/http"
-
- "github.com/containers/libpod/libpod"
-)
-
-func (c Connection) RunHealthCheck(nameOrID string) (*libpod.HealthCheckStatus, error) {
- var (
- status libpod.HealthCheckStatus
- )
- response, err := c.newRequest(http.MethodGet, fmt.Sprintf("/containers/%s/runhealthcheck", nameOrID), nil, nil)
- if err != nil {
- return nil, err
- }
- return &status, response.Process(&status)
-}