Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Force mturk requests to use POST rather than GET. Fixes issue 414.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mitch Garnaat committed Jul 19, 2010
1 parent bafd3ec commit 687bb32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boto/mturk/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def _process_request(self, request_type, params, marker_elems=None):
"""
Helper to process the xml response from AWS
"""
response = self.make_request(request_type, params)
response = self.make_request(request_type, params, verb='POST')
return self._process_response(response, marker_elems)

def _process_response(self, response, marker_elems=None):
Expand Down

0 comments on commit 687bb32

Please sign in to comment.