aws-sdk 2.1413.0 → 2.1415.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/core.js CHANGED
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1413.0',
23
+ VERSION: '2.1415.0',
24
24
 
25
25
  /**
26
26
  * @api private
package/lib/http/node.js CHANGED
@@ -32,13 +32,14 @@ AWS.NodeHttpClient = AWS.util.inherit({
32
32
  path: pathPrefix + httpRequest.path
33
33
  };
34
34
 
35
+ AWS.util.update(options, httpOptions);
36
+
35
37
  if (!httpOptions.agent) {
36
38
  options.agent = this.getAgent(useSSL, {
37
39
  keepAlive: process.env[CONNECTION_REUSE_ENV_NAME] === '1' ? true : false
38
40
  });
39
41
  }
40
42
 
41
- AWS.util.update(options, httpOptions);
42
43
  delete options.proxy; // proxy isn't an HTTP option
43
44
  delete options.timeout; // timeout isn't an HTTP option
44
45
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aws-sdk",
3
3
  "description": "AWS SDK for JavaScript",
4
- "version": "2.1413.0",
4
+ "version": "2.1415.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",