Skip to content

Commit

Permalink
fix typos in error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
tbence94 committed Mar 7, 2023
1 parent 7c1bedf commit 5b20600
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/QueueConnection.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ class QueueConnection extends EventEmitter {
}
}

throw new Error('RabbitMQ connection filed with multiple urls')
throw new Error('RabbitMQ connection failed with multiple urls')
}

shuffleUrls (urls) {
Expand Down
2 changes: 1 addition & 1 deletion src/QueueManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class QueueManager {
try {
await this.connection.connect()
} catch (err) {
this._logger.error('Filed to connect to queue server', err)
this._logger.error('Failed to connect to queue server', err)
throw err
}

Expand Down

0 comments on commit 5b20600

Please sign in to comment.