Skip to content

Commit

Permalink
Adding an additional field to override hystrix.config.stream.maxConcu…
Browse files Browse the repository at this point in the history
…rrentConnections as well. This was changed by Hystrix 1.5.4
  • Loading branch information
cgray committed Aug 19, 2016
1 parent d851195 commit 5babdff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.5.2 - August 18, 2016
---
* `Hystrix 1.5.4` changed the `HystrixMetricsStreamServlet` to use a new parameter to
control the max number of concurrent connections: `hystrix.config.stream.maxConcurrentConnections`.

0.5.1 - August 9, 2016
---
* [Tenacity 1.0.1](https://github.com/yammer/tenacity)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public static ArchaiusFormatBuilder builder() {

public ArchaiusFormatBuilder hystrixMetricsStreamServletMaxConnections(int value) {
appender("hystrix.stream.maxConcurrentConnections", value);
appender("hystrix.config.stream.maxConcurrentConnections", value);
return this;
}

Expand Down

0 comments on commit 5babdff

Please sign in to comment.