google-apis-rs / google-cloud-rs

Asynchronous Rust bindings for Google Cloud Platform APIs.
176 stars 48 forks source link

fix(storage): Fixed error when bucket listing turns out to be empty #42

Closed Hirevo closed 3 years ago

Hirevo commented 3 years ago

This PR fixes a bug that accidentally slipped under the radar where listing buckets would error out if no buckets are found.

In that case, GCP turns out to directly omit the items field in its JSON response, instead of making it exist but be an empty list, so we fix this by defaulting to an empty Vec if not found.

Fixes #40.

Hirevo commented 3 years ago

All tests are green ! :tada: :tada: