This is an automated email from the ASF dual-hosted git repository.
dsmiley pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/main by this push:
new 6d95533fbe0 build runDev: specify solr.host.advertise
6d95533fbe0 is described below
commit 6d95533fbe01130f6538262b9a895096f529f604
Author: David Smiley <[email protected]>
AuthorDate: Tue Feb 24 23:32:35 2026 -0500
build runDev: specify solr.host.advertise
---
solr/packaging/build.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/solr/packaging/build.gradle b/solr/packaging/build.gradle
index 59a73fcfca5..31d4904ba91 100644
--- a/solr/packaging/build.gradle
+++ b/solr/packaging/build.gradle
@@ -235,7 +235,7 @@ tasks.register('runDev', JavaExec) {
jvmArgs = [] // don't use defaults from our build that assume this is a
typical build task
jvmArgs((project.findProperty('jvmArgs') ?: '').split())
- systemProperty 'solr.host', '127.0.0.1'
+ systemProperty 'solr.host.advertise', '127.0.0.1'
systemProperty 'solr.port.listen', '8983'
systemProperty 'solr.install.dir', file("$workingDir/..")
systemProperty 'solr.logs.dir', file("$workingDir/logs")