Skip to content

Commit bec1a03

Browse files
committed
fix(firestore-bigquery-export): remove multiple database support
1 parent 70f06fb commit bec1a03

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

firestore-bigquery-export/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
fixed - medium npm vulnerabilities
44

5+
fixed - rollback broken multiple database parameter option
6+
57
## Version 0.1.50
68

79
fixed - fixed timestamp as a fieldname partitioning

firestore-bigquery-export/extension.yaml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -189,16 +189,6 @@ params:
189189
default: ${PROJECT_ID}
190190
required: true
191191

192-
- param: DATABASE_ID
193-
label: Database ID
194-
description: >-
195-
Override the default project Firestore database. Learn more about managing
196-
multiple Firestore databases
197-
[here](https://cloud.google.com/firestore/docs/manage-databases).
198-
type: string
199-
default: (default)
200-
required: true
201-
202192
- param: COLLECTION_PATH
203193
label: Collection path
204194
description: >-

firestore-bigquery-export/functions/src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export function clustering(clusters: string | undefined) {
3333

3434
export default {
3535
bqProjectId: process.env.BIGQUERY_PROJECT_ID,
36-
databaseId: process.env.DATABASE_ID || "(default)",
36+
databaseId: "(default)",
3737
collectionPath: process.env.COLLECTION_PATH,
3838
datasetId: process.env.DATASET_ID,
3939
doBackfill: process.env.DO_BACKFILL === "yes",

0 commit comments

Comments
 (0)