From 30eeaf9d5a383d168e04868b774179839c8afc45 Mon Sep 17 00:00:00 2001
From: Petr Zejdl <petr.zejdl@cern.ch>
Date: Fri, 19 Oct 2018 19:23:21 +0200
Subject: [PATCH] Fixing bug in config read

---
 src/config.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/config.h b/src/config.h
index ad4f53d3..c7659819 100644
--- a/src/config.h
+++ b/src/config.h
@@ -87,7 +87,7 @@ public:
     return (true ? vmap.at("enable_stream_processor") == "yes" : false);
   }
   bool getEnableElasticProcessor() const {
-    return (true ? vmap.at("enable_stream_processor") == "yes" : false);
+    return (true ? vmap.at("enable_elastic_processor") == "yes" : false);
   }
 
 private:
-- 
GitLab