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 think I understand why is the -- env is per run if you run the requests one by one then the second run has a separate env, without the Response.
This is exactly right. It might be possible to add another arg, like persist_response, that ensures the named response is in memory that's shared across Requester calls, and can be referenced in future Requester calls
A simpler option is not sharing memory across Requester calls, but serializing response object with something like pickle so it can be written to disk and pulled into memory on a future call
I think this is an edge case, but would be valuable for "exploratory runs" as you suggest. PR welcome
The docs specify how to chain requests:
or
The problem is that you have to:
⌘⇧P
andReuqester: Run Requests Serially
.If you want to run them one-by-one you'll get:
I think I understand why is the --
env
is per run if you run the requests one by one then the second run has a separate env, without theResponse
.It would be nice to allow some form of persistent for such exploratory runs when you just prefer to run the script one-by-one. What do you think?
The text was updated successfully, but these errors were encountered: