Task json dump whitespace

When reading the JsonBody property, we should not be encoding json
whitespace or trying to pretty print it.  The json is already going into
a string payload, it should show up on one line if possible.

Tested:
Started a dump, observed
"JsonBody": "{\"DiagnosticDataType\":\"Manager\"}",

Change-Id: I964609db6bd67a2a5415e40d4479feba65814ad0
Signed-off-by: Ed Tanous <ed@tanous.net>
diff --git a/redfish-core/lib/task.hpp b/redfish-core/lib/task.hpp
index 09c92d1..8d81a29 100644
--- a/redfish-core/lib/task.hpp
+++ b/redfish-core/lib/task.hpp
@@ -416,7 +416,7 @@
                 p.httpOperation;
             asyncResp->res.jsonValue["Payload"]["HttpHeaders"] = p.httpHeaders;
             asyncResp->res.jsonValue["Payload"]["JsonBody"] = p.jsonBody.dump(
-                2, ' ', true, nlohmann::json::error_handler_t::replace);
+                -1, ' ', true, nlohmann::json::error_handler_t::replace);
         }
         asyncResp->res.jsonValue["PercentComplete"] = ptr->percentComplete;
     });