mirror of
https://github.com/complexcaresolutions/whatsapp-bot.git
synced 2026-03-17 19:44:06 +00:00
fix: remove colons from BullMQ queue names
BullMQ doesn't allow colons in queue names. Changed 'whatsapp:incoming' → 'whatsapp-incoming'. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
1b0fafda24
commit
aefb566414
1 changed files with 2 additions and 2 deletions
|
|
@ -1,8 +1,8 @@
|
||||||
import type { NormalizedMessage } from '../whatsapp/types.js'
|
import type { NormalizedMessage } from '../whatsapp/types.js'
|
||||||
import type { MessageStatus } from '../whatsapp/types.js'
|
import type { MessageStatus } from '../whatsapp/types.js'
|
||||||
|
|
||||||
export const INCOMING_MESSAGE_QUEUE = 'whatsapp:incoming'
|
export const INCOMING_MESSAGE_QUEUE = 'whatsapp-incoming'
|
||||||
export const STATUS_UPDATE_QUEUE = 'whatsapp:status'
|
export const STATUS_UPDATE_QUEUE = 'whatsapp-status'
|
||||||
|
|
||||||
export interface IncomingMessageJobData {
|
export interface IncomingMessageJobData {
|
||||||
message: NormalizedMessage
|
message: NormalizedMessage
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue