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
Hi Team!
While testing Fuzz-lightyear against Mozilla Kinto we have faced with issue related with propagating non-valuable data through request sequences.
Could you please check our results?
While generating a sequence of requests method add_response() called with some response as an input:
To extract data add_response() use for loop with dir(response).
But in that case dir(response) equals to
Hi Team!
While testing Fuzz-lightyear against Mozilla Kinto we have faced with issue related with propagating non-valuable data through request sequences.
Could you please check our results?
While generating a sequence of requests method add_response() called with some response as an input:
To extract data add_response() use for loop with dir(response).
But in that case dir(response) equals to
As a result we have non-valuable data in self.data (this data is used to construct nest request in a sequence):
Seems that we should use response.keys() instead of dir(response):
Do we miss something in our reasoning? Are there any cases when dir(response) is needed?
The text was updated successfully, but these errors were encountered: