Merge pull request #3792 from influxdata/bug-fixes/default-namespaces-on-error

Provide empty namespace array on error fetching
pull/3793/head
Brandon Farmer 2018-06-28 11:51:03 -07:00 committed by GitHub
commit 17f1d48798
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -31,5 +31,6 @@ export const getDatabasesWithRetentionPolicies = async (
return sorted return sorted
} catch (err) { } catch (err) {
console.error(err) console.error(err)
return []
} }
} }