summaryrefslogtreecommitdiff
path: root/lib/chef/event_dispatch
diff options
context:
space:
mode:
authorRanjib Dey <dey.ranjib@gmail.com>2013-07-25 12:31:15 -0700
committerBryan McLellan <btm@opscode.com>2013-11-06 09:13:47 -0800
commit19511dbd2f3054752e3013c0853dc5cc9951033a (patch)
treedf0d9cb48b6308cb90b251b3fb24cac7f659d8f5 /lib/chef/event_dispatch
parentde0b38de4c74a354477d841a66c604f92e647450 (diff)
downloadchef-19511dbd2f3054752e3013c0853dc5cc9951033a.tar.gz
compute elapsed time without altering public api
Diffstat (limited to 'lib/chef/event_dispatch')
-rw-r--r--lib/chef/event_dispatch/base.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/event_dispatch/base.rb b/lib/chef/event_dispatch/base.rb
index 1e4deeb694..82beefeec9 100644
--- a/lib/chef/event_dispatch/base.rb
+++ b/lib/chef/event_dispatch/base.rb
@@ -36,11 +36,11 @@ class Chef
end
# Called at the end a successful Chef run.
- def run_completed(node, elapsed_time)
+ def run_completed(node)
end
# Called at the end of a failed Chef run.
- def run_failed(exception, elapsed_time)
+ def run_failed(exception)
end
# Called right after ohai runs.