FIX: Make sure we write inside a lock.

This commit is contained in:
Guo Xiang Tan 2016-02-23 23:25:59 +08:00
parent 1253afdf95
commit c344bd3fd1

View File

@ -39,11 +39,13 @@ class PostgreSQLFallbackHandler
raise e
end
ensure
@mutex.synchronize do
@last_check = Time.zone.now
@running = false
end
end
end
end
private