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
Starting yesterday we started seeing errors where the response from ListZones were failing to deserialize correctly. It looks to be related to the owner field in the API response. The field in the response looks like:
Unsure if this was a recent change in the API, but presumably these should now be Option<String> if null is a valid response value? (Unclear if this is an API issue returning null when it shouldn't or if this is a library update)
The text was updated successfully, but these errors were encountered:
This issue still exists in the latest master version. Personally I think the API response is strange though, I would expect null for the entire owner field in this case, not a User with null id and null email.
Starting yesterday we started seeing errors where the response from
ListZones
were failing to deserialize correctly. It looks to be related to theowner
field in the API response. The field in the response looks like:This conflicts with the
Owner
enum which expects theid
andemail
fields to be non-null:Unsure if this was a recent change in the API, but presumably these should now be
Option<String>
ifnull
is a valid response value? (Unclear if this is an API issue returningnull
when it shouldn't or if this is a library update)The text was updated successfully, but these errors were encountered: