diff options
Diffstat (limited to 'lib/chef/application/client.rb')
-rw-r--r-- | lib/chef/application/client.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/application/client.rb b/lib/chef/application/client.rb index e779a270aa..89c6927a4d 100644 --- a/lib/chef/application/client.rb +++ b/lib/chef/application/client.rb @@ -480,7 +480,7 @@ class Chef::Application::Client < Chef::Application end def client_sleep(sec) - IO.select([ SELF_PIPE[0] ], nil, nil, sec) or return + IO.select([ SELF_PIPE[0] ], nil, nil, sec) || (return) @signal = SELF_PIPE[0].getc.chr end |