mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
Show actual location, not :id, fixes #3560
This commit is contained in:
parent
0e79cba44c
commit
596c981f02
2 changed files with 6 additions and 1 deletions
|
@ -2,6 +2,11 @@
|
||||||
|
|
||||||
[Sidekiq Changes](https://github.com/mperham/sidekiq/blob/master/Changes.md) | [Sidekiq Pro Changes](https://github.com/mperham/sidekiq/blob/master/Pro-Changes.md) | [Sidekiq Enterprise Changes](https://github.com/mperham/sidekiq/blob/master/Ent-Changes.md)
|
[Sidekiq Changes](https://github.com/mperham/sidekiq/blob/master/Changes.md) | [Sidekiq Pro Changes](https://github.com/mperham/sidekiq/blob/master/Pro-Changes.md) | [Sidekiq Enterprise Changes](https://github.com/mperham/sidekiq/blob/master/Ent-Changes.md)
|
||||||
|
|
||||||
|
HEAD
|
||||||
|
-----------
|
||||||
|
|
||||||
|
- Fix display of Redis URL in web footer, broken in 5.0.3 [#3560]
|
||||||
|
|
||||||
5.0.4
|
5.0.4
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
|
|
|
@ -148,7 +148,7 @@ module Sidekiq
|
||||||
end
|
end
|
||||||
|
|
||||||
def redis_connection
|
def redis_connection
|
||||||
Sidekiq.redis { |conn| conn.client.id }
|
Sidekiq.redis { |conn| "redis://#{conn.client.location}/#{conn.client.db}" }
|
||||||
end
|
end
|
||||||
|
|
||||||
def namespace
|
def namespace
|
||||||
|
|
Loading…
Add table
Reference in a new issue