Skip to content

Commit

Permalink
fix(bg-job): fix queue name
Browse files Browse the repository at this point in the history
  • Loading branch information
mildronize committed Apr 12, 2024
1 parent 4bc34f0 commit 6359eb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion background-job/src/functions/add-transaction-queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function parseTransactionToGoogleSheet(data: z.infer<typeof transactionPostSchem
export default func
.storageQueue('addTransactionQueue', {
connection: 'AzureWebJobsStorage',
queueName: 'devqueue',
queueName: 'budgetqueue',
})
.handler(async c => {
console.log('Storage queue function processed work item:', c.trigger);
Expand Down

0 comments on commit 6359eb1

Please sign in to comment.