diff --git a/NEWS.md b/NEWS.md index 3510f537..b23ff409 100644 --- a/NEWS.md +++ b/NEWS.md @@ -9,7 +9,7 @@ Enhancements: - Do not log an error on GET / (#177) - Do not UNWATCH on every redis client release (#161) - Include API docs (#164) - - Add "dnsCache" statsd setting in the example configs + - Add "cacheDns" statsd setting in the example configs Bug fixes: diff --git a/config/environments/development.js.example b/config/environments/development.js.example index b9ee3a56..4e078558 100644 --- a/config/environments/development.js.example +++ b/config/environments/development.js.example @@ -65,7 +65,7 @@ var config = { host: 'localhost', port: 8125, prefix: 'dev.', - dnsCache: true + cacheDns: true // support all allowed node-statsd options } ,renderer: { diff --git a/config/environments/production.js.example b/config/environments/production.js.example index 612f3090..ed12e57a 100644 --- a/config/environments/production.js.example +++ b/config/environments/production.js.example @@ -59,7 +59,7 @@ var config = { host: 'localhost', port: 8125, prefix: ':host.', // could be hostname, better not containing dots - dnsCache: true + cacheDns: true // support all allowed node-statsd options } ,renderer: { diff --git a/config/environments/staging.js.example b/config/environments/staging.js.example index 5ffb589c..e098ba6d 100644 --- a/config/environments/staging.js.example +++ b/config/environments/staging.js.example @@ -59,7 +59,7 @@ var config = { host: 'localhost', port: 8125, prefix: 'stage.:host.', - dnsCache: true + cacheDns: true // support all allowed node-statsd options } ,renderer: { diff --git a/config/environments/test.js.example b/config/environments/test.js.example index 3b935879..e4a60330 100644 --- a/config/environments/test.js.example +++ b/config/environments/test.js.example @@ -59,7 +59,7 @@ var config = { host: 'localhost', port: 8125, prefix: 'test.:host.', - dnsCache: true + cacheDns: true // support all allowed node-statsd options } ,renderer: {