diff options
author | PrajaktaPurohit <PrajaktaPurohit@users.noreply.github.com> | 2022-05-17 12:11:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-17 12:11:25 -0700 |
commit | 506fdbab9fb939b3190e7380976192ef0068d8f2 (patch) | |
tree | 35a84c63d8a48e76f1e5c33d64dffd7fbf0694f5 | |
parent | 2ba6ce8c38ba371c9cacd7ec0e0f913b2a4338c5 (diff) | |
parent | bad9fad5fef1f76407d3cbb20994df37b1ac5f28 (diff) | |
download | chef-506fdbab9fb939b3190e7380976192ef0068d8f2.tar.gz |
Merge pull request #12872 from chef/i5pranay93/INFWS-73-customer-bug-671-chef-17
Handling compliance phase error
-rw-r--r-- | lib/chef/compliance/input_collection.rb | 2 | ||||
-rw-r--r-- | lib/chef/compliance/profile_collection.rb | 2 | ||||
-rw-r--r-- | lib/chef/compliance/waiver_collection.rb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/compliance/input_collection.rb b/lib/chef/compliance/input_collection.rb index 034943f8d9..a3e55c5f6a 100644 --- a/lib/chef/compliance/input_collection.rb +++ b/lib/chef/compliance/input_collection.rb @@ -40,7 +40,7 @@ class Chef def from_file(filename, cookbook_name) new_input = Input.from_file(events, filename, cookbook_name) self << new_input - events.compliance_input_loaded(new_input) + events&.compliance_input_loaded(new_input) end # Add a input from a raw hash. This input will be enabled by default. diff --git a/lib/chef/compliance/profile_collection.rb b/lib/chef/compliance/profile_collection.rb index d85d04e825..919abe0c51 100644 --- a/lib/chef/compliance/profile_collection.rb +++ b/lib/chef/compliance/profile_collection.rb @@ -41,7 +41,7 @@ class Chef def from_file(path, cookbook_name) new_profile = Profile.from_file(events, path, cookbook_name) self << new_profile - events.compliance_profile_loaded(new_profile) + events&.compliance_profile_loaded(new_profile) end # @return [Boolean] if any of the profiles are enabled diff --git a/lib/chef/compliance/waiver_collection.rb b/lib/chef/compliance/waiver_collection.rb index a3d12b3a97..68dce07287 100644 --- a/lib/chef/compliance/waiver_collection.rb +++ b/lib/chef/compliance/waiver_collection.rb @@ -40,7 +40,7 @@ class Chef def from_file(filename, cookbook_name) new_waiver = Waiver.from_file(events, filename, cookbook_name) self << new_waiver - events.compliance_waiver_loaded(new_waiver) + events&.compliance_waiver_loaded(new_waiver) end # Add a waiver from a raw hash. This waiver will be enabled by default. |