webmock.cr icon indicating copy to clipboard operation
webmock.cr copied to clipboard

close body_io after callback

Open mwlang opened this issue 3 years ago • 0 comments

Webmock is closing the body_io stream before it can be accessed in the after_live_request callback. This PR moves that close action to after the callback call and places in ensure block so an exception raised in the callback doesn't block the close

Example use-case: https://github.com/mwlang/binance/blob/master/spec/support/vcr.cr#L53-L79

mwlang avatar Aug 22 '21 04:08 mwlang