diff options
author | Thom May <thom@chef.io> | 2016-03-03 11:37:44 +0000 |
---|---|---|
committer | Thom May <thom@chef.io> | 2016-03-04 14:47:58 +0000 |
commit | ff539423f067ee83c07dcf73cbf688c6a07f64ae (patch) | |
tree | 5472f234d9df0892df49313f8407b4c003fab1fe /lib/chef/event_dispatch | |
parent | 788ec4597c9f1517c26d85703bdc79ea01e5ff53 (diff) | |
download | chef-ff539423f067ee83c07dcf73cbf688c6a07f64ae.tar.gz |
Enable progress output to be configuredtm/remote_file_download_progress
Add tests around progress output and tidy up
Diffstat (limited to 'lib/chef/event_dispatch')
-rw-r--r-- | lib/chef/event_dispatch/base.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/chef/event_dispatch/base.rb b/lib/chef/event_dispatch/base.rb index 65cb519dc7..e6bbbc929f 100644 --- a/lib/chef/event_dispatch/base.rb +++ b/lib/chef/event_dispatch/base.rb @@ -297,12 +297,6 @@ class Chef # - resource_completed # - # Called when a progress notification should be sent to the user to - # indicate the overall progress of a long running operation, such as - # a large file download. - def resource_action_progress(resource, current, total, interval) - end - # Called before action is executed on a resource. def resource_action_start(resource, action, notification_type = nil, notifier = nil) end @@ -330,6 +324,12 @@ class Chef def resource_update_applied(resource, action, update) end + # Called when a progress notification should be sent to the user to + # indicate the overall progress of a long running operation, such as + # a large file download. + def resource_update_progress(resource, current, total, interval) + end + # Called when a resource fails, but will retry. def resource_failed_retriable(resource, action, retry_count, exception) end |