Skip to content
This repository has been archived by the owner on May 30, 2023. It is now read-only.

Commit

Permalink
fixed ConnectionException classpath
Browse files Browse the repository at this point in the history
  • Loading branch information
Sven Speckmaier committed Jun 21, 2017
1 parent e47c49b commit 254d0c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion healthcheck/Redis/RedisConnnectionChecker.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function check( $connection ) {
try {
$connection = $this->redis->connection( $connection );
$connection->connect();
} catch(Predis\Network\ConnectionException $exception) {
} catch(\Predis\Connection\ConnectionException $exception) {
return false;
}

Expand Down

0 comments on commit 254d0c4

Please sign in to comment.