summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevron Rees <kevron.m.rees@intel.com>2015-01-23 16:13:22 -0800
committerKevron Rees <kevron.m.rees@intel.com>2015-01-23 16:13:22 -0800
commit4f57b3d5331a17b38b2c0c414482bd884505e949 (patch)
tree858ff2f28430af11a4b4bedc6e58aaad68e46bba
parent2387c6e71537e3ab2de0a68c0b05998301b8b6b9 (diff)
downloadautomotive-message-broker-4f57b3d5331a17b38b2c0c414482bd884505e949.tar.gz
[Database] - fixed config
-rw-r--r--ambd/pluginloader.cpp2
-rw-r--r--plugins/database/database.in.json2
2 files changed, 1 insertions, 3 deletions
diff --git a/ambd/pluginloader.cpp b/ambd/pluginloader.cpp
index a2ffedd0..14be943d 100644
--- a/ambd/pluginloader.cpp
+++ b/ambd/pluginloader.cpp
@@ -207,8 +207,6 @@ void PluginLoader::scanPluginDir(const std::string & dir)
std::string fullpath = dir + (boost::algorithm::ends_with(dir, "/") ? "":"/") + name;
std::string data = get_file_contents(fullpath.c_str());
- DebugOut() << "data: " << data << endl;
-
if(!readPluginConfig(data))
{
DebugOut(DebugOut::Error) << "Reading contentds of file: " << name << endl;
diff --git a/plugins/database/database.in.json b/plugins/database/database.in.json
index 78eb6f06..78651624 100644
--- a/plugins/database/database.in.json
+++ b/plugins/database/database.in.json
@@ -4,7 +4,7 @@
"databaseFile" : "/tmp/storage",
"enabled" : false,
"bufferLength" : "100",
- "properties" : "['VehicleSpeed', 'EngineSpeed']",
+ "properties" : ["VehicleSpeed", "EngineSpeed"],
"startOnLoad" : "false",
"playbackOnLoad" : "false",
"playbackMultiplier" : "1",