mirror of
https://github.com/containers/podman.git
synced 2025-06-20 09:03:43 +08:00
Merge pull request #8752 from baude/bindings3volumes
misc bindings to podman v3
This commit is contained in:
@ -33,6 +33,8 @@ func filtersFromRequest(r *http.Request) ([]string, error) {
|
||||
|
||||
if _, found := r.URL.Query()["filters"]; found {
|
||||
raw = []byte(r.Form.Get("filters"))
|
||||
} else if _, found := r.URL.Query()["Filters"]; found {
|
||||
raw = []byte(r.Form.Get("Filters"))
|
||||
} else {
|
||||
return []string{}, nil
|
||||
}
|
||||
@ -95,7 +97,6 @@ func GetEvents(w http.ResponseWriter, r *http.Request) {
|
||||
utils.Error(w, "failed to parse parameters", http.StatusBadRequest, errors.Wrapf(err, "failed to parse parameters for %s", r.URL.String()))
|
||||
return
|
||||
}
|
||||
|
||||
eventChannel := make(chan *events.Event)
|
||||
errorChannel := make(chan error)
|
||||
|
||||
|
@ -286,7 +286,7 @@ func ExportImages(w http.ResponseWriter, r *http.Request) {
|
||||
case define.OCIManifestDir, define.V2s2ManifestDir:
|
||||
tmpdir, err := ioutil.TempDir("", "save")
|
||||
if err != nil {
|
||||
utils.Error(w, "unable to create tmpdir", http.StatusInternalServerError, errors.Wrap(err, "unable to create tempdir"))
|
||||
utils.Error(w, "unable to create tmpdir", http.StatusInternalServerError, errors.Wrap(err, "unable to create tmpdir"))
|
||||
return
|
||||
}
|
||||
output = tmpdir
|
||||
|
Reference in New Issue
Block a user