Class: InsightsCloud::Async::InsightsResolutionsSync
- Inherits:
-
Actions::EntryAction
- Object
- Actions::EntryAction
- InsightsCloud::Async::InsightsResolutionsSync
- Defined in:
- lib/insights_cloud/async/insights_resolutions_sync.rb
Constant Summary collapse
- RULE_ID_REGEX =
/[^:]*:(?<id>.*)/
Instance Method Summary collapse
Methods included from ForemanRhCloud::Async::ExponentialBackoff
#attempts_before_next_interval, #done!, #done?, #invoke_external_task, #poll_external_task, #poll_intervals
Methods included from ForemanRhCloud::CertAuth
#cert_auth_available?, #execute_cloud_request
Methods included from CandlepinCache
#candlepin_id_cert, #cp_owner_id, #upstream_owner
Methods included from ForemanRhCloud::CloudRequest
Instance Method Details
#logger ⇒ Object
25 26 27 |
# File 'lib/insights_cloud/async/insights_resolutions_sync.rb', line 25 def logger action_logger end |
#try_execute ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/insights_cloud/async/insights_resolutions_sync.rb', line 11 def try_execute InsightsResolution.transaction do InsightsResolution.delete_all rule_ids = relevant_rules Organization.all.each do |organization| next if !cert_auth_available?(organization) || organization.manifest_expired? api_response = query_insights_resolutions(rule_ids, organization) unless rule_ids.empty? written_rules = write_resolutions(api_response) if api_response rule_ids -= Array(written_rules) end end done! end |