Commit fe0de99c authored by Stan Hu's avatar Stan Hu

Gracefully recover from Redis connection failures in Sidekiq initializer

* Closes gitlab-org/gitlab-ce#25143
* Closes gitlab-org/omnibus-gitlab#1743
parent 8146ad81
---
title: Gracefully recover from Redis connection failures in Sidekiq initializer
merge_request:
author:
......@@ -61,5 +61,5 @@ begin
end
end
end
rescue Redis::BaseError, SocketError
rescue Redis::BaseError, SocketError, Errno::ENOENT, Errno::EAFNOSUPPORT, Errno::ECONNRESET, Errno::ECONNREFUSED
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment