diff options
author | Tyler Cipriani <tyler@tylercipriani.com> | 2014-05-15 11:10:58 -0600 |
---|---|---|
committer | Tyler Cipriani <tyler@tylercipriani.com> | 2014-05-15 11:10:58 -0600 |
commit | 14fcbbb4183f9cf261ad42ad4d205e60540f8104 (patch) | |
tree | de4fbe10ca6f5f03962dd1dfdd0c99a75039d9e4 /lib/mixlib | |
parent | 091c0ed0730f08b7eb9ebb37bd9d7938e1048c9d (diff) | |
download | mixlib-shellout-14fcbbb4183f9cf261ad42ad4d205e60540f8104.tar.gz |
Correct spelling of "exceeded"
Diffstat (limited to 'lib/mixlib')
-rw-r--r-- | lib/mixlib/shellout/unix.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mixlib/shellout/unix.rb b/lib/mixlib/shellout/unix.rb index aac28f0..8032cf1 100644 --- a/lib/mixlib/shellout/unix.rb +++ b/lib/mixlib/shellout/unix.rb @@ -346,8 +346,8 @@ module Mixlib def reap_errant_child return if attempt_reap - @terminate_reason = "Command execeded allowed execution time, process terminated" - logger.error("Command execeded allowed execution time, sending TERM") if logger + @terminate_reason = "Command exceeded allowed execution time, process terminated" + logger.error("Command exceeded allowed execution time, sending TERM") if logger Process.kill(:TERM, child_pgid) sleep 3 attempt_reap |