GET users currently fails because fetch only concatenates when the path starts with /.
Many users omit the leading slash.
In runner::fetch treat any path that does not start with http:// or https:// as relative.
Desired output:
GET /users
GET users
GET http://api.example.com/users
All these 3 formats should work
GET userscurrently fails because fetch only concatenates when the path starts with/.Many users omit the leading slash.
In
runner::fetchtreat any path that does not start withhttp://orhttps://as relative.Desired output:
GET /usersGET usersGET http://api.example.com/usersAll these 3 formats should work