Skip to content

Commit

Permalink
refactor(QueueMessages)!: rename deleteMessagesById to deleteMessageById
Browse files Browse the repository at this point in the history
  • Loading branch information
weyoss committed Dec 9, 2023
1 parent d962600 commit b3baf71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/queue/queue-messages/queue-messages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export class QueueMessages extends QueueMessagesPaginatorSet {
});
}

deleteMessagesById(id: string, cb: ICallback<void>): void {
deleteMessageById(id: string, cb: ICallback<void>): void {
this.deleteMessagesByIds([id], cb);
}
}

0 comments on commit b3baf71

Please sign in to comment.