# File lib/abingo.rb, line 142
  def wait_for_lock_release(lock_key)
    while Abingo.cache.exist?(lock_key)
      sleep(0.1)
    end
  end