Skip to content

Commit

Permalink
Merge pull request #60 from bringg/change_default_channel_to_string
Browse files Browse the repository at this point in the history
Change default channel to string.
  • Loading branch information
ramhr committed May 2, 2023
2 parents 21a7859 + e52cd07 commit 84b7967
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "arnavmq",
"version": "0.15.0",
"version": "0.15.1",
"description": "ArnavMQ is a RabbitMQ wrapper",
"keywords": [
"rabbitmq",
Expand Down
2 changes: 1 addition & 1 deletion src/modules/channels.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const DEFAULT_CHANNEL = Symbol('DEFAULT_CHANNEL');
const DEFAULT_CHANNEL = 'DEFAULT_CHANNEL';

class ChannelAlreadyExistsError extends Error {
constructor(name, config) {
Expand Down

0 comments on commit 84b7967

Please sign in to comment.