unpackLastOperationRequest() and BindingLastOperationRequest() incorrectly expects map returned by mux.Vars() to include HTTP GET request query parameters. This causes service_id, plan_id and operation parameters to be lost instead of inserted into the osb specific request struct(s).
unpackLastOperationRequest()
andBindingLastOperationRequest()
incorrectly expects map returned bymux.Vars()
to include HTTP GET request query parameters. This causesservice_id, plan_id
andoperation
parameters to be lost instead of inserted into the osb specific request struct(s).Modified to use
URL.Query()
instead.