Skip to content

Commit

Permalink
Added support for configurable idle timeouts to the Elastic Load Bala…
Browse files Browse the repository at this point in the history
…ncing client.
  • Loading branch information
jeremeamia committed Jul 24, 2014
1 parent 6304791 commit f91d8b6
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,11 @@
CHANGELOG
=========

Next Release:
-------------
* Added support for configurable idle timeouts to the Elastic Load Balancing
client.

2.6.12 (2014-07-16)
-------------------

Expand Down
Expand Up @@ -951,6 +951,12 @@
'type' => 'string',
'location' => 'aws.query',
),
'PageSize' => array(
'type' => 'numeric',
'location' => 'aws.query',
'minimum' => 1,
'maximum' => 400,
),
),
'errorResponses' => array(
array(
Expand Down Expand Up @@ -1156,6 +1162,17 @@
),
),
),
'ConnectionSettings' => array(
'type' => 'object',
'properties' => array(
'IdleTimeout' => array(
'required' => true,
'type' => 'numeric',
'minimum' => 1,
'maximum' => 3600,
),
),
),
),
),
),
Expand Down Expand Up @@ -1551,6 +1568,14 @@
),
),
),
'ConnectionSettings' => array(
'type' => 'object',
'properties' => array(
'IdleTimeout' => array(
'type' => 'numeric',
),
),
),
),
),
),
Expand Down Expand Up @@ -1949,6 +1974,14 @@
),
),
),
'ConnectionSettings' => array(
'type' => 'object',
'properties' => array(
'IdleTimeout' => array(
'type' => 'numeric',
),
),
),
),
),
),
Expand Down

0 comments on commit f91d8b6

Please sign in to comment.