From f1eaccedfa08455d699d00dcda63b95aeb34833e Mon Sep 17 00:00:00 2001 From: Brent Baude Date: Thu, 30 Jan 2020 12:40:19 -0600 Subject: fix longname handling for bindings the api needs to account for image input where the image is encoded as a fqd image name. Signed-off-by: Brent Baude --- pkg/api/handlers/handler.go | 9 --------- 1 file changed, 9 deletions(-) (limited to 'pkg/api/handlers/handler.go') diff --git a/pkg/api/handlers/handler.go b/pkg/api/handlers/handler.go index d60a5b239..231c11f23 100644 --- a/pkg/api/handlers/handler.go +++ b/pkg/api/handlers/handler.go @@ -4,26 +4,17 @@ import ( "net/http" "github.com/containers/libpod/libpod" - "github.com/gorilla/mux" "github.com/gorilla/schema" "github.com/pkg/errors" ) // Convenience routines to reduce boiler plate in handlers -func getVar(r *http.Request, k string) string { - return mux.Vars(r)[k] -} - // func hasVar(r *http.Request, k string) bool { // _, found := mux.Vars(r)[k] // return found // } -func getName(r *http.Request) string { - return getVar(r, "name") -} - func decodeQuery(r *http.Request, i interface{}) error { decoder := r.Context().Value("decoder").(*schema.Decoder) -- cgit v1.2.3-54-g00ecf