Skip to content
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

solr 9.8.0 #205087

Merged
merged 2 commits into from
Jan 21, 2025
Merged

solr 9.8.0 #205087

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
10 changes: 5 additions & 5 deletions Formula/s/solr.rb
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
class Solr < Formula
desc "Enterprise search platform from the Apache Lucene project"
homepage "https://solr.apache.org/"
url "https://dlcdn.apache.org/solr/solr/9.7.0/solr-9.7.0.tgz"
mirror "https://archive.apache.org/dist/solr/solr/9.7.0/solr-9.7.0.tgz"
sha256 "38548b86fa4e3c87883875952da124bf7d742cb8f7b25d37a1176833588e8552"
url "https://dlcdn.apache.org/solr/solr/9.8.0/solr-9.8.0.tgz"
mirror "https://archive.apache.org/dist/solr/solr/9.8.0/solr-9.8.0.tgz"
sha256 "9948dcf798c196b834c4cbb420d1ea5995479431669d266c33d46548b67e69e1"
license "Apache-2.0"

bottle do
sha256 cellar: :any_skip_relocation, all: "82efa5f25dcb617a3019748c12705ea9ad6195cbdd2f3647a7a986e8ed039cc1"
sha256 cellar: :any_skip_relocation, all: "3e72be3a0207005b22a718bef417d0bb1740cc8961f8763c02da6425783b6b14"
end

depends_on "openjdk"
Expand Down Expand Up @@ -45,7 +45,7 @@ def post_install

# Start a Solr node => exit code 0
shell_output("#{bin}/solr start -p #{port} -Djava.io.tmpdir=/tmp")
assert_match "Found 1 Solr nodes", shell_output("#{bin}/solr status")
assert_match(/Solr process \d+ running on port #{port}/, shell_output("#{bin}/solr status"))

# Impossible to start a second Solr node on the same port => exit code 1
shell_output("#{bin}/solr start -p #{port}", 1)
Expand Down
Loading