PUT elicits a POST
snarkipus opened this issue · comments
Matt Jackson commented
Great little tool - I came across it in your Axum video (which is also amazing).
Using it some scratch integration, I noticed that PUTs would fail with records already existing - poking around, it looks like it calls the request::post method instead of request::put under the hood.
Jeremy Chone commented
oops, let me check.
Jeremy Chone commented
Jeremy Chone commented
So, I fixed the #5, where patch
was mapped to put
. However, put
seems to have been mapped to post
. Let me know if I missed something.
Jeremy Chone commented
Closing this one. As the issue was with patch
I think and was fixed in #5.