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
{{ message }}
This repository was archived by the owner on Mar 31, 2026. It is now read-only.
retry.is_etag_in_json(data) is a helper method for conditional retries. It returns a boolean whether or not an etag is contained in the JSON body.
There seem to be use cases in which a dictionary type of data is passed into retry.is_etag_in_json(data). Currently the method is unable to handle dict type data correctly: a JSONDecodeError is caught before examining if an etag is contained within.
retry.is_etag_in_json(data)is a helper method for conditional retries. It returns a boolean whether or not anetagis contained in the JSON body.There seem to be use cases in which a dictionary type of data is passed into
retry.is_etag_in_json(data). Currently the method is unable to handle dict type data correctly: aJSONDecodeErroris caught before examining if an etag is contained within.