chore(): resolve conflicts

This commit is contained in:
Kamil Myśliwiec
2021-05-14 15:36:22 +02:00
117 changed files with 25663 additions and 27941 deletions

View File

@@ -30,7 +30,9 @@ export class ClientRedis extends ClientProxy {
constructor(protected readonly options: RedisOptions['options']) {
super();
this.url = this.getOptionsProp(options, 'url') || REDIS_DEFAULT_URL;
this.url =
this.getOptionsProp(options, 'url') ||
(!this.getOptionsProp(options, 'host') && REDIS_DEFAULT_URL);
redisPackage = loadPackage('redis', ClientRedis.name, () =>
require('redis'),