Skip to content

Commit

Permalink
cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
oliwierptak committed Nov 30, 2020
1 parent 7c0cf09 commit 8b98e3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ A plugin with Redis handler for [EveronLogger](https://github.com/oliwierptak/ev
'host' => null,
'port' => 6379,
'timeout' => 0.0,
'password' => null,
'persistentId' => null,
'retryInterval' => 0,
'readTimeout' => 0.0,
Expand Down
5 changes: 1 addition & 4 deletions tests/suit/Acceptance/Plugin/Redis/RedisLoggerPluginTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,7 @@ protected function setUp(): void
->setPersistentId('foo-bar')
->setReadTimeout(0.0)
->setRetryInterval(3)
->setTimeout(10)
->setPassword('hunter2');
->setTimeout(10);

$this->configurator = new LoggerConfigurator();
$this->configurator->addPluginConfigurator($redisPluginConfigurator);
Expand All @@ -183,8 +182,6 @@ public function getRedis(): Redis
$this->redisPort,
10
);

$this->redis->auth('hunter2');
}

return $this->redis;
Expand Down

0 comments on commit 8b98e3b

Please sign in to comment.