Skip to content

Commit

Permalink
Merge pull request kubernetes#19976 from aarondav/elb-timeout
Browse files Browse the repository at this point in the history
Auto commit by PR queue bot
  • Loading branch information
k8s-merge-robot committed Jan 31, 2016
2 parents f684e80 + 97689c3 commit 3db1a6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/cloudprovider/providers/aws/aws_loadbalancer.go
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,10 @@ func (s *AWSCloud) ensureLoadBalancerHealthCheck(loadBalancer *elb.LoadBalancerD
actual := loadBalancer.HealthCheck

// Default AWS settings
expectedHealthyThreshold := int64(10)
expectedUnhealthyThreshold := int64(2)
expectedHealthyThreshold := int64(2)
expectedUnhealthyThreshold := int64(6)
expectedTimeout := int64(5)
expectedInterval := int64(30)
expectedInterval := int64(10)

// We only a TCP health-check on the first port
expectedTarget := ""
Expand Down

0 comments on commit 3db1a6c

Please sign in to comment.