We seem to be unconditionally calling rewind on the body in this gem. However, rack 3.x removed support for rewind, so it is not possible to do it without some other middleware that supports buffering the body etc.
The above means that this gem doesn't work for proxying non-GET methods in servers like falcon which don't provide a rewindable body if using rack 3.x. At minimum we need to implement suggestions in the linked discussion above to maintain compatibility.
We seem to be unconditionally calling
rewindon the body in this gem. However, rack 3.x removed support for rewind, so it is not possible to do it without some other middleware that supports buffering the body etc.The above means that this gem doesn't work for proxying non-GET methods in servers like falcon which don't provide a rewindable body if using rack 3.x. At minimum we need to implement suggestions in the linked discussion above to maintain compatibility.