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
I have a service with an endpoint "/show-x", which accepts a POST request and returns a JSON response with one key - "task-id". This is because the endpoint works asynchronously, and the idea is to use "task-id" as the input of another endpoint called "/show-task", which also accepts a POST request, then the response would be the result of "/show-x" assuming that it was done.
I tried to mark this relationship using the following annotation:
However, when I try to run test, fuzz-lean and fuzz the show-task request never gets rendered, even if there were "/show-x" requests that returned status 200 OK and a json response with a task-id. Is it because both requests are POST requests? Is there a log file that should let me know what the issue is?
Could it also be because the response for "show-task" in the open api spec is defined as "OneOf" two different schemas?
The text was updated successfully, but these errors were encountered:
Description
Hello,
I have a service with an endpoint "/show-x", which accepts a POST request and returns a JSON response with one key - "task-id". This is because the endpoint works asynchronously, and the idea is to use "task-id" as the input of another endpoint called "/show-task", which also accepts a POST request, then the response would be the result of "/show-x" assuming that it was done.
I tried to mark this relationship using the following annotation:
It seems to work in that I see this in grammar.py:
However, when I try to run test, fuzz-lean and fuzz the show-task request never gets rendered, even if there were "/show-x" requests that returned status 200 OK and a json response with a task-id. Is it because both requests are POST requests? Is there a log file that should let me know what the issue is?
Could it also be because the response for "show-task" in the open api spec is defined as "OneOf" two different schemas?
The text was updated successfully, but these errors were encountered: