Skip to content

Commit

Permalink
Merge pull request #22 from idealista/bugs/21
Browse files Browse the repository at this point in the history
#21 configuring acceptor/selector thread values right :)
  • Loading branch information
devetonez authored Apr 21, 2017
2 parents 60a0d97 + ceef4f9 commit cbc693b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file.

## [Unreleased](https://github.com/idealista/solrcloud-role/tree/develop)

### Fixed
- *[#21](https://github.com/idealista/solrcloud-role/issues/21) Fixing Acceptor/Selector thread configuration in jetty-http template* @dortegau

## [1.5.0](https://github.com/idealista/solrcloud-role/tree/1.5.0) (2017-03-31)
[Full Changelog](https://github.com/idealista/solrcloud-role/compare/1.4.0...1.5.0)

Expand Down
4 changes: 2 additions & 2 deletions templates/jetty-http.xml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
<Arg>
<New class="org.eclipse.jetty.server.ServerConnector">
<Arg name="server"><Ref refid="Server" /></Arg>
<Arg name="acceptors" type="int"><Property name="solr.jetty.http.acceptors" default="-1"/>{{ solr_jetty_http_acceptors }}</Arg>
<Arg name="selectors" type="int"><Property name="solr.jetty.http.selectors" default="-1"/>{{ solr_jetty_http_selectors }}</Arg>
<Arg name="acceptors" type="int"><Property name="solr.jetty.http.acceptors" default="{{ solr_jetty_http_acceptors }}"/></Arg>
<Arg name="selectors" type="int"><Property name="solr.jetty.http.selectors" default="{{ solr_jetty_http_selectors }}"/></Arg>
<Arg name="factories">
<Array type="org.eclipse.jetty.server.ConnectionFactory">
<Item>
Expand Down

0 comments on commit cbc693b

Please sign in to comment.