From 36469da8faa762e9b60163b88f52e47b311ee798 Mon Sep 17 00:00:00 2001 From: alena Date: Mon, 13 Jun 2011 09:29:56 -0700 Subject: [PATCH] API response encoding is false by default --- server/src/com/cloud/configuration/Config.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/com/cloud/configuration/Config.java b/server/src/com/cloud/configuration/Config.java index fd5a5b4af85..90b74d9d510 100755 --- a/server/src/com/cloud/configuration/Config.java +++ b/server/src/com/cloud/configuration/Config.java @@ -237,7 +237,7 @@ public enum Config { AgentLbEnable("Advanced", ClusterManager.class, Boolean.class, "agent.lb.enabled", "true", "If agent load balancing enabled in cluster setup", null), SubDomainNetworkAccess("Advanced", NetworkManager.class, Boolean.class, "allow.subdomain.network.access", "true", "Allow subdomains to use networks dedicated to their parent domain(s)", null), - EncodeApiResponse("Advanced", ManagementServer.class, Boolean.class, "encode.api.response", "true", "Do UTF-8 encoding for the api response, true by default", null); + EncodeApiResponse("Advanced", ManagementServer.class, Boolean.class, "encode.api.response", "false", "Do UTF-8 encoding for the api response, false by default", null); private final String _category;