fix: cloudbeta -> support email address (#15950)

pull/16073/head
lukevmorris 2019-12-02 11:04:07 -08:00 committed by GitHub
parent 8d80f712ea
commit b9fb792f69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
export const RATE_LIMIT_ERROR_STATUS = 429
export const RATE_LIMIT_ERROR_TEXT =
'Oops. It looks like you have exceeded the query limits allowed as part of your plan. If you would like to increase your query limits, reach out to cloudbeta@influxdata.com.'
'Oops. It looks like you have exceeded the query limits allowed as part of your plan. If you would like to increase your query limits, reach out to support@influxdata.com.'
export const ASSET_LIMIT_ERROR_STATUS = 403
export const ASSET_LIMIT_ERROR_TEXT =
'Oops. It looks like you have exceeded the asset limits allowed as part of your plan. If you would like to increase your limits, reach out to cloudbeta@influxdata.com.'
'Oops. It looks like you have exceeded the asset limits allowed as part of your plan. If you would like to increase your limits, reach out to support@influxdata.com.'

View File

@ -459,7 +459,7 @@ export const rateLimitReached = (secs?: number): Notification => {
export const resourceLimitReached = (resourceName: string): Notification => ({
...defaultErrorNotification,
message: `Oops. It looks like you have reached the maximum number of ${resourceName} allowed as part of your plan. If you would like to upgrade and remove this restriction, reach out to cloudbeta@influxdata.com.`,
message: `Oops. It looks like you have reached the maximum number of ${resourceName} allowed as part of your plan. If you would like to upgrade and remove this restriction, reach out to support@influxdata.com.`,
duration: FIVE_SECONDS,
type: 'resourceLimitReached',
})