diff options
Diffstat (limited to 'buildscripts/resmokelib/logging/handlers.py')
-rw-r--r-- | buildscripts/resmokelib/logging/handlers.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/buildscripts/resmokelib/logging/handlers.py b/buildscripts/resmokelib/logging/handlers.py index 8a0bca26fbb..28e35d25a09 100644 --- a/buildscripts/resmokelib/logging/handlers.py +++ b/buildscripts/resmokelib/logging/handlers.py @@ -225,12 +225,8 @@ class HTTPHandler(object): # that defined InsecureRequestWarning. pass - response = requests.post(url, - data=data, - headers=headers, - timeout=timeout_secs, - auth=self.auth_handler, - verify=should_validate_certificates) + response = requests.post(url, data=data, headers=headers, timeout=timeout_secs, + auth=self.auth_handler, verify=should_validate_certificates) response.raise_for_status() |