Skip to content

Commit

Permalink
catch queue errors (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore authored Jun 29, 2024
1 parent b14612d commit e29b492
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions testrunner/src/queue/queuehandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ class QueueHandler {
}
});

this.redis.on('error', error => {
logger.error('Error in KeyDB/Redis connection %s', error);
});

// If the server comes online, lets tell it that we are ready
this.redis.on('message', (channel, message) => {
if (channel === 'server' && message === 'start') {
Expand Down

0 comments on commit e29b492

Please sign in to comment.