mintel / gcp-quota-exporter

Exports quota limits and usage for Google Compute Platform services
MIT License
7 stars 14 forks source link

fix: don't panic when return is nil #9

Closed Duologic closed 4 years ago

Duologic commented 4 years ago

If the scrape fails, the return is nil for either project or regionList. We should not try to access project.Quotas or regionList.Items in that case.

Bonus: Even if the regionList call fails, we can still return the project level results.

fixes #8

Duologic commented 4 years ago

It would be great to fix this here so we don't have to build it on our own fork.

Duologic commented 4 years ago

Thanks!