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
Hello 👋
Just noticed that I'm not getting an exception when attempting to put some s3 behavior under test.
Previously, I think PutObject only support If-None-Match conditional header to prevent overwrites, but I noticed they added If-Match support which functions similarly to GetObject/HeadObject (raising if etag doesn't match header).
I'm able to workaround for now by adding a HeadObject call before my put, but not ideal to add calls and change code to support behavior.
Hello 👋
Just noticed that I'm not getting an exception when attempting to put some s3 behavior under test.
Previously, I think PutObject only support
If-None-Match
conditional header to prevent overwrites, but I noticed they addedIf-Match
support which functions similarly to GetObject/HeadObject (raising if etag doesn't match header).I'm able to workaround for now by adding a HeadObject call before my put, but not ideal to add calls and change code to support behavior.
Problem and recreation steps:
The text was updated successfully, but these errors were encountered: