Update faas-provider to v0.15.3

Fixes #136

Signed-off-by: Utsav Anand <utsavanand2@gmail.com>
This commit is contained in:
Utsav Anand
2020-12-13 14:24:22 +05:30
committed by Alex Ellis
parent cb786d7c84
commit baea3006cb
44 changed files with 611 additions and 209 deletions

View File

@ -15,5 +15,5 @@ import "net/http"
// can be set by making a route that captures the required variables,
// starting a server and sending the request to that server.
func SetURLVars(r *http.Request, val map[string]string) *http.Request {
return setVars(r, val)
return requestWithVars(r, val)
}