diff --git a/libs/accounts/rate-limit/src/lib/bq-writer.spec.ts b/libs/accounts/rate-limit/src/lib/bq-writer.spec.ts index 98f35cb75a4..58de226c433 100644 --- a/libs/accounts/rate-limit/src/lib/bq-writer.spec.ts +++ b/libs/accounts/rate-limit/src/lib/bq-writer.spec.ts @@ -36,7 +36,7 @@ describe('RateLimitBqWriter', () => { config = { projectId: 'test-project', dataset: 'fxa', - table: 'rate_limit_checks', + table: 'rate_limit_checks_v2', flushIntervalMs: 5000, batchSize: 3, }; diff --git a/packages/fxa-auth-server/config/index.ts b/packages/fxa-auth-server/config/index.ts index 7ca44ef60bd..afef241af05 100644 --- a/packages/fxa-auth-server/config/index.ts +++ b/packages/fxa-auth-server/config/index.ts @@ -2573,7 +2573,7 @@ const convictConf = convict({ format: String, }, table: { - default: 'rate_limit_checks', + default: 'rate_limit_checks_v2', doc: 'BigQuery table name', env: 'RATE_LIMIT__BIGQUERY__TABLE', format: String,