Closed dyro closed 8 months ago
Latest commit: 4c7754678cc66256b6ab04765cfcf50a7a07997c
The changes in this PR will be included in the next version bump.
Not sure what this means? Click here to learn what changesets are.
Click here if you're a maintainer who wants to add another changeset to this PR
The logs in provided to us by the reporter of the ticket included this error:
This occurs when a
Deferred
struct is created but not settled. Our code was creating the deferred values, then parsing arguments of the JS invocation of our APIs. If this parsing failed, thedeffered
value would never be settled, which causes the panic. The added test will fail if thedeferred
value is not settled.