Skip to content

Commit

Permalink
Merge pull request #1199 from Mashape/fix/ttl_on_failure
Browse files Browse the repository at this point in the history
Implementing missing check on ttl_on_failure
  • Loading branch information
subnetmarco committed May 10, 2016
2 parents 8fd6da8 + 5706dd1 commit 1af86b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kong.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
######
## The TTL (time to live), in seconds, of a node in the cluster when it stops sending healthcheck pings, maybe
## because of a failure. If the node is not able to send a new healthcheck before the expiration, then new nodes
## in the cluster will stop attempting to connect to it on startup.
## in the cluster will stop attempting to connect to it on startup. Should be at least 60.
# ttl_on_failure: 3600

######
Expand Down
2 changes: 1 addition & 1 deletion kong/tools/config_defaults.lua
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ return {
["advertise"] = {type = "string", nullable = true},
["encrypt"] = {type = "string", nullable = true},
["profile"] = {type = "string", default = "wan", enum = {"wan", "lan", "local"}},
["ttl_on_failure"] = {type = "number", default = 3600}
["ttl_on_failure"] = {type = "number", default = 3600, min = 60}
}
},
["database"] = {type = "string", default = "cassandra", enum = {"cassandra", "postgres"}},
Expand Down

0 comments on commit 1af86b1

Please sign in to comment.