From b63df5aff28c494986b2e3201ba12f053214b7b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Wed, 30 May 2018 09:40:14 +0200 Subject: [PATCH] Fix bug introduce in 6eeeb5c --- lib/Query_Processor.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/Query_Processor.cpp b/lib/Query_Processor.cpp index 9c6865a74..4ef8525b2 100644 --- a/lib/Query_Processor.cpp +++ b/lib/Query_Processor.cpp @@ -1827,9 +1827,8 @@ void Query_Processor::load_fast_routing(SQLite3_result *resultset) { string s = r->fields[0]; s.append(rand_del); s.append(r->fields[1]); - s.append(rand_del); + s.append("---"); s.append(r->fields[2]); - s.append(rand_del); int destination_hostgroup = atoi(r->fields[3]); rules_fast_routing[s] = destination_hostgroup; }