summaryrefslogtreecommitdiff
path: root/modules/database/db_redis.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2017-03-16 20:13:56 -0400
committerAdam <Adam@anope.org>2017-03-16 20:13:56 -0400
commit516ab164f6fcfe641cbf296d1244ac957fb16fd1 (patch)
treea273ef4d2398079963dc3cbb5190692364abece1 /modules/database/db_redis.cpp
parentb2d028533dfb7d601f994621e7eee89857cb2927 (diff)
redis: check for socket errors when loading database on startup
Diffstat (limited to 'modules/database/db_redis.cpp')
-rw-r--r--modules/database/db_redis.cpp14
1 files changed, 13 insertions, 1 deletions
diff --git a/modules/database/db_redis.cpp b/modules/database/db_redis.cpp
index 4db4e723a..0e8bfc5a9 100644
--- a/modules/database/db_redis.cpp
+++ b/modules/database/db_redis.cpp
@@ -179,6 +179,12 @@ class DatabaseRedis : public Module, public Pipe
EventReturn OnLoadDatabase() anope_override
{
+ if (!redis)
+ {
+ Log(this) << "Unable to load database - unable to find redis provider";
+ return EVENT_CONTINUE;
+ }
+
const std::vector<Anope::string> type_order = Serialize::Type::GetTypeOrder();
for (unsigned i = 0; i < type_order.size(); ++i)
{
@@ -186,7 +192,13 @@ class DatabaseRedis : public Module, public Pipe
this->OnSerializeTypeCreate(sb);
}
- while (redis->BlockAndProcess());
+ while (!redis->IsSocketDead() && redis->BlockAndProcess());
+
+ if (redis->IsSocketDead())
+ {
+ Log(this) << "I/O error while loading redis database - is it online?";
+ return EVENT_CONTINUE;
+ }
redis->Subscribe(&this->sl, "__keyspace@*__:hash:*");