Skip to content

Commit

Permalink
Add CHANGES entry and tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
tflobbe committed Nov 29, 2023
1 parent 2f7bbf7 commit 216f119
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions solr/CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ New Features

* SOLR-17079: Allow to declare replica placement plugins in solr.xml (Vincent Primault)

* SOLR-16743: When using TLS, Solr can now auto-reload the keystore and truststore without the need to restart the process.
This is enabled by default when running with TLS and can be disabled or configured in solr.in.sh (Houston Putman, Tomás Fernández Löbbe)

Improvements
---------------------
* SOLR-16924: RESTORECORE now sets the UpdateLog to ACTIVE state instead of requiring a separate
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,8 @@ private HttpClient createHttpClient(Builder builder) {
&& builder.keyStoreReloadIntervalSecs > 0) {
scanner = new KeyStoreScanner(sslContextFactory);
try {
scanner.setScanInterval((int) Math.min(builder.keyStoreReloadIntervalSecs, Integer.MAX_VALUE));
scanner.setScanInterval(
(int) Math.min(builder.keyStoreReloadIntervalSecs, Integer.MAX_VALUE));
scanner.start();
if (log.isDebugEnabled()) {
log.debug("Key Store Scanner started");
Expand Down

0 comments on commit 216f119

Please sign in to comment.