-
Notifications
You must be signed in to change notification settings - Fork 739
Migrate to dot seperate naming of environment variables #3312
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
c01f7a3
e5db437
d195102
1d3adfe
59b4d55
58e71dd
42d9f1c
3ea631c
898350f
064d9a0
5dc09bb
16c941f
ed1362e
b12e762
e204ea7
6946605
6e55300
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1766,7 +1766,7 @@ private SolrCore createFromDescriptor( | |
// this mostly happens when the core is deleted when this node is down | ||
// but it can also happen if connecting to the wrong zookeeper | ||
final boolean deleteUnknownCores = | ||
Boolean.parseBoolean(System.getProperty("solr.deleteUnknownCores", "false")); | ||
Boolean.parseBoolean(System.getProperty("solr.delete.unknown.cores", "false")); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I can see that this is a painfully long prop, and I kind of agree with Smiley that I'm personally willing to embrace structure and simplified rules for parsing/mapping and sacrifice some readability or brewity. Perhaps further down the road we could build one very simple config parser that instantiates config objects without all the bolier-plate parsing code we have today. |
||
log.error( | ||
"SolrCore {} in {} is not in cluster state.{}", | ||
dcore.getName(), | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
solr.packages.enabled
?