Commit 48dcb1bf authored by Jeffrey I. Schiller's avatar Jeffrey I. Schiller Committed by Evan W. Patton

Hotfix: Fix clouddb

CloudDB doesn’t deal with the new dictionary code so well, make sure we
don’t use dictionaries when we fetch from CloudDB

Change-Id: I8b23cd8c32041db2b252cad4822909862f969ece
parent 51f76cb2
...@@ -48,7 +48,7 @@ public class CloudDBJedisListener extends JedisPubSub { ...@@ -48,7 +48,7 @@ public class CloudDBJedisListener extends JedisPubSub {
try { try {
// Message is a JSON encoded list of the tag that was just set and its value // Message is a JSON encoded list of the tag that was just set and its value
List<Object> data = null; List<Object> data = null;
data = (List<Object>) JsonUtil.getObjectFromJson((String) message, true); data = (List<Object>) JsonUtil.getObjectFromJson((String) message, false);
if (DEBUG) { if (DEBUG) {
Log.d(LOG_TAG, "onMessage: data = " + data); Log.d(LOG_TAG, "onMessage: data = " + data);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment