summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTyler Cipriani <tyler@tylercipriani.com>2014-05-15 11:10:58 -0600
committerTyler Cipriani <tyler@tylercipriani.com>2014-05-15 11:10:58 -0600
commit14fcbbb4183f9cf261ad42ad4d205e60540f8104 (patch)
treede4fbe10ca6f5f03962dd1dfdd0c99a75039d9e4
parent091c0ed0730f08b7eb9ebb37bd9d7938e1048c9d (diff)
downloadmixlib-shellout-14fcbbb4183f9cf261ad42ad4d205e60540f8104.tar.gz
Correct spelling of "exceeded"
-rw-r--r--lib/mixlib/shellout/unix.rb4
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