Skip to content

Commit 9284ab8

Browse files
authored
feat(firestore-bigquery-export): remove unused task queue setup (#1995)
1 parent e38ab81 commit 9284ab8

File tree

1 file changed

+1
-10
lines changed
  • firestore-bigquery-export/functions/src

1 file changed

+1
-10
lines changed

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

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,7 @@ if (admin.apps.length === 0) {
6262
events.setupEventChannel();
6363

6464
export const syncBigQuery = functions.tasks
65-
.taskQueue({
66-
retryConfig: {
67-
maxAttempts: 5,
68-
minBackoffSeconds: 60,
69-
},
70-
rateLimits: {
71-
maxConcurrentDispatches: 1000,
72-
maxDispatchesPerSecond: config.maxDispatchesPerSecond,
73-
},
74-
})
65+
.taskQueue()
7566
.onDispatch(
7667
async ({ context, changeType, documentId, data, oldData }, ctx) => {
7768
const update = {

0 commit comments

Comments
 (0)