Skip to content

Commit 61d66eb

Browse files
fix: Prepended the /bulk onto the bubbleAppUrl for sending the bulk records over to bubble app exposed API (#1051)
2 parents c225fd9 + 9cb6348 commit 61d66eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/queue-manager/src/consumers/send-bubble-data.consumer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export class SendBubbleDataConsumer extends BaseConsumer {
6767
uploadId,
6868
page,
6969
method: 'POST',
70-
url: cachedData.bubbleAppUrl,
70+
url: cachedData.bubbleAppUrl + '/bulk',
7171
headers: {
7272
Authorization: `Bearer ${cachedData.apiPrivateKey}`,
7373
'Content-Type': 'text/plain',

0 commit comments

Comments
 (0)