You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If canned is used to stub out requests for a server it can be useful to proxy requests for unknown routes. The idea is to instead of serving a 404 forward the request to specified server and serve the result.
$ canned ./example --proxy=http://example.com
when querying for a path that is not present in canned like
If canned is used to stub out requests for a server it can be useful to proxy requests for unknown routes. The idea is to instead of serving a
404
forward the request to specified server and serve the result.when querying for a path that is not present in canned like
it shoudl issue a query to
http://example.com/i_dont_exist_in_canned
and servewhatever the result of this query is.
The text was updated successfully, but these errors were encountered: