class Chef::Exceptions::RunLockTimeout

Raised when Chef::Config is set and some other client run fails to release the run lock becure Chef::Config seconds pass.

Public Class Methods

new(duration, blocking_pid) click to toggle source
Calls superclass method
# File lib/chef/exceptions.rb, line 330
def initialize(duration, blocking_pid)
  super "Unable to acquire lock. Waited #{duration} seconds for #{blocking_pid} to release."
end