Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2296)

Unified Diff: boto/mturk/connection.py

Issue 8669001: Pull in upstream boto from github at bcb719937de9ac2851e632d62b777352029a6d55 (Closed) Base URL: svn://svn.chromium.org/boto
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « boto/gs/bucket.py ('k') | boto/rds/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: boto/mturk/connection.py
diff --git a/boto/mturk/connection.py b/boto/mturk/connection.py
index 9e8493f8c4dd142d1137a992549c0d22050deac0..e59da15c8f044327ffc5b113532d042f9ce09e6d 100644
--- a/boto/mturk/connection.py
+++ b/boto/mturk/connection.py
@@ -560,8 +560,8 @@ class MTurkConnection(AWSQueryConnection):
test_duration: the number of seconds a worker has to complete the test.
- auto_granted: if True, requests for the Qualification are granted immediately.
- Can't coexist with a test.
+ auto_granted: if True, requests for the Qualification are granted
+ immediately. Can't coexist with a test.
auto_granted_value: auto_granted qualifications are given this value.
@@ -572,7 +572,7 @@ class MTurkConnection(AWSQueryConnection):
'QualificationTypeStatus' : status,
}
if retry_delay is not None:
- params['RetryDelay'] = retry_delay
+ params['RetryDelayInSeconds'] = retry_delay
if test is not None:
assert(isinstance(test, QuestionForm))
@@ -629,7 +629,7 @@ class MTurkConnection(AWSQueryConnection):
params['QualificationTypeStatus'] = status
if retry_delay is not None:
- params['RetryDelay'] = retry_delay
+ params['RetryDelayInSeconds'] = retry_delay
if test is not None:
assert(isinstance(test, QuestionForm))
« no previous file with comments | « boto/gs/bucket.py ('k') | boto/rds/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698