Updated Branches: refs/heads/4.1 8d333ec66 -> 93dfbd267
CLOUDSTACK-1684: api.throttling.enabled configuration setting should be set to "false" in Config.java. Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/93dfbd26 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/93dfbd26 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/93dfbd26 Branch: refs/heads/4.1 Commit: 93dfbd2672bd09a117f9b8d4fbe30e84c151fa88 Parents: 8d333ec Author: Min Chen <[email protected]> Authored: Thu Mar 14 10:55:29 2013 -0700 Committer: Chip Childers <[email protected]> Committed: Thu Mar 14 21:16:40 2013 -0400 ---------------------------------------------------------------------- server/src/com/cloud/configuration/Config.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/93dfbd26/server/src/com/cloud/configuration/Config.java ---------------------------------------------------------------------- diff --git a/server/src/com/cloud/configuration/Config.java b/server/src/com/cloud/configuration/Config.java index 5313129..17fe62b 100755 --- a/server/src/com/cloud/configuration/Config.java +++ b/server/src/com/cloud/configuration/Config.java @@ -365,7 +365,7 @@ public enum Config { IntervalToEchoBaremetalSecurityGroupAgent("Advanced", ManagementServer.class, Integer.class, "interval.baremetal.securitygroup.agent.echo", "10", "Interval to echo baremetal security group agent, in seconds", null), TimeoutToEchoBaremetalSecurityGroupAgent("Advanced", ManagementServer.class, Integer.class, "timeout.baremetal.securitygroup.agent.echo", "3600", "Timeout to echo baremetal security group agent, in seconds, the provisioning process will be treated as a failure", null), - ApiLimitEnabled("Advanced", ManagementServer.class, Boolean.class, "api.throttling.enabled", "true", "Enable/disable Api rate limit", null), + ApiLimitEnabled("Advanced", ManagementServer.class, Boolean.class, "api.throttling.enabled", "false", "Enable/disable Api rate limit", null), ApiLimitInterval("Advanced", ManagementServer.class, Integer.class, "api.throttling.interval", "1", "Time interval (in seconds) to reset API count", null), ApiLimitMax("Advanced", ManagementServer.class, Integer.class, "api.throttling.max", "25", "Max allowed number of APIs within fixed interval", null), ApiLimitCacheSize("Advanced", ManagementServer.class, Integer.class, "api.throttling.cachesize", "50000", "Account based API count cache size", null);
