Repository: cloudstack Updated Branches: refs/heads/master 2ae40237a -> 4f43839da
CLOUDSTACK-7797: listSupportedNetworkServices API takes more than 1 second to complete, slow compared to previous 4.3 release. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/4f43839d Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/4f43839d Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/4f43839d Branch: refs/heads/master Commit: 4f43839dae617a5142021ae890d408979b5a2135 Parents: 2ae4023 Author: Min Chen <min.c...@citrix.com> Authored: Thu Oct 23 17:56:47 2014 -0700 Committer: Min Chen <min.c...@citrix.com> Committed: Mon Oct 27 16:27:17 2014 -0700 ---------------------------------------------------------------------- server/src/com/cloud/api/ApiServer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/4f43839d/server/src/com/cloud/api/ApiServer.java ---------------------------------------------------------------------- diff --git a/server/src/com/cloud/api/ApiServer.java b/server/src/com/cloud/api/ApiServer.java index 4b770fc..e29ddd3 100755 --- a/server/src/com/cloud/api/ApiServer.java +++ b/server/src/com/cloud/api/ApiServer.java @@ -756,7 +756,7 @@ public class ApiServer extends ManagerBase implements HttpRequestHandler, ApiSer if (command.equals("createSSHKeyPair")) { auditTrailSb.append("This result was not logged because it contains sensitive data."); } else { - auditTrailSb.append(StringUtils.cleanString(result)); + auditTrailSb.append(result); } }