Merge lp:~david-goetz/swift/memcache_error_limit into lp:~hudson-openstack/swift/trunk

Proposed by David Goetz
Status: Merged
Approved by: Mike Barton
Approved revision: 225
Merged at revision: 226
Proposed branch: lp:~david-goetz/swift/memcache_error_limit
Merge into: lp:~hudson-openstack/swift/trunk
Diff against target: 12 lines (+1/-1)
1 file modified
swift/common/memcached.py (+1/-1)
To merge this branch: bzr merge lp:~david-goetz/swift/memcache_error_limit
Reviewer Review Type Date Requested Status
Swift Core security contacts Pending
Review via email: mp+51611@code.launchpad.net

Description of the change

lower memcached error limit duration.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'swift/common/memcached.py'
2--- swift/common/memcached.py 2011-02-23 19:44:36 +0000
3+++ swift/common/memcached.py 2011-02-28 19:21:56 +0000
4@@ -38,7 +38,7 @@
5 # will be considered failed for ERROR_LIMIT_DURATION seconds.
6 ERROR_LIMIT_COUNT = 10
7 ERROR_LIMIT_TIME = 60
8-ERROR_LIMIT_DURATION = 300
9+ERROR_LIMIT_DURATION = 60
10
11
12 def md5hash(key):