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
The relevant section appears to be here in RunAndWait where we're incorrectly assuming state is never nil if we get an non-nil err (which seemed reasonable but wasn't documented and turns out to be wrong). We want to capture the state if it's available but otherwise return the error without getting the state. Fix for this should be:
I'm adding some test coverage improvements and pruning an unused branch of the error handling in the process here, but should have a PR up later today.
Got the following panic which didn't show up in our integration tests:
The relevant section appears to be here in
RunAndWait
where we're incorrectly assumingstate
is nevernil
if we get an non-nilerr
(which seemed reasonable but wasn't documented and turns out to be wrong). We want to capture the state if it's available but otherwise return the error without getting the state. Fix for this should be:The text was updated successfully, but these errors were encountered: