You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bm...@apache.org on 2014/08/26 04:56:34 UTC

[2/2] git commit: Adjustments for new JSON streaming.

Adjustments for new JSON streaming.

Review: https://reviews.apache.org/r/25053


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/7de27508
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/7de27508
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/7de27508

Branch: refs/heads/master
Commit: 7de27508fd4f6ddb1434c8e23f61985b72bc3f6e
Parents: 73da21e
Author: Benjamin Mahler <bm...@twitter.com>
Authored: Tue Aug 19 18:33:33 2014 -0700
Committer: Benjamin Mahler <bm...@twitter.com>
Committed: Mon Aug 25 18:50:17 2014 -0700

----------------------------------------------------------------------
 3rdparty/libprocess/include/process/http.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/7de27508/3rdparty/libprocess/include/process/http.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/include/process/http.hpp b/3rdparty/libprocess/include/process/http.hpp
index 6358e33..05a3261 100644
--- a/3rdparty/libprocess/include/process/http.hpp
+++ b/3rdparty/libprocess/include/process/http.hpp
@@ -194,7 +194,7 @@ struct OK : Response
       out << jsonp.get() << "(";
     }
 
-    JSON::render(out, value);
+    out << value;
 
     if (jsonp.isSome()) {
       out << ");";