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 I have a route for /my_endpoint/{string:my_input}, swaggercheck should nog generate input for it that starts or includes a forward slash, as it's no longer testing the endpoint, but creating a different route by doing so.
ex /my_endpoint//randominput /my_endpoint/random/input /my_endpoint/ra/ndomi/np/ut
These will all return 404 because flask cannot route them to the correct view.
The text was updated successfully, but these errors were encountered:
If I have a route for
/my_endpoint/{string:my_input}
, swaggercheck should nog generate input for it that starts or includes a forward slash, as it's no longer testing the endpoint, but creating a different route by doing so.ex
/my_endpoint//randominput
/my_endpoint/random/input
/my_endpoint/ra/ndomi/np/ut
These will all return 404 because flask cannot route them to the correct view.
The text was updated successfully, but these errors were encountered: