mirror of
https://github.com/containers/podman.git
synced 2025-06-20 00:51:16 +08:00
Remove build \!remote flags from test phase 2
Add some more tests, document cases where remote will not work Add FIXMEs for tests that should work on podman-remote but currently do not. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
@ -310,7 +310,11 @@ func RemoveNetwork(w http.ResponseWriter, r *http.Request) {
|
||||
name := utils.GetName(r)
|
||||
reports, err := ic.NetworkRm(r.Context(), []string{name}, options)
|
||||
if err != nil {
|
||||
utils.Error(w, "Something went wrong.", http.StatusInternalServerError, errors.Wrap(err, "remove Network create"))
|
||||
utils.Error(w, "remove Network failed", http.StatusInternalServerError, err)
|
||||
return
|
||||
}
|
||||
if len(reports) == 0 {
|
||||
utils.Error(w, "remove Network failed", http.StatusInternalServerError, errors.Errorf("internal error"))
|
||||
return
|
||||
}
|
||||
report := reports[0]
|
||||
|
Reference in New Issue
Block a user