Skip to content

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
  • Loading branch information
mperham committed Jan 8, 2025
1 parent 844ae59 commit 510928f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Pro-Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ HEAD (8.0)
7.3.5
---------

- Fix pause/unpause [#6574]
- Relax metric connection pool sizing [#6560]

7.3.4
Expand Down
4 changes: 2 additions & 2 deletions lib/sidekiq/web/helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ def store_name
hash = redis_info
return "Dragonfly" if hash.has_key?("dragonfly_version")
return "Valkey" if hash.has_key?("valkey_version")
return "Redis"
"Redis"
end

def store_version
hash = redis_info
return hash["dragonfly_version"] if hash.has_key?("dragonfly_version")
return hash["valkey_version"] if hash.has_key?("valkey_version")
return hash["redis_version"]
hash["redis_version"]
end

def style_tag(location, **kwargs)
Expand Down

0 comments on commit 510928f

Please sign in to comment.