feat: just log the error
This commit is contained in:
parent
c8f51b758a
commit
3ff5f712dd
|
|
@ -12,6 +12,10 @@ const client = createClient({
|
|||
url: process.env.REDIS_URL,
|
||||
});
|
||||
|
||||
client.on('error', (error) => {
|
||||
console.error(error);
|
||||
});
|
||||
|
||||
const pubSub = client.duplicate();
|
||||
|
||||
@Injectable()
|
||||
|
|
|
|||
Loading…
Reference in New Issue