FIX: correct readonly timeout

So it only applies in readonly mode
This commit is contained in:
Sam 2018-09-20 15:15:29 +10:00
parent 195bd02fce
commit e0be5145cf
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class DistributedMutex
while !try_to_get_lock
sleep 0.001
# in readonly we will never be able to get a lock
if @using_global_redis
if @using_global_redis && Discourse.recently_readonly?
attempts += 1
if attempts > CHECK_READONLY_ATTEMPT
raise Discourse::ReadOnly