summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index ec58747f4..ebcbe22fd 100644
--- a/src/main.c
+++ b/src/main.c
@@ -174,28 +174,35 @@ void save_databases(void)
if (!skeleton) {
waiting = -11;
save_ns_rdb_dbase();
+ anope_cmd_pong(ServerName, ServerName);
waiting = -12;
save_cs_rdb_dbase();
+ anope_cmd_pong(ServerName, ServerName);
if (PreNickDBName) {
save_ns_req_rdb_dbase();
+ anope_cmd_pong(ServerName, ServerName);
waiting = -13;
}
- /* Temporary fix to avoid unwanted timeouts... */
- anope_cmd_pong(ServerName, ServerName);
if (s_BotServ) {
waiting = -14;
save_bs_rdb_dbase();
+ anope_cmd_pong(ServerName, ServerName);
}
if (s_HostServ) {
waiting = -15;
save_hs_rdb_dbase();
+ anope_cmd_pong(ServerName, ServerName);
}
waiting = -16;
save_os_rdb_dbase();
+ anope_cmd_pong(ServerName, ServerName);
waiting = -17;
save_rdb_news();
+ anope_cmd_pong(ServerName, ServerName);
waiting = -18;
save_rdb_exceptions();
+ anope_cmd_pong(ServerName, ServerName);
+
}
}
#endif