Sha256: f054118a78842f8411562bc99c6974499fbff38d8273db78925f0d9aaba6eff1

Contents?: true

Size: 1.18 KB

Versions: 3

Compression:

Stored size: 1.18 KB

Contents

module Actions
  module Pulp3
    module CapsuleContent
      class Sync < Pulp3::AbstractAsyncTask
        include ::Actions::Helpers::SmartProxySyncHistoryHelper
        def plan(repository, smart_proxy, options = {})
          sequence do
            sync_task = plan_self(:repository_id => repository.id, :smart_proxy_id => smart_proxy.id, :options => options)
            options[:sync_task_output] = sync_task.output[:pulp_tasks]
            plan_action(GenerateMetadata, repository, smart_proxy, options)
          end
        end

        def invoke_external_task
          repo = ::Katello::Repository.find(input[:repository_id])
          sync_options = {}
          sync_options[:optimize] = !input[:options].fetch(:skip_metadata_check, false)
          output[:pulp_tasks] = repo.backend_service(smart_proxy).with_mirror_adapter.sync(sync_options)
        end

        def rescue_strategy_for_self
          # There are various reasons the syncing fails, not all of them are
          # fatal: when fail on syncing, we continue with the task ending up
          # in the warning state, but not locking further syncs
          Dynflow::Action::Rescue::Skip
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
katello-4.15.0 app/lib/actions/pulp3/capsule_content/sync.rb
katello-4.15.0.rc2 app/lib/actions/pulp3/capsule_content/sync.rb
katello-4.15.0.rc1 app/lib/actions/pulp3/capsule_content/sync.rb