diff --git a/app/controllers/katello/api/v2/content_view_filters_controller.rb b/app/controllers/katello/api/v2/content_view_filters_controller.rb index 2d6cddd7a9a..97da30a83af 100644 --- a/app/controllers/katello/api/v2/content_view_filters_controller.rb +++ b/app/controllers/katello/api/v2/content_view_filters_controller.rb @@ -4,16 +4,14 @@ class Api::V2::ContentViewFiltersController < Api::V2::ApiController before_filter :find_content_view before_filter :find_filter, :except => [:index, :create, :auto_complete_search] - before_filter :load_search_service, :only => [:available_package_groups] - before_filter :deprecated, :only => [:available_package_groups] wrap_parameters :include => (ContentViewFilter.attribute_names + %w(repository_ids)) - api :GET, "/content_views/:content_view_id/filters", N_("List filters") - api :GET, "/content_view_filters", N_("List filters") + api :get, "/content_views/:content_view_id/filters", N_("list filters") + api :get, "/content_view_filters", N_("list filters") param_group :search, Api::V2::ApiController param :content_view_id, :identifier, :desc => N_("content view identifier"), :required => true - param :name, String, :desc => N_("Filter content view filters by name") + param :name, String, :desc => N_("filter content view filters by name") def index respond(:collection => scoped_search(index_relation.uniq, :name, :asc)) end @@ -24,13 +22,13 @@ def index_relation query end - api :POST, "/content_views/:content_view_id/filters", N_("Create a filter for a content view") - api :POST, "/content_view_filters", N_("Create a filter for a content view") + api :post, "/content_views/:content_view_id/filters", N_("create a filter for a content view") + api :post, "/content_view_filters", N_("create a filter for a content view") param :content_view_id, :identifier, :desc => N_("content view identifier"), :required => true param :name, String, :desc => N_("name of the filter"), :required => true param :type, String, :desc => N_("type of filter (e.g. rpm, package_group, erratum)"), :required => true - param :original_packages, :bool, :desc => N_("Add all packages without Errata to the included/excluded list. " \ - "(Package Filter only)") + param :original_packages, :bool, :desc => N_("add all packages without errata to the included/excluded list. " \ + "(package filter only)") param :inclusion, :bool, :desc => N_("specifies if content should be included or excluded, default: inclusion=false") param :repository_ids, Array, :desc => N_("list of repository ids") param :description, String, :desc => N_("description of the filter") @@ -39,21 +37,21 @@ def create respond :resource => filter end - api :GET, "/content_views/:content_view_id/filters/:id", N_("Show filter info") - api :GET, "/content_view_filters/:id", N_("Show filter info") + api :get, "/content_views/:content_view_id/filters/:id", N_("show filter info") + api :get, "/content_view_filters/:id", N_("show filter info") param :content_view_id, :identifier, :desc => N_("content view identifier") param :id, :identifier, :desc => N_("filter identifier"), :required => true def show respond :resource => @filter end - api :PUT, "/content_views/:content_view_id/filters/:id", N_("Update a filter") - api :PUT, "/content_view_filters/:id", N_("Update a filter") + api :put, "/content_views/:content_view_id/filters/:id", N_("update a filter") + api :put, "/content_view_filters/:id", N_("update a filter") param :content_view_id, :identifier, :desc => N_("content view identifier") param :id, :identifier, :desc => N_("filter identifier"), :required => true param :name, String, :desc => N_("new name for the filter") - param :original_packages, :bool, :desc => N_("Add all packages without Errata to the included/excluded list. " \ - "(Package Filter only)") + param :original_packages, :bool, :desc => N_("add all packages without errata to the included/excluded list. " \ + "(package filter only)") param :inclusion, :bool, :desc => N_("specifies if content should be included or excluded, default: inclusion=false") param :repository_ids, Array, :desc => N_("list of repository ids") def update @@ -61,8 +59,8 @@ def update respond :resource => @filter end - api :DELETE, "/content_views/:content_view_id/filters/:id", N_("Delete a filter") - api :DELETE, "/content_view_filters/:id", N_("Delete a filter") + api :delete, "/content_views/:content_view_id/filters/:id", N_("delete a filter") + api :delete, "/content_view_filters/:id", N_("delete a filter") param :content_view_id, :identifier, :desc => N_("content view identifier") param :id, :identifier, :desc => N_("filter identifier"), :required => true def destroy @@ -70,25 +68,6 @@ def destroy respond_for_show :resource => @filter end - api :GET, "/content_views/:content_view_id/filters/:id/available_package_groups", - N_("Get package groups that are available to be added to the filter"), :deprecated => true - api :GET, "/content_view_filters/:id/available_package_groups", - N_("Get package groups that are available to be added to the filter"), :deprecated => true - param :content_view_id, :identifier, :desc => N_("content view identifier") - param :id, :identifier, :desc => N_("filter identifier"), :required => true - def available_package_groups - current_ids = @filter.package_group_rules.map(&:uuid) - repo_ids = @filter.applicable_repos.readable.pluck("#{Repository.table_name}.pulp_id") - search_filters = [{ :terms => { :repo_id => repo_ids } }] - search_filters << { :not => { :terms => { :id => current_ids } } } unless current_ids.blank? - - options = sort_params - options[:filters] = search_filters - - respond_for_index :template => '../package_groups/index', - :collection => item_search(PackageGroup, params, options) - end - private def deprecated diff --git a/app/controllers/katello/api/v2/package_groups_controller.rb b/app/controllers/katello/api/v2/package_groups_controller.rb index 5bac80d5076..1d6dac3d750 100644 --- a/app/controllers/katello/api/v2/package_groups_controller.rb +++ b/app/controllers/katello/api/v2/package_groups_controller.rb @@ -2,11 +2,32 @@ module Katello class Api::V2::PackageGroupsController < Api::V2::ApiController apipie_concern_subst(:a_resource => N_("a package group"), :resource => "package_groups") include Katello::Concerns::Api::V2::RepositoryContentController + include Katello::Concerns::Api::V2::RepositoryDbContentController + + api :GET, "package_groups/:id", N_("show package groups by id") + def index + super + end + + def available_for_content_view_filter(filter, collection) + collection_ids = [] + current_ids = filter.package_group_rules.map(&:uuid) + filter.applicable_repos.each do |repo| + collection_ids.concat(repo.package_groups.map(&:uuid)) + end + collection = PackageGroup.where(:uuid => collection_ids) + collection = collection.where("uuid not in (?)", current_ids) unless current_ids.empty? + collection + end + + def default_sort + %w(name asc) + end private def repo_association - :repo_id + :repository_id end end end diff --git a/app/controllers/katello/concerns/api/v2/repository_db_content_controller.rb b/app/controllers/katello/concerns/api/v2/repository_db_content_controller.rb index 0aee73e00b5..7fd35e35a9b 100644 --- a/app/controllers/katello/concerns/api/v2/repository_db_content_controller.rb +++ b/app/controllers/katello/concerns/api/v2/repository_db_content_controller.rb @@ -5,7 +5,11 @@ module Api::V2::RepositoryDbContentController included do include Katello::Concerns::FilteredAutoCompleteSearch - before_filter :find_optional_organization, :only => [:index] + before_filter :find_optional_organization, :only => [:index, :auto_complete_search] + before_filter :find_environment, :only => [:index, :auto_complete_search] + before_filter :find_content_view_version, :only => [:index, :auto_complete_search] + before_filter :find_filter, :only => [:index, :auto_complete_search] + before_filter :find_content_resource, :only => [:show] end extend ::Apipie::DSL::Concern @@ -35,7 +39,7 @@ def compare respond_for_index(:collection => collection) end - param :available_for, :string, :desc => N_("Show errata that can be added to content view filter") + param :available_for, :string, :desc => N_("Show available to be added to content view filter") param :filterId, :integer, :desc => N_("Content View Filter id") def index_relation collection = resource_class.scoped @@ -79,13 +83,18 @@ def filter_by_environment(environment, collection) end def find_content_resource - @resource = resource_class.with_uuid(params[:id]).first - if resource_class == Katello::Erratum - # also try to look up erratum by errata_id - @resource ||= Erratum.find_by_errata_id(params[:id]) + begin + id = Integer(params[:id]) + @resource = resource_class.where(:id => id).first + rescue ArgumentError + @resource = resource_class.where(:uuid => params[:id]).first end - if @resource.nil? + if resource_class == Katello::Erratum && @resource.blank? + @resource = Erratum.find_by_errata_id(params[:id]) + end + + if @resource.blank? fail HttpErrors::NotFound, _("Failed to find %{content} with id '%{id}'.") % {content: resource_name, id: params[:id]} end diff --git a/app/lib/actions/katello/repository/clone_yum_content.rb b/app/lib/actions/katello/repository/clone_yum_content.rb index 0a49dc93643..da77b7bd775 100644 --- a/app/lib/actions/katello/repository/clone_yum_content.rb +++ b/app/lib/actions/katello/repository/clone_yum_content.rb @@ -41,6 +41,7 @@ def plan(source_repo, target_repo, filters, purge_empty_units, options = {}) if purge_empty_units plan_action(Katello::Repository::IndexErrata, target_repo) plan_action(Pulp::Repository::PurgeEmptyErrata, :pulp_id => target_repo.pulp_id) + plan_action(Katello::Repository::IndexPackageGroups, target_repo) plan_action(Pulp::Repository::PurgeEmptyPackageGroups, :pulp_id => target_repo.pulp_id) end diff --git a/app/lib/actions/katello/repository/index_package_groups.rb b/app/lib/actions/katello/repository/index_package_groups.rb new file mode 100644 index 00000000000..88ebd02b65c --- /dev/null +++ b/app/lib/actions/katello/repository/index_package_groups.rb @@ -0,0 +1,18 @@ +module Actions + module Katello + module Repository + class IndexPackageGroups < Actions::EntryAction + middleware.use Actions::Middleware::KeepCurrentUser + + def plan(repository) + plan_self(:user_id => ::User.current.id, :id => repository.id) + end + + def run + repo = ::Katello::Repository.find(input[:id]) + repo.index_db_package_groups + end + end + end + end +end diff --git a/app/lib/actions/pulp/repository/purge_empty_package_groups.rb b/app/lib/actions/pulp/repository/purge_empty_package_groups.rb index 039db08b511..03ea13889ef 100644 --- a/app/lib/actions/pulp/repository/purge_empty_package_groups.rb +++ b/app/lib/actions/pulp/repository/purge_empty_package_groups.rb @@ -14,12 +14,11 @@ def invoke_external_task # Remove all package groups with no packages package_groups_to_delete = repo.package_groups.collect do |group| - group.package_group_id if rpm_names.intersection(group.package_names).empty? + group.uuid if rpm_names.intersection(group.package_names).empty? end - package_groups_to_delete.compact! + criteria = {:association=>{"unit_id"=>{"$in"=>package_groups_to_delete.compact!}}} - repo.unassociate_by_filter(::Katello::ContentViewPackageGroupFilter::CONTENT_TYPE, - "id" => { "$in" => package_groups_to_delete }) + ::Katello.pulp_server.extensions.repository.unassociate_units(repo.pulp_id, :filters => criteria) end end end diff --git a/app/lib/katello/util/package_clause_generator.rb b/app/lib/katello/util/package_clause_generator.rb index 045fcd9c235..64abca221be 100644 --- a/app/lib/katello/util/package_clause_generator.rb +++ b/app/lib/katello/util/package_clause_generator.rb @@ -60,7 +60,7 @@ def package_clauses_for_errata(errata_clauses = []) # output -> {"names" => {"$in" => {"foo", "..."}}} <- packages belonging to those packages def package_clauses_for_group(group_clauses = []) group_clauses = {"$or" => group_clauses} - pkg_names = Katello::PackageGroup.list_by_filter_clauses(group_clauses).collect(&:package_names).flatten + pkg_names = Katello::PackageGroup.list_by_filter_clauses(group_clauses) {'name' => {"$in" => pkg_names}} unless pkg_names.empty? end end diff --git a/app/lib/katello/util/search.rb b/app/lib/katello/util/search.rb index 7b1c85d1311..be2b4a5d0b0 100644 --- a/app/lib/katello/util/search.rb +++ b/app/lib/katello/util/search.rb @@ -55,8 +55,7 @@ def self.backend_search_classes def self.pulp_backend_search_classes [Katello::Package, Katello::PuppetModule, - Katello::Distribution, - Katello::PackageGroup] + Katello::Distribution] end def self.get_subclasses(obj_class) diff --git a/app/models/katello/content_view_package_group_filter.rb b/app/models/katello/content_view_package_group_filter.rb index 52c6fff03fd..5b00155a2c3 100644 --- a/app/models/katello/content_view_package_group_filter.rb +++ b/app/models/katello/content_view_package_group_filter.rb @@ -6,11 +6,9 @@ class ContentViewPackageGroupFilter < ContentViewFilter :class_name => "Katello::ContentViewPackageGroupFilterRule" validates_lengths_from_database - def generate_clauses(repo) - package_group_ids = package_group_rules.reject { |rule| rule.uuid.blank? }.flat_map do |rule| - PackageGroup.legacy_search(rule.uuid, 0, 0, [repo.pulp_id], [:name_sort, "asc"], 'id').map(&:package_group_id).compact - end - { "id" => { "$in" => package_group_ids } } unless package_group_ids.empty? + def generate_clauses(_repo) + package_group_ids = package_group_rules.reject { |rule| rule.uuid.blank? }.flat_map.map(&:uuid) + { "_id" => { "$in" => package_group_ids } } unless package_group_ids.empty? end end end diff --git a/app/models/katello/content_view_version.rb b/app/models/katello/content_view_version.rb index d0f959699d7..5ca2025e1f8 100644 --- a/app/models/katello/content_view_version.rb +++ b/app/models/katello/content_view_version.rb @@ -231,6 +231,10 @@ def docker_images DockerImage.in_repositories(archived_repos).uniq end + def package_groups + PackageGroup.in_repositories(archived_repos).uniq + end + def check_ready_to_promote! fail _("Default content view versions cannot be promoted") if default? end diff --git a/app/models/katello/erratum.rb b/app/models/katello/erratum.rb index 755ed433885..85aba95d6e4 100644 --- a/app/models/katello/erratum.rb +++ b/app/models/katello/erratum.rb @@ -95,6 +95,10 @@ def self.list_filenames_by_clauses(clauses) Katello::ErratumPackage.joins(:erratum).where("#{Erratum.table_name}.uuid" => errata.map { |e| e['_id'] }).pluck(:filename) end + def self.unit_handler + Katello.pulp_server.extensions.errata + end + private def run_until(needed_function, action_function) diff --git a/app/models/katello/glue/elastic_search/package_group.rb b/app/models/katello/glue/elastic_search/package_group.rb deleted file mode 100644 index 9b963714fa0..00000000000 --- a/app/models/katello/glue/elastic_search/package_group.rb +++ /dev/null @@ -1,124 +0,0 @@ -module Katello - module Glue::ElasticSearch::PackageGroup - # TODO: break up into modules - # rubocop:disable MethodLength - def self.included(base) - base.class_eval do - include Glue::ElasticSearch::BackendIndexedModel - def index_options - { - "_type" => Katello::PackageGroup.search_type, - "name_autocomplete" => name - } - end - - def self.search_type - :package_group - end - - def self.index_settings - { - "index" => { - "analysis" => { - "filter" => Util::Search.custom_filters, - "analyzer" => Util::Search.custom_analyzers - } - } - } - end - - def self.index_mapping - { - :package_group => { - :properties => { - :id => {:type => 'string', :index => :not_analyzed}, - :package_group_id => {:type => 'string', :index => :not_analyzed}, - :name => { :type => 'string', :analyzer => :kt_name_analyzer}, - :name_sort => { :type => 'string', :index => :not_analyzed }, - :repo_id => { :type => 'string', :index => :not_analyzed} - } - } - } - end - - def self.index - "#{Katello.config.elastic_index}_package_group" - end - - def self.mapping - Tire.index(self.index).mapping - end - - def self.search(_options = {}, &block) - Tire.search(self.index, &block).results - end - - def self.id_search(ids) - return Util::Support.array_with_total unless Tire.index(self.index).exists? - search = Tire.search self.index do - fields [:id, :name, :repo_id] - query do - all - end - size ids.size - filter :terms, :id => ids - end - search.results - end - - def self.new_from_search(params) - group_name = params.delete('package_group_id') - id = params.delete('id') - params['id'] = group_name - params['_id'] = id - self.new(params) - end - - def self.legacy_search(query, start, page_size, repoid = nil, sort = [:name_sort, "asc"], - default_field = 'name') - return Util::Support.array_with_total unless Tire.index(self.index).exists? - - all_rows = query.blank? #if blank, get all rows - - search = Tire.search self.index do - query do - if all_rows - all - else - string query, :default_field => default_field - end - end - - if page_size > 0 - size page_size - from start - end - - if repoid - filter :term, :repo_id => repoid - end - sort { by sort[0], sort[1] } if all_rows - end - - return search.results - rescue Tire::Search::SearchRequestFailed - Util::Support.array_with_total - end - - def self.index_package_groups(pkg_grp_ids) - pkg_grps = pkg_grp_ids.collect do |pkg_grp_id| - pkg_grp = self.find(pkg_grp_id) - pkg_grp.as_json.merge(pkg_grp.index_options) - end - - unless pkg_grps.empty? - create_index - Tire.index PackageGroup.index do - import pkg_grps - end - end - end - end - end - end -end diff --git a/app/models/katello/glue/elastic_search/repository.rb b/app/models/katello/glue/elastic_search/repository.rb index 44b1a39f4fc..3b8b68d5207 100644 --- a/app/models/katello/glue/elastic_search/repository.rb +++ b/app/models/katello/glue/elastic_search/repository.rb @@ -27,20 +27,6 @@ def index_packages(force = false) end end - def index_package_groups - package_groups_map = self.package_groups.collect { |pg| pg.as_json.merge(pg.index_options) } - - unless package_groups_map.empty? - Tire.index Katello::PackageGroup.index do - create :settings => Katello::PackageGroup.index_settings, :mappings => Katello::PackageGroup.index_mapping - end unless Tire.index(Katello::PackageGroup.index).exists? - - Tire.index Katello::PackageGroup.index do - import package_groups_map - end unless package_groups_map.empty? - end - end - def index_puppet_modules Tire.index Katello::PuppetModule.index do create :settings => Katello::PuppetModule.index_settings, :mappings => Katello::PuppetModule.index_mapping @@ -77,9 +63,9 @@ def index_content self.index_packages self.index_db_errata self.index_db_docker_images - self.index_package_groups self.index_puppet_modules self.index_distributions + self.index_db_package_groups true end end diff --git a/app/models/katello/glue/pulp/package_group.rb b/app/models/katello/glue/pulp/package_group.rb index b58bf4bb73b..0bea9f2ca73 100644 --- a/app/models/katello/glue/pulp/package_group.rb +++ b/app/models/katello/glue/pulp/package_group.rb @@ -1,49 +1,15 @@ module Katello module Glue::Pulp::PackageGroup - def self.included(base) - base.send :include, InstanceMethods + extend ActiveSupport::Concern + include LazyAccessor - base.class_eval do - attr_accessor :name, :package_group_id, :default_package_names, :id, :repo_id, :conditional_package_names, - :mandatory_package_names, :description, :optional_package_names + included do + lazy_accessor :pulp_facts, :initializer => :backend_data - def self.find(id) - attrs = Katello.pulp_server.extensions.package_group.find_by_unit_id(id) - Katello::PackageGroup.new(attrs) unless attrs.nil? - end - - def self.list_by_filter_clauses(clauses) - package_groups = Katello.pulp_server.extensions.package_group.search(Katello::PackageGroup::CONTENT_TYPE, - :filters => clauses) - if package_groups - groups = package_groups.collect do |attrs| - Katello::PackageGroup.new(attrs) if attrs - end - groups.compact - else - [] - end - end - end - end - - module InstanceMethods - def initialize(params = {}, _options = {}) - params['package_group_id'] = params['id'] - params['id'] = params.delete('_id') - params.each_pair { |k, v| instance_variable_set("@#{k}", v) unless v.nil? } - - [:default_package_names, :conditional_package_names, - :optional_package_names, :mandatory_package_names].each do |attr| - values = send(attr) - values = values.collect { |v| v.split(", ") }.flatten - send("#{attr}=", values) - end - end - - def package_names - default_package_names + conditional_package_names + optional_package_names + mandatory_package_names - end + lazy_accessor :optional_package_names, :mandatory_package_names, + :conditional_package_names, :default_package_names, :_id, + :repository_memberships, + :initializer => :pulp_facts end end end diff --git a/app/models/katello/glue/pulp/pulp_content_unit.rb b/app/models/katello/glue/pulp/pulp_content_unit.rb index 20fa6103bd9..f0c81a27010 100644 --- a/app/models/katello/glue/pulp/pulp_content_unit.rb +++ b/app/models/katello/glue/pulp/pulp_content_unit.rb @@ -17,7 +17,7 @@ def backend_data module ClassMethods def unit_handler - Katello.pulp_server.extensions.send(self.name.demodulize.pluralize.underscore) + Katello.pulp_server.extensions.send(self.name.demodulize.underscore) end def repository_association diff --git a/app/models/katello/glue/pulp/repo.rb b/app/models/katello/glue/pulp/repo.rb index 890191eabef..933c7d07b33 100644 --- a/app/models/katello/glue/pulp/repo.rb +++ b/app/models/katello/glue/pulp/repo.rb @@ -335,6 +335,23 @@ def errata_json tmp_errata end + def index_db_package_groups + package_group_json.each do |pg_json| + begin + package_group = Katello::PackageGroup.find_or_create_by_uuid(:uuid => pg_json['_id']) + rescue ActiveRecord::RecordNotUnique + retry + end + package_group.update_from_json(pg_json) + end + pg_ids = package_group_json.map { |pg| pg['_id'] } + Katello::PackageGroup.sync_repository_associations(self, pg_ids) + end + + def package_group_json + Katello.pulp_server.extensions.repository.package_groups(self.pulp_id) + end + def index_db_docker_images docker_tags.destroy_all @@ -361,7 +378,6 @@ def docker_images_json docker_images.each do |attrs| attrs[:tags] = tags.select { |tag| tag[:image_id] == attrs[:image_id] }.map { |tag| tag[:tag] } end - docker_images end @@ -398,32 +414,6 @@ def bootable_distribution self.distributions.find { |distribution| distribution.bootable? } end - def package_groups - if @repo_package_groups.nil? - groups = Katello.pulp_server.extensions.repository.package_groups(self.pulp_id) - self.package_groups = groups - end - @repo_package_groups - end - - def package_groups=(attrs) - @repo_package_groups = attrs.collect do |group| - Katello::PackageGroup.new(group) - end - @repo_package_groups - end - - def package_groups_search(search_args = {}) - groups = package_groups - unless search_args.empty? - groups.delete_if do |group| - group_attrs = group.as_json - search_args.any? { |attr, value| group_attrs[attr] != value } - end - end - groups - end - def package_group_categories(search_args = {}) categories = Katello.pulp_server.extensions.repository.package_categories(self.pulp_id) unless search_args.empty? diff --git a/app/models/katello/package_group.rb b/app/models/katello/package_group.rb index 29fc0d24f6e..d30a194e501 100644 --- a/app/models/katello/package_group.rb +++ b/app/models/katello/package_group.rb @@ -1,7 +1,45 @@ module Katello - class PackageGroup + class PackageGroup < Katello::Model + include Glue::Pulp::PulpContentUnit include Glue::Pulp::PackageGroup if Katello.config.use_pulp - include Glue::ElasticSearch::PackageGroup if Katello.config.use_elasticsearch + CONTENT_TYPE = "package_group" + + has_many :repositories, :through => :repository_package_groups, :class_name => "Katello::Repository" + has_many :repository_package_groups, :class_name => "Katello::RepositoryPackageGroup", :dependent => :destroy, :inverse_of => :package_group + + scoped_search :on => :name, :complete_value => true + scoped_search :on => :uuid, :rename => :id, :complete_value => true + scoped_search :in => :repositories, :on => :name, :rename => :repository, :complete_value => true + + def self.repository_association_class + RepositoryPackageGroup + end + + def repository + self.repositories.first + end + + def update_from_json(json) + keys = %w(name description) + custom_json = json.clone.delete_if { |key, _value| !keys.include?(key) } + self.update_attributes!(custom_json) + end + + def self.list_by_filter_clauses(clauses) + package_names = [] + pulp_package_groups = Katello.pulp_server.extensions.package_group.search(Katello::PackageGroup::CONTENT_TYPE, :filters => clauses) + groupings = [:default_package_names, :conditional_package_names, :optional_package_names, :mandatory_package_names] + if pulp_package_groups.any? + pulp_package_groups.flat_map { |group| groupings.each { |grouping| package_names << group[grouping] } } + package_names.flatten! + else + [] + end + end + + def package_names + self.default_package_names + self.conditional_package_names + self.optional_package_names + self.mandatory_package_names + end end end diff --git a/app/models/katello/repository.rb b/app/models/katello/repository.rb index c0c82a69a5e..ac044097c79 100644 --- a/app/models/katello/repository.rb +++ b/app/models/katello/repository.rb @@ -47,6 +47,9 @@ class Repository < Katello::Model has_many :system_repositories, :class_name => "Katello::SystemRepository", :dependent => :destroy has_many :systems, :through => :system_repositories + has_many :repository_package_groups, :class_name => "Katello::RepositoryPackageGroup", :dependent => :destroy + has_many :package_groups, :through => :repository_package_groups + # rubocop:disable HasAndBelongsToMany # TODO: change this into has_many :through association has_and_belongs_to_many :filters, :class_name => "Katello::ContentViewFilter", diff --git a/app/models/katello/repository_package_group.rb b/app/models/katello/repository_package_group.rb new file mode 100644 index 00000000000..13723f75914 --- /dev/null +++ b/app/models/katello/repository_package_group.rb @@ -0,0 +1,8 @@ +module Katello + class RepositoryPackageGroup < Katello::Model + self.include_root_in_json = false + # Do not use active record callbacks in this join model. Direct INSERTs and DELETEs are done + belongs_to :repository, :inverse_of => :repository_package_groups, :class_name => 'Katello::Repository' + belongs_to :package_group, :inverse_of => :repository_package_groups, :class_name => 'Katello::PackageGroup' + end +end diff --git a/app/views/katello/api/v2/package_groups/base.json.rabl b/app/views/katello/api/v2/package_groups/base.json.rabl new file mode 100644 index 00000000000..6b41a223239 --- /dev/null +++ b/app/views/katello/api/v2/package_groups/base.json.rabl @@ -0,0 +1,19 @@ +object @resource + +attributes :id +attributes :name +attributes :uuid +attributes :description + +node :repository do |package_group| + if repo = package_group.repository + { + :id => repo.id, + :name => repo.name, + :product => { + :id => repo.product.id, + :name => repo.product.name + } + } + end +end diff --git a/app/views/katello/api/v2/package_groups/index.json.rabl b/app/views/katello/api/v2/package_groups/index.json.rabl index 69b9098b013..6df9a370ded 100644 --- a/app/views/katello/api/v2/package_groups/index.json.rabl +++ b/app/views/katello/api/v2/package_groups/index.json.rabl @@ -3,5 +3,5 @@ object false extends "katello/api/v2/common/metadata" child @collection[:results] => :results do - extends "katello/api/v2/package_groups/show" + extends "katello/api/v2/package_groups/base" end diff --git a/app/views/katello/api/v2/package_groups/show.json.rabl b/app/views/katello/api/v2/package_groups/show.json.rabl index 78289976920..fff6da445aa 100644 --- a/app/views/katello/api/v2/package_groups/show.json.rabl +++ b/app/views/katello/api/v2/package_groups/show.json.rabl @@ -1,24 +1,8 @@ object @resource -attributes :id -attributes :package_group_id -attributes :name -attributes :description -attributes :repo_id +extends "katello/api/v2/package_groups/base" + attributes :default_package_names attributes :mandatory_package_names attributes :conditional_package_names attributes :optional_package_names - -node :repository do |package_group| - if repo = Katello::Repository.where(:pulp_id => package_group.repo_id).first - { - :id => repo.id, - :name => repo.name, - :product => { - :id => repo.product.id, - :name => repo.product.name - } - } - end -end diff --git a/config/routes/api/v2.rb b/config/routes/api/v2.rb index 31f96093d20..42bb7fb2016 100644 --- a/config/routes/api/v2.rb +++ b/config/routes/api/v2.rb @@ -72,9 +72,6 @@ class ActionDispatch::Routing::Mapper collection do get :auto_complete_search end - member do - get :available_package_groups - end api_resources :errata, :only => [:index] api_resources :package_groups, :only => [:index] end @@ -90,9 +87,6 @@ class ActionDispatch::Routing::Mapper collection do get :auto_complete_search end - member do - get :available_package_groups - end end api_resources :content_view_versions, :except => [:create] do @@ -175,7 +169,11 @@ class ActionDispatch::Routing::Mapper api_resources :packages, :only => [:index, :show] - api_resources :package_groups, :only => [:index, :show] + api_resources :package_groups, :only => [:index, :show] do + collection do + get :auto_complete_search + end + end api_resources :ping, :only => [:index] match "/status" => "ping#server_status", :via => :get diff --git a/db/migrate/20150623135424_create_package_groups.rb b/db/migrate/20150623135424_create_package_groups.rb new file mode 100644 index 00000000000..d27131703ae --- /dev/null +++ b/db/migrate/20150623135424_create_package_groups.rb @@ -0,0 +1,29 @@ +class CreatePackageGroups < ActiveRecord::Migration + def change + create_table "katello_package_groups" do |t| + t.string "name" + t.string "uuid", :null => false + t.string "description" + t.timestamps + end + add_index :katello_package_groups, :uuid, :unique => true + + create_table "katello_repository_package_groups" do |t| + t.references :package_group, :null => false + t.references :repository, :null => true + t.timestamps + end + add_index "katello_repository_package_groups", [:package_group_id, :repository_id], :unique => true, + :name => "index_katello_repository_package_groups_on_pgid_repoid" + + add_foreign_key "katello_repository_package_groups", "katello_package_groups", + :name => "katello_repository_package_groups_package_groups_id_fk", :column => "package_group_id" + add_foreign_key "katello_repository_package_groups", "katello_repositories", + :name => "katello_repository_package_groups_repo_id_fk", :column => "repository_id" + end + + def down + drop_table "katello_package_groups" + drop_table "katello_repository_package_groups" + end +end diff --git a/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js b/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js index 24a00b5df53..d875ad582cd 100644 --- a/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js +++ b/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js @@ -13,18 +13,24 @@ * each selected package group as a filter rule. */ angular.module('Bastion.content-views').controller('AvailablePackageGroupFilterController', - ['$scope', 'translate', 'Filter', 'Rule', 'Nutupane', - function ($scope, translate, Filter, Rule, Nutupane) { + ['$scope', 'translate', 'PackageGroup', 'Rule', 'Nutupane', + function ($scope, translate, PackageGroup, Rule, Nutupane) { var nutupane; nutupane = new Nutupane( - Filter, - {filterId: $scope.$stateParams.filterId}, - 'availablePackageGroups' + PackageGroup, + { + filterId: $scope.$stateParams.filterId, + 'available_for': 'content_view_filter', + 'sort_order': 'ASC', + 'sort_by': 'name' + + }, + 'queryUnpaged' ); function success(rule) { - nutupane.removeRow(rule.uuid, 'id'); + nutupane.removeRow(rule.uuid, 'uuid'); $scope.filter.rules.push(rule); $scope.successMessages = [translate('Package Group successfully added.')]; } @@ -40,13 +46,14 @@ angular.module('Bastion.content-views').controller('AvailablePackageGroupFilterC } $scope.detailsTable = nutupane.table; + nutupane.masterOnly = true; nutupane.table.closeItem = function () {}; $scope.addPackageGroups = function (filter) { var packageGroups = nutupane.getAllSelectedResults().included.resources; angular.forEach(packageGroups, function (group) { - var rule = new Rule({uuid: group.id, name: group.name}); + var rule = new Rule({uuid: group.uuid, name: group.name}); saveRule(rule, filter); }); }; diff --git a/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js b/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js index 3e544eb7ac4..5c9e600ea8e 100644 --- a/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js +++ b/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js @@ -25,7 +25,7 @@ angular.module('Bastion.content-views').factory('Filter', }, availablePackageGroups: { method: 'GET', - params: {action: 'available_package_groups'} + params: {action: 'package_groups', 'available_for': 'content_view_filter'} }, packageGroups: { method: 'GET', diff --git a/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js b/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js index 823e0cec2e2..f5800c97c61 100644 --- a/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js +++ b/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js @@ -13,12 +13,12 @@ * and provides a method to remove them. */ angular.module('Bastion.content-views').controller('PackageGroupFilterListController', - ['$scope', 'translate', 'Filter', 'Rule', 'Nutupane', - function ($scope, translate, Filter, Rule, Nutupane) { + ['$scope', 'translate', 'PackageGroup', 'Rule', 'Nutupane', + function ($scope, translate, PackageGroup, Rule, Nutupane) { var nutupane; function success(rule) { - nutupane.removeRow(rule.uuid, 'id'); + nutupane.removeRow(rule.uuid, 'uuid'); $scope.filter.rules = _.reject($scope.filter.rules, function (filterRule) { return rule.id === filterRule.id; }); @@ -47,17 +47,19 @@ angular.module('Bastion.content-views').controller('PackageGroupFilterListContro return rules; } - nutupane = new Nutupane( - Filter, - {filterId: $scope.$stateParams.filterId}, - 'packageGroups' + nutupane = new Nutupane(PackageGroup, { + filterId: $scope.$stateParams.filterId, + 'sort_order': 'ASC', + 'sort_by': 'name' + }, + 'queryUnpaged' ); $scope.detailsTable = nutupane.table; nutupane.table.closeItem = function () {}; $scope.removePackageGroups = function () { - var packageGroupIds = nutupane.getAllSelectedResults().included.ids, + var packageGroupIds = nutupane.getAllSelectedResults('uuid').included.ids, rules; rules = findRules(packageGroupIds); diff --git a/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js b/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js index b09e3b344b3..715b15e1cdf 100644 --- a/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +++ b/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js @@ -39,7 +39,7 @@ type: PackageGroup, params: { 'sort_by': 'name', - 'sort_order': 'DESC', + 'sort_order': 'ASC', 'content_view_version_id': $scope.$stateParams.versionId } }, diff --git a/engines/bastion_katello/app/assets/javascripts/bastion_katello/package-groups/package-group.factory.js b/engines/bastion_katello/app/assets/javascripts/bastion_katello/package-groups/package-group.factory.js index 4ea41ca8ef2..52274e4d9c4 100644 --- a/engines/bastion_katello/app/assets/javascripts/bastion_katello/package-groups/package-group.factory.js +++ b/engines/bastion_katello/app/assets/javascripts/bastion_katello/package-groups/package-group.factory.js @@ -10,7 +10,10 @@ */ function PackageGroup(BastionResource) { return BastionResource('/katello/api/v2/package_groups/:id', - {'id': '@id'} + {'id': '@id'}, + { + autocomplete: {method: 'GET', isArray: true, params: {id: 'auto_complete_search'}} + } ); } diff --git a/lib/katello/engine.rb b/lib/katello/engine.rb index 6ebe24a453d..546a42e4b94 100644 --- a/lib/katello/engine.rb +++ b/lib/katello/engine.rb @@ -169,6 +169,7 @@ class Engine < ::Rails::Engine load "#{Katello::Engine.root}/lib/katello/tasks/upgrades/2.1/import_errata.rake" load "#{Katello::Engine.root}/lib/katello/tasks/upgrades/2.2/update_gpg_key_urls.rake" load "#{Katello::Engine.root}/lib/katello/tasks/upgrades/2.2/update_metadata_expire.rake" + load "#{Katello::Engine.root}/lib/katello/tasks/upgrades/2.4/import_package_groups.rake" end end end diff --git a/lib/katello/permissions/content_view_permissions.rb b/lib/katello/permissions/content_view_permissions.rb index 8dafa626ac4..e347f2ea199 100644 --- a/lib/katello/permissions/content_view_permissions.rb +++ b/lib/katello/permissions/content_view_permissions.rb @@ -5,7 +5,7 @@ { 'katello/api/v2/content_views' => [:index, :show, :history, :available_puppet_modules, :available_puppet_module_names], - 'katello/api/v2/content_view_filters' => [:index, :show, :available_package_groups], + 'katello/api/v2/content_view_filters' => [:index, :show], 'katello/api/v2/content_view_filter_rules' => [:index, :show], 'katello/api/v2/content_view_puppet_modules' => [:index, :show], 'katello/api/v2/content_view_versions' => [:index, :show], diff --git a/lib/katello/tasks/reindex.rake b/lib/katello/tasks/reindex.rake index 71254099832..ee6093f82d6 100644 --- a/lib/katello/tasks/reindex.rake +++ b/lib/katello/tasks/reindex.rake @@ -129,9 +129,8 @@ namespace :katello do end end - reindex_helper.index_objects(Katello::Erratum) do - Katello::Erratum.import_all - end + Katello::Erratum.import_all + Katello::PackageGroup.import_all reindex_helper.log "Re-indexing Pools" Organization.all.each do |org| diff --git a/lib/katello/tasks/upgrades/2.4/import_package_groups.rake b/lib/katello/tasks/upgrades/2.4/import_package_groups.rake new file mode 100644 index 00000000000..dc7971c112c --- /dev/null +++ b/lib/katello/tasks/upgrades/2.4/import_package_groups.rake @@ -0,0 +1,12 @@ +namespace :katello do + namespace :upgrades do + namespace '2.4' do + task :import_package_groups => ["environment"] do + + User.current = User.anonymous_api_admin + puts _("Importing Package Groups") + Katello::PackageGroup.import_all + end + end + end +end diff --git a/test/controllers/api/v2/content_view_filters_controller_test.rb b/test/controllers/api/v2/content_view_filters_controller_test.rb index df2b524d7da..723bab6913e 100644 --- a/test/controllers/api/v2/content_view_filters_controller_test.rb +++ b/test/controllers/api/v2/content_view_filters_controller_test.rb @@ -154,23 +154,5 @@ def test_destroy_protected delete :destroy, :content_view_id => @filter.content_view_id, :id => @filter.id end end - - def test_available_package_groups - @filter = katello_content_view_filters(:populated_package_group_filter) - get :available_package_groups, :content_view_id => @filter.content_view_id, :id => @filter.id - - assert_response :success - assert_template 'katello/api/v2/content_view_filters/../package_groups/index' - end - - def test_available_package_groups_protected - @filter = katello_content_view_filters(:populated_package_group_filter) - allowed_perms = [@view_permission] - denied_perms = [@create_permission, @update_permission, @destroy_permission] - - assert_protected_action(:available_package_groups, allowed_perms, denied_perms) do - get :available_package_groups, :content_view_id => @filter.content_view_id, :id => @filter.id - end - end end end diff --git a/test/controllers/api/v2/docker_images_controller_test.rb b/test/controllers/api/v2/docker_images_controller_test.rb index 4a533846737..4f72892dc57 100644 --- a/test/controllers/api/v2/docker_images_controller_test.rb +++ b/test/controllers/api/v2/docker_images_controller_test.rb @@ -4,7 +4,7 @@ module Katello class Api::V2::DockerImagesControllerTest < ActionController::TestCase def models @repo = Repository.find(katello_repositories(:redis)) - @image = @repo.docker_images.create!({:image_id => "abc123", :uuid => "123"}, + @image = @repo.docker_images.create!({:image_id => "abc123", :uuid => "123xyz"}, :without_protection => true ) end diff --git a/test/controllers/api/v2/errata_controller_test.rb b/test/controllers/api/v2/errata_controller_test.rb index e66b6aebb7a..23742868037 100644 --- a/test/controllers/api/v2/errata_controller_test.rb +++ b/test/controllers/api/v2/errata_controller_test.rb @@ -113,11 +113,7 @@ def test_show end def test_show_group_not_found - errata = @repo.errata.first - Erratum.expects(:with_uuid).once.with(errata.errata_id).returns([]) - Erratum.expects(:find_by_errata_id).returns(nil) - - get :show, :repository_id => @repo.id, :id => errata.errata_id + get :show, :repository_id => @repo.id, :id => "made_up_errata" assert_response 404 end diff --git a/test/controllers/api/v2/package_groups_controller_test.rb b/test/controllers/api/v2/package_groups_controller_test.rb index 91dbe8a545f..1ba934799ba 100644 --- a/test/controllers/api/v2/package_groups_controller_test.rb +++ b/test/controllers/api/v2/package_groups_controller_test.rb @@ -4,6 +4,7 @@ module Katello class Api::V2::PackageGroupsControllerTest < ActionController::TestCase def models @repo = Repository.find(katello_repositories(:fedora_17_x86_64_dev)) + @package_group_filter = katello_content_view_filters(:populated_package_group_filter) end def permissions @@ -27,6 +28,13 @@ def setup end def test_index + get :index + + assert_response :success + assert_template %w(katello/api/v2/package_groups/index) + end + + def test_index_with_repo_id get :index, :repository_id => @repo.id assert_response :success @@ -35,6 +43,7 @@ def test_index def test_index_with_content_view_version get :index, :content_view_version_id => ContentViewVersion.first.id + assert_response :success assert_template %w(katello/api/v2/package_groups/index) end @@ -51,31 +60,47 @@ def test_index_with_environment_id def test_index_protected assert_protected_action(:index, @auth_permissions, @unauth_permissions) do - get :index, :repository_id => @repo.id + get :index end end + def test_index_available_for_content_view_filter + filtered_id = @package_group_filter.package_group_rules.first["uuid"] + + get :index, :filterId => @package_group_filter, :available_for => "content_view_filter" + body = JSON.parse(response.body) + response_ids = body["results"].map { |item| item["package_group_id"] } + + assert_response :success + assert !(response_ids.include? filtered_id) + assert response_ids.length > 0 + end + def test_show - PackageGroup.expects(:find).once.returns(stub(:repo_id => @repo.pulp_id)) - get :show, :repository_id => @repo.id, :id => "3805853f-5cae-4a4a-8549-0ec86410f58f" + PackageGroup.any_instance.stubs(:backend_data).returns({}) + get :show, :id => @repo.package_groups.first.id assert_response :success assert_template %w(katello/api/v2/package_groups/show) end + def test_show_by_uuid + PackageGroup.any_instance.stubs(:backend_data).returns({}) + get :show, :id => @repo.package_groups.first.uuid + + assert_response :success + end + def test_show_group_not_found - PackageGroup.expects(:find).once.returns(nil) - get :show, :repository_id => @repo.id, :id => "3805853f-5cae-4a4a-8549-0ec86410f58f" + get :show, :id => "3805853f-5cae-4a4a-8549-0ec86410f58f" assert_response 404 end def test_show_protected - pckage_group = stub - pckage_group.stubs(:repo_id).returns([@repo.pulp_id]) - PackageGroup.stubs(:find).with("3805853f-5cae-4a4a-8549-0ec86410f58f").returns(pckage_group) + PackageGroup.any_instance.stubs(:backend_data).returns({}) assert_protected_action(:show, @auth_permissions, @unauth_permissions) do - get :show, :repository_id => @repo.id, :id => "3805853f-5cae-4a4a-8549-0ec86410f58f" + get :show, :id => @repo.package_groups.first.id end end end diff --git a/test/fixtures/models/katello_content_view_filters.yml b/test/fixtures/models/katello_content_view_filters.yml index 74558e35810..533ee07d8af 100644 --- a/test/fixtures/models/katello_content_view_filters.yml +++ b/test/fixtures/models/katello_content_view_filters.yml @@ -10,7 +10,7 @@ populated_package_filter: populated_package_group_filter: name: Populated Package Group Filter - content_view_id: <%= ActiveRecord::Fixtures.identify(:library_view) %> + content_view_id: <%= ActiveRecord::Fixtures.identify(:acme_default) %> type: <%= Katello::ContentViewPackageGroupFilter.name %> populated_erratum_filter: diff --git a/test/fixtures/models/katello_content_view_package_group_filter_rules.yml b/test/fixtures/models/katello_content_view_package_group_filter_rules.yml index 54966aa165a..5ced76c3da4 100644 --- a/test/fixtures/models/katello_content_view_package_group_filter_rules.yml +++ b/test/fixtures/models/katello_content_view_package_group_filter_rules.yml @@ -3,3 +3,4 @@ package_group_rule: content_view_filter_id: <%= ActiveRecord::Fixtures.identify(:populated_package_group_filter) %> created_at: <%= Time.now %> updated_at: <%= Time.now %> + uuid: "4f9eea2a-a124-497e-8492-828b6d938aaa" diff --git a/test/fixtures/models/katello_package_groups.yml b/test/fixtures/models/katello_package_groups.yml new file mode 100644 index 00000000000..20625777fbf --- /dev/null +++ b/test/fixtures/models/katello_package_groups.yml @@ -0,0 +1,13 @@ +server_pg: + name: "Katello Server Development" + uuid: "4f9eea2a-a124-497e-8492-828b6d938aaa" + description: "fun packages for servers" + created_at: <%= Time.now %> + updated_at: <%= Time.now %> + +mammals_pg: + name: "mammals" + uuid: "4f9eea2a-a124-497e-8492-828b64444abc" + description: "all kinds of mammals" + created_at: <%= Time.now %> + updated_at: <%= Time.now %> diff --git a/test/fixtures/models/katello_repositories.yml b/test/fixtures/models/katello_repositories.yml index 56cc89ca2be..eb144831ea4 100644 --- a/test/fixtures/models/katello_repositories.yml +++ b/test/fixtures/models/katello_repositories.yml @@ -12,12 +12,12 @@ fedora_17_x86_64: content_view_version_id: <%= ActiveRecord::Fixtures.identify(:library_default_version) %> fedora_17_x86_64_dev: - name: Fedora 17 x86_64 + name: Fedora 17 x86_64 dev pulp_id: 2 content_id: 1 content_type: yum library_instance: fedora_17_x86_64 - label: fedora_17_dev_label + label: fedora_17_x86_64_dev_label relative_path: '/ACME_Corporation/dev/fedora_17_dev_label' environment_id: <%= ActiveRecord::Fixtures.identify(:dev) %> product_id: <%= ActiveRecord::Fixtures.identify(:fedora) %> diff --git a/test/fixtures/models/katello_repository_package_groups.yml b/test/fixtures/models/katello_repository_package_groups.yml new file mode 100644 index 00000000000..76820413364 --- /dev/null +++ b/test/fixtures/models/katello_repository_package_groups.yml @@ -0,0 +1,11 @@ +server: + package_group_id: <%= ActiveRecord::Fixtures.identify(:server_pg) %> + repository_id: <%= ActiveRecord::Fixtures.identify(:fedora_17_x86_64_dev) %> + created_at: <%= Time.now %> + updated_at: <%= Time.now %> + +mammals: + package_group_id: <%= ActiveRecord::Fixtures.identify(:mammals_pg) %> + repository_id: <%= ActiveRecord::Fixtures.identify(:fedora_17_x86_64_dev) %> + created_at: <%= Time.now %> + updated_at: <%= Time.now %> diff --git a/test/fixtures/vcr_cassettes/actions/katello/capsule_content/manage_bound_repositories_add/0001_plans.yml b/test/fixtures/vcr_cassettes/actions/katello/capsule_content/manage_bound_repositories_add/0001_plans.yml index 0c674459445..2d92553154d 100644 --- a/test/fixtures/vcr_cassettes/actions/katello/capsule_content/manage_bound_repositories_add/0001_plans.yml +++ b/test/fixtures/vcr_cassettes/actions/katello/capsule_content/manage_bound_repositories_add/0001_plans.yml @@ -34,23 +34,15 @@ http_interactions: - "2" Vary: - Accept-Encoding - Content-Encoding: - - gzip Content-Length: - - "197" + - "252" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: !binary | - H4sIAAAAAAAAAzWO3WrDMAxGXyWIXi64+Vm97AH2GsY4CjGksrCVsRL67otc - eicdjj59B5SQvYSV/QzfzfH8aGCOhTf/cOTveDL4wTll33S2+fu6udsI6uB5 - F1liolOhfdtO6Kion5FTUYmSoJIDnLJWHlwDM99bBaDfQiJBErdTFBfSTlLe - RVysneCS6gCfgw1h9Pa62GDHbujsNC1hwJrzUnr969aMi26G942N52h+e1Nr - RUk5YjG9gec/V7+mpvwAAAA= - + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"537cc4a70f7c74131799fc3e\"}, \"id\": \"2\", \"_href\": \"/pulp/api/v2/repositories/2/\"}" http_version: recorded_at: Wed, 21 May 2014 15:22:16 GMT - request: @@ -83,33 +75,20 @@ http_interactions: - Apache/2.2.15 (Red Hat) Vary: - Accept-Encoding - Content-Encoding: - - gzip Content-Length: - - "429" + - "1351" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: !binary | - H4sIAAAAAAAAA7WT224CIRCGX8WQXtbgqW71AfoSjSHIznZJEAgMWrvZdy/g - YdEra9Lbnzn93wwd8cJxFK3lNVmPuv51RGrpreJHpvkOokY+oDaOj6bV6Pt9 - yZYLkmIg5kmL0ugYooNSp0R0chvQOB/Vz444sIbJVJnMUhrT6eEk30THN8U9 - Mhu2Svp2qMnje6GiCxBVL1qog4L68gS54eZ2CIZHC+f22sSRWYtoy8Z5phzQ - kRdzinybV0IseDVpKlEtpvNptVo1YjEjiY0wupFfF1JnZywXT+//4Ljhyj9n - +Rh2TCij4UnH0zvHaekoNU9LL0te7ZZIcuN/QvL0ESQiz7GY3LOwziAIhHqY - Jx1XsTAHKqLaAwtOpcoUIXnj2FJyjvbn5AIc6Te3iDIWHZv53JclbZw85QC7 - GyfhMh2CRha0RCZM0Oivh7qzxiE88i2H0CLvHuJFv67MH7UY9jVsJunXrTzG - et7cs24gYyaNVLCmlO65o4fD4QQ0M6I/xhTndzNi/4fWUN5wJtM6aPL2bFCW - civpfkZzTxkvSIKnM0r6X8tbYz5HBQAA - + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"distributors\": [{\"repo_id\": \"2\", \"_ns\": \"repo_distributors\", \"last_publish\": null, \"auto_publish\": true, \"scheduled_publishes\": [], \"distributor_type_id\": \"nodes_http_distributor\", \"_id\": {\"$oid\": \"537cc4a70f7c74131799fc42\"}, \"config\": {}, \"id\": \"2_nodes\"}, {\"repo_id\": \"2\", \"_ns\": \"repo_distributors\", \"last_publish\": null, \"auto_publish\": false, \"scheduled_publishes\": [], \"distributor_type_id\": \"yum_clone_distributor\", \"_id\": {\"$oid\": \"537cc4a70f7c74131799fc41\"}, \"config\": {\"destination_distributor_id\": \"2\"}, \"id\": \"2_clone\"}, {\"repo_id\": \"2\", \"_ns\": \"repo_distributors\", \"last_publish\": null, \"auto_publish\": true, \"scheduled_publishes\": [], \"distributor_type_id\": \"yum_distributor\", \"_id\": {\"$oid\": \"537cc4a70f7c74131799fc40\"}, \"config\": {\"protected\": true, \"http\": false, \"relative_url\": \"/test_path/\", \"https\": true}, \"id\": \"2\"}], \"_ns\": \"repos\", \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"content_unit_counts\": {}, \"importers\": [{\"repo_id\": \"2\", \"_ns\": \"repo_importers\", \"importer_type_id\": \"yum_importer\", \"last_sync\": null, \"scheduled_syncs\": [], \"_id\": {\"$oid\": \"537cc4a70f7c74131799fc3f\"}, \"config\": {\"feed\": \"file:///var/www/test_repos/zoo\"}, \"id\": \"yum_importer\"}], \"_id\": {\"$oid\": \"537cc4a70f7c74131799fc3e\"}, \"id\": \"2\", \"_href\": \"/pulp/api/v2/repositories/2/\"}" http_version: recorded_at: Wed, 21 May 2014 15:22:16 GMT - request: - method: delete - uri: https://centos.installer/pulp/api/v2/repositories/2/ + method: get + uri: https://centos.installer/pulp/api/v2/tasks/0c05680e-b0f0-4e4a-99dc-a88ea6ae587f/ body: encoding: US-ASCII string: "" @@ -121,31 +100,31 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="EcuYEHVwELsbiRZA4TLPmgaysHQRiNf6TeqkUWtzL54", oauth_signature="zx9O7kiVweQt7z7B4gQN6w7hD8M%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400685736", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="UL64QKvU9Fc8YN047JGp394gOcekOuS6MyGHjnCjIA", oauth_signature="W2JqxeOUlIo5%2FghRtTR6wmiTcak%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400685736", oauth_version="1.0" Pulp-User: - admin User-Agent: - Ruby response: status: - code: 202 - message: Accepted + code: 200 + message: OK headers: Date: - Wed, 21 May 2014 15:22:15 GMT Server: - Apache/2.2.15 (Red Hat) - Content-Encoding: - - utf-8 + Vary: + - Accept-Encoding Content-Length: - - "172" + - "554" Connection: - close Content-Type: - application/json body: - encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/0c05680e-b0f0-4e4a-99dc-a88ea6ae587f/\", \"task_id\": \"0c05680e-b0f0-4e4a-99dc-a88ea6ae587f\"}], \"result\": null, \"error\": null}" + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/0c05680e-b0f0-4e4a-99dc-a88ea6ae587f/\", \"task_id\": \"0c05680e-b0f0-4e4a-99dc-a88ea6ae587f\", \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": \"2014-05-21T15:22:15Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@ft-29.inecas.cz.dq\", \"state\": \"running\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"537cc4a792325e4e348a1401\"}, \"id\": \"537cc4a70f7c74131799fc45\"}" http_version: recorded_at: Wed, 21 May 2014 15:22:16 GMT - request: @@ -162,7 +141,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="UL64QKvU9Fc8YN047JGp394gOcekOuS6MyGHjnCjIA", oauth_signature="W2JqxeOUlIo5%2FghRtTR6wmiTcak%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400685736", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="WS8T2B7eFviX330LaT9QJ9ubl2Vzt3uB7tzttD1NPs", oauth_signature="qF1nKplvqRCQp8Y98x7qzJShyjg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400685737", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -173,36 +152,109 @@ http_interactions: message: OK headers: Date: - - Wed, 21 May 2014 15:22:15 GMT + - Wed, 21 May 2014 15:22:16 GMT Server: - Apache/2.2.15 (Red Hat) Vary: - Accept-Encoding - Content-Encoding: - - gzip Content-Length: - - "338" + - "595" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: !binary | - H4sIAAAAAAAAA42Qz1LDIBCHX8VhPJoECDR/Tj6EJx0nQ8mmZRqBAmmtnb67 - kNiJ3jzy2/3Yb/eK4FOCDcpo1D7oaRyfHlAQ/tCFi4UYITuNNvfgTuDyVPC5 - A2u8CsZd8h5GCIAi0+0dDKm/SEAhrCpOtJiBAkvMNzWGbIsHnDFgImuaXmai - rkFsBPC6Ggp0H6z69M1/mAXZ+dj/Nnu2q1pLU3UOhUzrtT+u7zEelFZ+3wX1 - AevWPggX7hmimLAM84ySF8JbSlvCX+d5TkjYCnn4BVpx1tB387LJJY2wzuwc - eN8lJRdifL3F+DjBNP8fa+mmfax7MzkJ3dm4A7iMPA8ho02uNEjhc/mV90e0 - 6IWFnLRWepeyyE5jWE3AOePW53LKK3o0y015WUnJRNXQknJgULJaEIYJSmZ/ - W/BQyYqRklRNM0jG0e0buzVU3ioCAAA= - + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/0c05680e-b0f0-4e4a-99dc-a88ea6ae587f/\", \"task_id\": \"0c05680e-b0f0-4e4a-99dc-a88ea6ae587f\", \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"finish_time\": \"2014-05-21T15:22:15Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-05-21T15:22:15Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@ft-29.inecas.cz.dq\", \"state\": \"finished\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"537cc4a792325e4e348a1401\"}, \"id\": \"537cc4a70f7c74131799fc45\"}" http_version: - recorded_at: Wed, 21 May 2014 15:22:16 GMT + recorded_at: Wed, 21 May 2014 15:22:17 GMT +- request: + method: post + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/ + body: + encoding: US-ASCII + string: "{\"id\":\"2\",\"display_name\":\"Fedora 17 x86_64 dev\",\"importer_type_id\":\"yum_importer\",\"importer_config\":{\"feed\":\"file:///var/www/test_repos/zoo\",\"ssl_ca_cert\":null,\"ssl_client_cert\":null,\"ssl_client_key\":null},\"notes\":{\"_repo-type\":\"rpm-repo\"},\"distributors\":[{\"distributor_type_id\":\"yum_distributor\",\"distributor_config\":{\"relative_url\":\"/test_path/\",\"http\":false,\"https\":true,\"protected\":true},\"auto_publish\":true,\"distributor_id\":\"2\"},{\"distributor_type_id\":\"yum_clone_distributor\",\"distributor_config\":{\"destination_distributor_id\":\"2\"},\"auto_publish\":false,\"distributor_id\":\"2_clone\"},{\"distributor_type_id\":\"nodes_http_distributor\",\"distributor_config\":{},\"auto_publish\":true,\"distributor_id\":\"2_nodes\"}]}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="SbFhKde8P6RSyoEEKAwnjOMEQYlMCgHtt5zx29E5Vk", oauth_signature="4cso9eSlDqTqWrLCsf0rfIA3rMc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438866741", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "707" + User-Agent: + - Ruby + response: + status: + code: 201 + message: Created + headers: + Date: + - Thu, 06 Aug 2015 13:12:21 GMT + Server: + - Apache/2.4.6 (CentOS) + Location: + - "2" + Content-Length: + - "308" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64 dev\", \"description\": null, \"last_unit_added\": null, \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"last_unit_removed\": null, \"content_unit_counts\": {}, \"_ns\": \"repos\", \"_id\": {\"$oid\": \"55c35d3511513843aeb594c9\"}, \"id\": \"2\", \"_href\": \"/pulp/api/v2/repositories/2/\"}" + http_version: + recorded_at: Thu, 06 Aug 2015 13:12:21 GMT +- request: + method: delete + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/2/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="PHTDLrmNoBCptv9NcE9CFUGTj2NyQKwC7gbHsHoLidc", oauth_signature="qBi5ozWMlz%2FNfGRenIJveR9SfwM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438866742", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 202 + message: Accepted + headers: + Date: + - Thu, 06 Aug 2015 13:12:22 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Encoding: + - utf-8 + Content-Length: + - "172" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/67f9c227-6e82-4a2a-b3a2-63fdc0dede61/\", \"task_id\": \"67f9c227-6e82-4a2a-b3a2-63fdc0dede61\"}], \"result\": null, \"error\": null}" + http_version: + recorded_at: Thu, 06 Aug 2015 13:12:22 GMT - request: method: get - uri: https://centos.installer/pulp/api/v2/tasks/0c05680e-b0f0-4e4a-99dc-a88ea6ae587f/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/67f9c227-6e82-4a2a-b3a2-63fdc0dede61/ body: encoding: US-ASCII string: "" @@ -214,7 +266,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="WS8T2B7eFviX330LaT9QJ9ubl2Vzt3uB7tzttD1NPs", oauth_signature="qF1nKplvqRCQp8Y98x7qzJShyjg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400685737", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="NbsIjiq48yCTQsDvidYsDAwAeH3F0dHKE1SdiHQ", oauth_signature="NOcPhvPHwQo5vNifW2rzmhkMf1M%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438866742", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -225,31 +277,57 @@ http_interactions: message: OK headers: Date: - - Wed, 21 May 2014 15:22:16 GMT + - Thu, 06 Aug 2015 13:12:22 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding - Content-Encoding: - - gzip + - Apache/2.4.6 (CentOS) Content-Length: - - "347" + - "519" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: !binary | - H4sIAAAAAAAAA42QzW7DIBCEXyVCPdY2YIh/Tn2InlpVFsHrBsU1BHDSNMq7 - F3Aqq6f2Zs/sLN/OFcGnBOOVnlC7meZxfNwgL9yh8xcDQUJmHk3uwJ7A5tFw - uQWjnfLaXvIeRvCAQqbbWxjifBEDhTCqONEiBQosMd/WGLIdHnDGgImsaXqZ - iboGsRXA62oo0M/Dqo9r/pNZIu8uzL8mznZFa2l0kyhkPK+9s74FeVCTcvvO - q490IsWEZZhnlDwT3lLaEv6Sbpri6oXKeeFnF9XwZf2fWW+FhJ2Qh7VWZ8R5 - gr5LpUTmiGKsfrfgXBfRrQ/y9Rbk4wxz2h+82H0ffKdnK6E7a3sAm5GnwWe0 - ydUEUrhcfuX98Y7nU3I5EvoohvA8+hUFrNV2/V06v6IHvZTPy0pKJqqGlpQD - g5LVgjBMUET7PYKHSlaMlKRqmkEyjm7fpqaZ7FMCAAA= - + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/67f9c227-6e82-4a2a-b3a2-63fdc0dede61/\", \"task_id\": \"67f9c227-6e82-4a2a-b3a2-63fdc0dede61\", \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c35d367164df9aa32ab94a\"}, \"id\": \"55c35d3611513843aeb594cf\"}" http_version: - recorded_at: Wed, 21 May 2014 15:22:17 GMT -recorded_with: VCR 2.9.0 + recorded_at: Thu, 06 Aug 2015 13:12:22 GMT +- request: + method: get + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/67f9c227-6e82-4a2a-b3a2-63fdc0dede61/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="8j6vbPJfzVY0gNIoZagJjNWWrcptcDKGgOTcDT5Tw", oauth_signature="BCK0Gz2RHtMKcU5yUKIehywEV6Y%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438866742", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 06 Aug 2015 13:12:22 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "678" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/67f9c227-6e82-4a2a-b3a2-63fdc0dede61/\", \"task_id\": \"67f9c227-6e82-4a2a-b3a2-63fdc0dede61\", \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"finish_time\": \"2015-08-06T13:12:22Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-06T13:12:22Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c35d367164df9aa32ab94a\"}, \"id\": \"55c35d361151384439db7c13\"}" + http_version: + recorded_at: Thu, 06 Aug 2015 13:12:22 GMT +recorded_with: VCR 2.9.3 diff --git a/test/fixtures/vcr_cassettes/actions/katello/capsule_content/manage_bound_repositories_remove/0001_plans.yml b/test/fixtures/vcr_cassettes/actions/katello/capsule_content/manage_bound_repositories_remove/0001_plans.yml index 0c674459445..e626db4ec60 100644 --- a/test/fixtures/vcr_cassettes/actions/katello/capsule_content/manage_bound_repositories_remove/0001_plans.yml +++ b/test/fixtures/vcr_cassettes/actions/katello/capsule_content/manage_bound_repositories_remove/0001_plans.yml @@ -34,23 +34,15 @@ http_interactions: - "2" Vary: - Accept-Encoding - Content-Encoding: - - gzip Content-Length: - - "197" + - "252" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: !binary | - H4sIAAAAAAAAAzWO3WrDMAxGXyWIXi64+Vm97AH2GsY4CjGksrCVsRL67otc - eicdjj59B5SQvYSV/QzfzfH8aGCOhTf/cOTveDL4wTll33S2+fu6udsI6uB5 - F1liolOhfdtO6Kion5FTUYmSoJIDnLJWHlwDM99bBaDfQiJBErdTFBfSTlLe - RVysneCS6gCfgw1h9Pa62GDHbujsNC1hwJrzUnr969aMi26G942N52h+e1Nr - RUk5YjG9gec/V7+mpvwAAAA= - + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"537cc4a70f7c74131799fc3e\"}, \"id\": \"2\", \"_href\": \"/pulp/api/v2/repositories/2/\"}" http_version: recorded_at: Wed, 21 May 2014 15:22:16 GMT - request: @@ -83,33 +75,20 @@ http_interactions: - Apache/2.2.15 (Red Hat) Vary: - Accept-Encoding - Content-Encoding: - - gzip Content-Length: - - "429" + - "1351" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: !binary | - H4sIAAAAAAAAA7WT224CIRCGX8WQXtbgqW71AfoSjSHIznZJEAgMWrvZdy/g - YdEra9Lbnzn93wwd8cJxFK3lNVmPuv51RGrpreJHpvkOokY+oDaOj6bV6Pt9 - yZYLkmIg5kmL0ugYooNSp0R0chvQOB/Vz444sIbJVJnMUhrT6eEk30THN8U9 - Mhu2Svp2qMnje6GiCxBVL1qog4L68gS54eZ2CIZHC+f22sSRWYtoy8Z5phzQ - kRdzinybV0IseDVpKlEtpvNptVo1YjEjiY0wupFfF1JnZywXT+//4Ljhyj9n - +Rh2TCij4UnH0zvHaekoNU9LL0te7ZZIcuN/QvL0ESQiz7GY3LOwziAIhHqY - Jx1XsTAHKqLaAwtOpcoUIXnj2FJyjvbn5AIc6Te3iDIWHZv53JclbZw85QC7 - GyfhMh2CRha0RCZM0Oivh7qzxiE88i2H0CLvHuJFv67MH7UY9jVsJunXrTzG - et7cs24gYyaNVLCmlO65o4fD4QQ0M6I/xhTndzNi/4fWUN5wJtM6aPL2bFCW - civpfkZzTxkvSIKnM0r6X8tbYz5HBQAA - + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"distributors\": [{\"repo_id\": \"2\", \"_ns\": \"repo_distributors\", \"last_publish\": null, \"auto_publish\": true, \"scheduled_publishes\": [], \"distributor_type_id\": \"nodes_http_distributor\", \"_id\": {\"$oid\": \"537cc4a70f7c74131799fc42\"}, \"config\": {}, \"id\": \"2_nodes\"}, {\"repo_id\": \"2\", \"_ns\": \"repo_distributors\", \"last_publish\": null, \"auto_publish\": false, \"scheduled_publishes\": [], \"distributor_type_id\": \"yum_clone_distributor\", \"_id\": {\"$oid\": \"537cc4a70f7c74131799fc41\"}, \"config\": {\"destination_distributor_id\": \"2\"}, \"id\": \"2_clone\"}, {\"repo_id\": \"2\", \"_ns\": \"repo_distributors\", \"last_publish\": null, \"auto_publish\": true, \"scheduled_publishes\": [], \"distributor_type_id\": \"yum_distributor\", \"_id\": {\"$oid\": \"537cc4a70f7c74131799fc40\"}, \"config\": {\"protected\": true, \"http\": false, \"relative_url\": \"/test_path/\", \"https\": true}, \"id\": \"2\"}], \"_ns\": \"repos\", \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"content_unit_counts\": {}, \"importers\": [{\"repo_id\": \"2\", \"_ns\": \"repo_importers\", \"importer_type_id\": \"yum_importer\", \"last_sync\": null, \"scheduled_syncs\": [], \"_id\": {\"$oid\": \"537cc4a70f7c74131799fc3f\"}, \"config\": {\"feed\": \"file:///var/www/test_repos/zoo\"}, \"id\": \"yum_importer\"}], \"_id\": {\"$oid\": \"537cc4a70f7c74131799fc3e\"}, \"id\": \"2\", \"_href\": \"/pulp/api/v2/repositories/2/\"}" http_version: recorded_at: Wed, 21 May 2014 15:22:16 GMT - request: - method: delete - uri: https://centos.installer/pulp/api/v2/repositories/2/ + method: get + uri: https://centos.installer/pulp/api/v2/tasks/0c05680e-b0f0-4e4a-99dc-a88ea6ae587f/ body: encoding: US-ASCII string: "" @@ -121,31 +100,31 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="EcuYEHVwELsbiRZA4TLPmgaysHQRiNf6TeqkUWtzL54", oauth_signature="zx9O7kiVweQt7z7B4gQN6w7hD8M%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400685736", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="UL64QKvU9Fc8YN047JGp394gOcekOuS6MyGHjnCjIA", oauth_signature="W2JqxeOUlIo5%2FghRtTR6wmiTcak%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400685736", oauth_version="1.0" Pulp-User: - admin User-Agent: - Ruby response: status: - code: 202 - message: Accepted + code: 200 + message: OK headers: Date: - Wed, 21 May 2014 15:22:15 GMT Server: - Apache/2.2.15 (Red Hat) - Content-Encoding: - - utf-8 + Vary: + - Accept-Encoding Content-Length: - - "172" + - "554" Connection: - close Content-Type: - application/json body: - encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/0c05680e-b0f0-4e4a-99dc-a88ea6ae587f/\", \"task_id\": \"0c05680e-b0f0-4e4a-99dc-a88ea6ae587f\"}], \"result\": null, \"error\": null}" + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/0c05680e-b0f0-4e4a-99dc-a88ea6ae587f/\", \"task_id\": \"0c05680e-b0f0-4e4a-99dc-a88ea6ae587f\", \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": \"2014-05-21T15:22:15Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@ft-29.inecas.cz.dq\", \"state\": \"running\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"537cc4a792325e4e348a1401\"}, \"id\": \"537cc4a70f7c74131799fc45\"}" http_version: recorded_at: Wed, 21 May 2014 15:22:16 GMT - request: @@ -162,7 +141,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="UL64QKvU9Fc8YN047JGp394gOcekOuS6MyGHjnCjIA", oauth_signature="W2JqxeOUlIo5%2FghRtTR6wmiTcak%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400685736", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="WS8T2B7eFviX330LaT9QJ9ubl2Vzt3uB7tzttD1NPs", oauth_signature="qF1nKplvqRCQp8Y98x7qzJShyjg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400685737", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -173,36 +152,109 @@ http_interactions: message: OK headers: Date: - - Wed, 21 May 2014 15:22:15 GMT + - Wed, 21 May 2014 15:22:16 GMT Server: - Apache/2.2.15 (Red Hat) Vary: - Accept-Encoding - Content-Encoding: - - gzip Content-Length: - - "338" + - "595" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: !binary | - H4sIAAAAAAAAA42Qz1LDIBCHX8VhPJoECDR/Tj6EJx0nQ8mmZRqBAmmtnb67 - kNiJ3jzy2/3Yb/eK4FOCDcpo1D7oaRyfHlAQ/tCFi4UYITuNNvfgTuDyVPC5 - A2u8CsZd8h5GCIAi0+0dDKm/SEAhrCpOtJiBAkvMNzWGbIsHnDFgImuaXmai - rkFsBPC6Ggp0H6z69M1/mAXZ+dj/Nnu2q1pLU3UOhUzrtT+u7zEelFZ+3wX1 - AevWPggX7hmimLAM84ySF8JbSlvCX+d5TkjYCnn4BVpx1tB387LJJY2wzuwc - eN8lJRdifL3F+DjBNP8fa+mmfax7MzkJ3dm4A7iMPA8ho02uNEjhc/mV90e0 - 6IWFnLRWepeyyE5jWE3AOePW53LKK3o0y015WUnJRNXQknJgULJaEIYJSmZ/ - W/BQyYqRklRNM0jG0e0buzVU3ioCAAA= - + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/0c05680e-b0f0-4e4a-99dc-a88ea6ae587f/\", \"task_id\": \"0c05680e-b0f0-4e4a-99dc-a88ea6ae587f\", \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"finish_time\": \"2014-05-21T15:22:15Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-05-21T15:22:15Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@ft-29.inecas.cz.dq\", \"state\": \"finished\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"537cc4a792325e4e348a1401\"}, \"id\": \"537cc4a70f7c74131799fc45\"}" http_version: - recorded_at: Wed, 21 May 2014 15:22:16 GMT + recorded_at: Wed, 21 May 2014 15:22:17 GMT +- request: + method: post + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/ + body: + encoding: US-ASCII + string: "{\"id\":\"2\",\"display_name\":\"Fedora 17 x86_64 dev\",\"importer_type_id\":\"yum_importer\",\"importer_config\":{\"feed\":\"file:///var/www/test_repos/zoo\",\"ssl_ca_cert\":null,\"ssl_client_cert\":null,\"ssl_client_key\":null},\"notes\":{\"_repo-type\":\"rpm-repo\"},\"distributors\":[{\"distributor_type_id\":\"yum_distributor\",\"distributor_config\":{\"relative_url\":\"/test_path/\",\"http\":false,\"https\":true,\"protected\":true},\"auto_publish\":true,\"distributor_id\":\"2\"},{\"distributor_type_id\":\"yum_clone_distributor\",\"distributor_config\":{\"destination_distributor_id\":\"2\"},\"auto_publish\":false,\"distributor_id\":\"2_clone\"},{\"distributor_type_id\":\"nodes_http_distributor\",\"distributor_config\":{},\"auto_publish\":true,\"distributor_id\":\"2_nodes\"}]}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="sPSV09KX8BAmlR79A7dHknSMsmmw8tKb1IiaRjV5Ukc", oauth_signature="6oJuq8kk5COojLKu9RouHizPwvI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438866743", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "707" + User-Agent: + - Ruby + response: + status: + code: 201 + message: Created + headers: + Date: + - Thu, 06 Aug 2015 13:12:23 GMT + Server: + - Apache/2.4.6 (CentOS) + Location: + - "2" + Content-Length: + - "308" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64 dev\", \"description\": null, \"last_unit_added\": null, \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"last_unit_removed\": null, \"content_unit_counts\": {}, \"_ns\": \"repos\", \"_id\": {\"$oid\": \"55c35d3711513843aeb594d4\"}, \"id\": \"2\", \"_href\": \"/pulp/api/v2/repositories/2/\"}" + http_version: + recorded_at: Thu, 06 Aug 2015 13:12:23 GMT +- request: + method: delete + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/2/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="YnQJhniRiQwFl18vQc5p4NJNlcIK36CCcUHustOdOAY", oauth_signature="bom2iOBeFdNMxmwJmgNWeZGyp5g%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438866743", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 202 + message: Accepted + headers: + Date: + - Thu, 06 Aug 2015 13:12:23 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Encoding: + - utf-8 + Content-Length: + - "172" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/b6170eb3-5e0f-4f73-8910-e0ca5e0caa1e/\", \"task_id\": \"b6170eb3-5e0f-4f73-8910-e0ca5e0caa1e\"}], \"result\": null, \"error\": null}" + http_version: + recorded_at: Thu, 06 Aug 2015 13:12:23 GMT - request: method: get - uri: https://centos.installer/pulp/api/v2/tasks/0c05680e-b0f0-4e4a-99dc-a88ea6ae587f/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/b6170eb3-5e0f-4f73-8910-e0ca5e0caa1e/ body: encoding: US-ASCII string: "" @@ -214,7 +266,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="WS8T2B7eFviX330LaT9QJ9ubl2Vzt3uB7tzttD1NPs", oauth_signature="qF1nKplvqRCQp8Y98x7qzJShyjg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400685737", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="U520DyEzfx8ECVLLHIjM1bTOzFfPGrpaBAQEb1dQHk", oauth_signature="unEWrKJmmPHW8q2XX%2Br6s4NtXwE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438866743", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -225,31 +277,57 @@ http_interactions: message: OK headers: Date: - - Wed, 21 May 2014 15:22:16 GMT + - Thu, 06 Aug 2015 13:12:23 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding - Content-Encoding: - - gzip + - Apache/2.4.6 (CentOS) Content-Length: - - "347" + - "519" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: !binary | - H4sIAAAAAAAAA42QzW7DIBCEXyVCPdY2YIh/Tn2InlpVFsHrBsU1BHDSNMq7 - F3Aqq6f2Zs/sLN/OFcGnBOOVnlC7meZxfNwgL9yh8xcDQUJmHk3uwJ7A5tFw - uQWjnfLaXvIeRvCAQqbbWxjifBEDhTCqONEiBQosMd/WGLIdHnDGgImsaXqZ - iboGsRXA62oo0M/Dqo9r/pNZIu8uzL8mznZFa2l0kyhkPK+9s74FeVCTcvvO - q490IsWEZZhnlDwT3lLaEv6Sbpri6oXKeeFnF9XwZf2fWW+FhJ2Qh7VWZ8R5 - gr5LpUTmiGKsfrfgXBfRrQ/y9Rbk4wxz2h+82H0ffKdnK6E7a3sAm5GnwWe0 - ydUEUrhcfuX98Y7nU3I5EvoohvA8+hUFrNV2/V06v6IHvZTPy0pKJqqGlpQD - g5LVgjBMUET7PYKHSlaMlKRqmkEyjm7fpqaZ7FMCAAA= - + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/b6170eb3-5e0f-4f73-8910-e0ca5e0caa1e/\", \"task_id\": \"b6170eb3-5e0f-4f73-8910-e0ca5e0caa1e\", \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c35d377164df9aa32ab94e\"}, \"id\": \"55c35d3711513843aeb594da\"}" http_version: - recorded_at: Wed, 21 May 2014 15:22:17 GMT -recorded_with: VCR 2.9.0 + recorded_at: Thu, 06 Aug 2015 13:12:23 GMT +- request: + method: get + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/b6170eb3-5e0f-4f73-8910-e0ca5e0caa1e/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="nOl6OUgBsXY2XyN5Xu6QpEWKALd41IR5tRNu00SnI", oauth_signature="qMs6Y39l%2BLAKz329QXiEjANbdzk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438866744", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 06 Aug 2015 13:12:24 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "678" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/b6170eb3-5e0f-4f73-8910-e0ca5e0caa1e/\", \"task_id\": \"b6170eb3-5e0f-4f73-8910-e0ca5e0caa1e\", \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"finish_time\": \"2015-08-06T13:12:23Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-06T13:12:23Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c35d377164df9aa32ab94e\"}, \"id\": \"55c35d371151384439db7c1a\"}" + http_version: + recorded_at: Thu, 06 Aug 2015 13:12:24 GMT +recorded_with: VCR 2.9.3 diff --git a/test/fixtures/vcr_cassettes/actions/pulp/consumer/create.yml b/test/fixtures/vcr_cassettes/actions/pulp/consumer/create.yml index 5912f1d228b..62415b92803 100644 --- a/test/fixtures/vcr_cassettes/actions/pulp/consumer/create.yml +++ b/test/fixtures/vcr_cassettes/actions/pulp/consumer/create.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: post - uri: https://centos.installer/pulp/api/v2/consumers/ + uri: https://katello-devel1.example.com/pulp/api/v2/consumers/ body: encoding: US-ASCII string: "{\"id\":\"uuid\",\"display_name\":\"name\"}" @@ -14,7 +14,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="2CWZLmNUHoEFh2mmX3vwCHGsvvgO1hOb6qgzdvVZMs", oauth_signature="yl8oMSWSo2fvQCMJ4r497zwKuCY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400185674", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="NfU1YsFaLkGi1bHO1osLhwjO8Q8vRRoTt8Gsoiu6q7U", oauth_signature="twESySVlYG1kvzT4swrYqBZxqgU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865819", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -27,25 +27,25 @@ http_interactions: message: Created headers: Date: - - Thu, 15 May 2014 20:27:54 GMT + - Thu, 06 Aug 2015 12:56:59 GMT Server: - - Apache/2.2.15 (CentOS) + - Apache/2.4.6 (CentOS) Location: - /pulp/api/v2/consumers/uuid/ Content-Length: - - "2041" + - "2169" Connection: - close Content-Type: - application/json body: encoding: US-ASCII - string: "{\"consumer\": {\"display_name\": \"name\", \"description\": null, \"_ns\": \"consumers\", \"notes\": {}, \"rsa_pub\": null, \"capabilities\": {}, \"_id\": {\"$oid\": \"5375234a86d9a9321c14a58b\"}, \"id\": \"uuid\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/uuid/\"}}, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICWwIBAAKBgQC6IPf21HtgviHXTgNhGxAOyTjMldUNUMDC/pkcP4nmgDssp9Fa\\nteUHCZ6emtYa7Nyj2eqb4wHVhruea7Bs2cg0tTpvDQagq+WSHsrIYsr/F0RW/EHw\\nkOtacsPXrzGel7y28SYVzGiPkp/RFZJOVCh7Za54K8Bh6kYSmn8QeaVMtQIDAQAB\\nAoGAIDZAc7lGOPHuzWI094NFfimY6N8tZgaJtbV2LgtZBElA9HN+qeI85sDlcLF/\\nSF2hucGm9p+M27VblwkwGUZ/fUOVH8s9uKTUKSgTjekvEWWxTyFdSWub8bbyrdgq\\nAKxnrvc0X/qdlND2oS5ZmPsBYVBI7OHn5kI8cfn5UL2aOOkCQQD3FBgVaTHWJUpi\\nyBf99wM6XGdeoJl8dyC4ipgMU/LKtlmNGcyI5M5WFecwOs4vHuhYiIF0CakqDATw\\nTQ7O3HiLAkEAwNl6H+R9LX0nivhln0PJjr/U1NRVNXeUzcLeVhU40Kxdr8+iQuSB\\nwS2j51sJaGGMg2oxKF7Tm3cgKd9s/nS3vwJAEVPDbJz39cCfutW1eQX9n/Yi+avh\\nl6zzCn4Ns6+fcz/ef9qzUVZacgcPM36sPvm36Z2JFo4m4t/86K0+wJsNiQJADQAc\\nLX43uhNP0RyBrUTil47zCA3wWJRhIaXbWy4/EEIuZqW2qI/C94TeIcCPV8wLrug/\\nvBr4ZOiY8HmxXU38/QJATyo6Z0OC+KRBT6pBk4tXWYsJa6EVzV4yq9uGxS0o4vnI\\naK3YYB7BICCiJUhSyJ7B8DnB+QvWYT8JTt1saukvwg==\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICVDCCATwCAgLmMA0GCSqGSIb3DQEBBQUAMCoxGTAXBgNVBAMMEGNlbnRvcy5p\\nbnN0YWxsZXIxDTALBgNVBAoMBFBVTFAwHhcNMTQwNTE1MjAyNzU0WhcNMjQwNTEy\\nMjAyNzU0WjA5MQ0wCwYDVQQDEwR1dWlkMSgwJgYKCZImiZPyLGQBARMYNTM3NTIz\\nNGE4NmQ5YTkzMjFjMTRhNThiMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC6\\nIPf21HtgviHXTgNhGxAOyTjMldUNUMDC/pkcP4nmgDssp9FateUHCZ6emtYa7Nyj\\n2eqb4wHVhruea7Bs2cg0tTpvDQagq+WSHsrIYsr/F0RW/EHwkOtacsPXrzGel7y2\\n8SYVzGiPkp/RFZJOVCh7Za54K8Bh6kYSmn8QeaVMtQIDAQABMA0GCSqGSIb3DQEB\\nBQUAA4IBAQBILizP9Rxq5tleuyqGCO/0bxLCM4XCIIOdc8No56kAEEsRSOqjJGKY\\n5cE+keUHz74wGhrPBvjd4/eisAH2JlYknvom52CjOfNa9mrLl4qXTJZIowbHmh8W\\nEcDIMFxIGoA/0WTEb3SAzLlkQYK2YjUIGQAxua2HhZc9l2KVwUYv84M1S/iHK9U8\\nQgugP3iW3t4mOc8oGWM434BC0poxVz7MamU+rJJ8bgfEJ1NMClfB97VlwswrM/c4\\nxgru0PgPcSJAAmprRANviE/A1d2dtt6DStxfaaS58sRfmMvhIuCNiy/uRXWFrTWq\\nm7fg2GexWcDv9yNzH/HEfarGb3meWQ4g\\n-----END CERTIFICATE-----\"}" + string: "{\"consumer\": {\"display_name\": \"name\", \"description\": null, \"_ns\": \"consumers\", \"notes\": {}, \"rsa_pub\": null, \"capabilities\": {}, \"_id\": {\"$oid\": \"55c3599b11513843aeb59483\"}, \"id\": \"uuid\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/uuid/\"}}, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICXAIBAAKBgQDkE8s1kAeFihJolXGi3FqGk21XesGyocX/PYDHLPbdgE0/GFC6\\nIpxq5g3mukhmdCJbw1jYsWfG1ootzOXOtZO7YTgQNDOBTJbRsbSCwEXb+d96aA7b\\nQbkP7wwWeY7HiQKlRTUv8XTrzCSTm16+VzVwdprddXI2a0iv1PLnhYM2tQIDAQAB\\nAoGAQQ+gbTQb4S0k2S6gTuv66t7NVyIOdS2OtKPPw4GBHmiGIJSIGsDay+e6WXIU\\nSx2f23tbMd1RlDgJDM2hVJkZfdVj0wjPaM+biD6CJEddCOYEBZ2mL3jwNBXyGT5p\\neSeMe4DrChD4Fn0nzGTe3JxQLctTaevwEqYmKwlg7Mz65IECQQD7RJ5vZbWtNR6Y\\nUabP/w4TSgSv3/haUeODK97YBIhey6TpNC6dmTebI3FNvPN/JYa87fSP6eKaBh76\\nkU8W0QTVAkEA6F9e6vYrRX4oH46A1CxYSVsr8YHB+6j/cywFnYgd0igrrh3NhmKX\\nn5pX0m2WDZtMM7kGbb3qbeAGXPoHbufaYQJBAKIKJoKAfSEuWISyY3lPaqxV15/0\\nOB1HIgm9iQCWK7u2aKtb05Qe8xVBThhr+jvM34+HhWgp1NCvkdrVSsPUF+ECQEzV\\nrCb4+tnhmxbEIekGOLMYyHD0vNWfzcehWMH8DhA9ZCQQirLSytvlRwC3Z5RcM1gu\\n5+dFksx99Nytd+O+GkECQCVk6A5Wyq6uDhWIapKYFEKkln4Kftsb+wbKVvIKVjnp\\nnVvwsJoDrGNKq5Zfg0GuLIFF9+K8aWJZmbBOj6hTsh4=\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICrzCCAZcCAQEwDQYJKoZIhvcNAQEFBQAwgYUxCzAJBgNVBAYTAlVTMRcwFQYD\\nVQQIEw5Ob3J0aCBDYXJvbGluYTEQMA4GA1UEBxMHUmFsZWlnaDEQMA4GA1UEChMH\\nS2F0ZWxsbzEUMBIGA1UECxMLU29tZU9yZ1VuaXQxIzAhBgNVBAMTGmthdGVsbG8t\\nZGV2ZWwxLmV4YW1wbGUuY29tMB4XDTE1MDgwNjEyNTY1OVoXDTI1MDgwMzEyNTY1\\nOVowOTENMAsGA1UEAxMEdXVpZDEoMCYGCgmSJomT8ixkAQETGDU1YzM1OTliMTE1\\nMTM4NDNhZWI1OTQ4MzCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA5BPLNZAH\\nhYoSaJVxotxahpNtV3rBsqHF/z2Axyz23YBNPxhQuiKcauYN5rpIZnQiW8NY2LFn\\nxtaKLczlzrWTu2E4EDQzgUyW0bG0gsBF2/nfemgO20G5D+8MFnmOx4kCpUU1L/F0\\n68wkk5tevlc1cHaa3XVyNmtIr9Ty54WDNrUCAwEAATANBgkqhkiG9w0BAQUFAAOC\\nAQEAc5i0yXo87juUaVCbjgwEYTLdGM3Dkm7LVEZG/9O4XFfGWSy4Uwc450illbZw\\nHqXdGT9o0RXRG9fIlmxKTotCX2klSRbcvTm2JgTYazkcQmYMh0Pd0e2zo2ZoWZG+\\n+HD3VHHSjTcZ06iKmA4H7VmeNPgIMg0KweeMEBJoa31xnVh/a3RdgvMkFeAG/Fog\\nrxAfiilyagruvKRkkzmUl3RbqC7JvlIAJ01JK0c9KEx0DqMYg8L/Y5X9uhdkWjHa\\nwXsvZWC3qfzNaDZetL0odnKDKkcqr4iLZlqlbeTisoXZrDiJGZ1hl04muzRmJCdY\\nfdVy5wzCf6OmbzHmoqQHtIrE5Q==\\n-----END CERTIFICATE-----\"}" http_version: - recorded_at: Thu, 15 May 2014 20:27:54 GMT + recorded_at: Thu, 06 Aug 2015 12:56:59 GMT - request: method: get - uri: https://centos.installer/pulp/api/v2/consumers/uuid/ + uri: https://katello-devel1.example.com/pulp/api/v2/consumers/uuid/ body: encoding: US-ASCII string: "" @@ -57,7 +57,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="A5DAwWctH6z9Bz4ZCdHQyRDxC6pTzInwBSsrXxpY", oauth_signature="SR4%2B6I2RYPMS%2B7CY6zqsp9d0LzA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400185674", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="W5sMMCQrFsZ7rCaZpfqMpyxmYaPQ5U0Yk7KPechY2A", oauth_signature="W%2FA6JYDqAwqYHZUDOcXM1aQDzxc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865819", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -68,9 +68,9 @@ http_interactions: message: OK headers: Date: - - Thu, 15 May 2014 20:27:54 GMT + - Thu, 06 Aug 2015 12:56:59 GMT Server: - - Apache/2.2.15 (CentOS) + - Apache/2.4.6 (CentOS) Content-Length: - "215" Connection: @@ -79,12 +79,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"display_name\": \"name\", \"description\": null, \"_ns\": \"consumers\", \"notes\": {}, \"rsa_pub\": null, \"capabilities\": {}, \"_id\": {\"$oid\": \"5375234a86d9a9321c14a58b\"}, \"id\": \"uuid\", \"_href\": \"/pulp/api/v2/consumers/uuid/\"}" + string: "{\"display_name\": \"name\", \"description\": null, \"_ns\": \"consumers\", \"notes\": {}, \"rsa_pub\": null, \"capabilities\": {}, \"_id\": {\"$oid\": \"55c3599b11513843aeb59483\"}, \"id\": \"uuid\", \"_href\": \"/pulp/api/v2/consumers/uuid/\"}" http_version: - recorded_at: Thu, 15 May 2014 20:27:54 GMT + recorded_at: Thu, 06 Aug 2015 12:56:59 GMT - request: method: delete - uri: https://centos.installer/pulp/api/v2/consumers/uuid/ + uri: https://katello-devel1.example.com/pulp/api/v2/consumers/uuid/ body: encoding: US-ASCII string: "" @@ -96,7 +96,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="obLjobudWx6ykvzL4fNud0XaErYyq64CjlcBTAG7DMA", oauth_signature="pFHJ5acuahJfF%2FeVB0o0QadXmtA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400185674", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="czxXLM3k9JMJq03toRyS4BgW4j6UTDGRyLzYrxMNxE", oauth_signature="o1J1uLfGW4i6u61a8dkjVDfb1tU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865819", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -107,9 +107,9 @@ http_interactions: message: OK headers: Date: - - Thu, 15 May 2014 20:27:54 GMT + - Thu, 06 Aug 2015 12:56:59 GMT Server: - - Apache/2.2.15 (CentOS) + - Apache/2.4.6 (CentOS) Content-Length: - "4" Connection: @@ -120,5 +120,5 @@ http_interactions: encoding: US-ASCII string: "null" http_version: - recorded_at: Thu, 15 May 2014 20:27:54 GMT -recorded_with: VCR 2.9.0 + recorded_at: Thu, 06 Aug 2015 12:56:59 GMT +recorded_with: VCR 2.9.3 diff --git a/test/fixtures/vcr_cassettes/actions/pulp/consumer/install_content.yml b/test/fixtures/vcr_cassettes/actions/pulp/consumer/install_content.yml index 73468339b14..74e739efb77 100644 --- a/test/fixtures/vcr_cassettes/actions/pulp/consumer/install_content.yml +++ b/test/fixtures/vcr_cassettes/actions/pulp/consumer/install_content.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: post - uri: https://centos.installer/pulp/api/v2/consumers/ + uri: https://katello-devel1.example.com/pulp/api/v2/consumers/ body: encoding: US-ASCII string: "{\"id\":\"uuid\",\"display_name\":\"name\"}" @@ -14,7 +14,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="WRuP42NqKWirQq3OS93yzfG0isCxcG0tHkoxAnAz1Q", oauth_signature="TfrmcdKAaZR96L9QmuJV9Gx%2FD%2F8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400185675", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="bUX2NiUyyA0qfH1eA6KcioS5githR9r9zQFTGKh4", oauth_signature="dCBUIQWaAdXSMKDt0tPw8b14O3w%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865820", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -27,25 +27,25 @@ http_interactions: message: Created headers: Date: - - Thu, 15 May 2014 20:27:55 GMT + - Thu, 06 Aug 2015 12:57:00 GMT Server: - - Apache/2.2.15 (CentOS) + - Apache/2.4.6 (CentOS) Location: - /pulp/api/v2/consumers/uuid/ Content-Length: - - "2041" + - "2173" Connection: - close Content-Type: - application/json body: encoding: US-ASCII - string: "{\"consumer\": {\"display_name\": \"name\", \"description\": null, \"_ns\": \"consumers\", \"notes\": {}, \"rsa_pub\": null, \"capabilities\": {}, \"_id\": {\"$oid\": \"5375234b86d9a9321c14a594\"}, \"id\": \"uuid\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/uuid/\"}}, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICXQIBAAKBgQCzLBtnExr9GYmqzL7lLiwmAE40qEU73Rs3JlcN7KpYnilTKwZN\\nRytVoM0cLkdyNR9qQHSDaPZcMGsVx8qIMsi5URVDeNMdxrfj/pxOYx1Pw0PbSjxX\\nXQUt4CTa92TUre9xuG2ckSdfn3vVgJkLdhubTOmOtUeA4aCAo6vbZ+NGmwIDAQAB\\nAoGBAJuNImk1VAwCXNu1D9ImaNvBDiR3JkxXpGYX2iJTonx3K4dx5fG3ZO7dQNVD\\ndHG5nwF+3eisep4ExyNMpg/ijxGoa47qrA6SRFrRg6RFDrB0OIkGTQcSNGnTD2YY\\n98iW79qDxUdqUnOyhnU8iA19ZffdRqKePm24ug6tfv0OKQWJAkEA10gwkqhbWlta\\nO5VZHZq2BUxwaeotSBoSkuGqiJz9wvjwW6gd7NVWINnTm4uUVdhZny17zd0F31FX\\n4MW2nQzQ5wJBANUPgoSkv92+4n1hKYYgKUo9D9wGGd6WIbKgo+FP9MNpW8ECVGYx\\npEEz0I8vf5ZYqKirruNl1lqzOkZbtschQi0CQQCj+1kEXTk4ml0hBaHb6vy7DH6U\\nLsxPH40GVN6RMQQaf4SWTHh+7gGtBD8rPCbBPQsHNJ4ZMUJH2K4XiIKRHjIBAkBu\\noNAHabgKPqxBp+q0rwxhdNVATJawIco7gve07RxNPu6aiEgkjBAanvni7ynTehOR\\nCRwVDPLBQ6C1mbeNK/K9AkApe4ywtggA2EmSfPEGT8l6Jxxz2waMucQy79KRswvb\\nnq49f0zfsoKgs12w0l5oa4GChDiK+rSiLVDRJTO4o5ZD\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICVDCCATwCAgLnMA0GCSqGSIb3DQEBBQUAMCoxGTAXBgNVBAMMEGNlbnRvcy5p\\nbnN0YWxsZXIxDTALBgNVBAoMBFBVTFAwHhcNMTQwNTE1MjAyNzU1WhcNMjQwNTEy\\nMjAyNzU1WjA5MQ0wCwYDVQQDEwR1dWlkMSgwJgYKCZImiZPyLGQBARMYNTM3NTIz\\nNGI4NmQ5YTkzMjFjMTRhNTk0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCz\\nLBtnExr9GYmqzL7lLiwmAE40qEU73Rs3JlcN7KpYnilTKwZNRytVoM0cLkdyNR9q\\nQHSDaPZcMGsVx8qIMsi5URVDeNMdxrfj/pxOYx1Pw0PbSjxXXQUt4CTa92TUre9x\\nuG2ckSdfn3vVgJkLdhubTOmOtUeA4aCAo6vbZ+NGmwIDAQABMA0GCSqGSIb3DQEB\\nBQUAA4IBAQBS395bsTxQqXBIbbkSGnU8KUwR9JZXtKQY6Y1Nx25l/ycXK4/rdXpK\\nUUE+zAJTTyOvB51OC5GOtS2ICD1obT+L1XQI71Sj8rgkSN+SQi+pc4ILezOGZqoJ\\nyMVN/qMW4VSeU1EnDSRma2D7Rn0NZXWpXia3+FWs2tRHo/JRGKXgPRoIgAi4doOi\\nA63HnKX+3X6fKhmNuoBJ9Yyp/P51qypIzmiSTMhhRDZ5P4jRvBKmpWVDk35DS/AZ\\n7s2cqUTX9TTWDyulVavEk/NTG0/QItN0EcIDYKpJpOrwZjqoxiAZrCLkHj4pIZgA\\nmwVrmYsHHgeK4BjGA+XD0/xMgb/Ri6R4\\n-----END CERTIFICATE-----\"}" + string: "{\"consumer\": {\"display_name\": \"name\", \"description\": null, \"_ns\": \"consumers\", \"notes\": {}, \"rsa_pub\": null, \"capabilities\": {}, \"_id\": {\"$oid\": \"55c3599c11513843aeb5948d\"}, \"id\": \"uuid\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/uuid/\"}}, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICXgIBAAKBgQCsXNagoGoFvKAdG0ZvuLjiW5AUQ+0ZyWAbAbH5DGRXff9TD0jF\\nRWkGRgCleIylPhxNPVqWHht00A6DF4mPv3wgv9jStjxBHvNeGFyYEMFmYxyFGHC0\\n4xJAacc77nGLh+NX+Z2aP0o6lGctiZkp99suSjLE6k+wJQ2b//2+nYMJOwIDAQAB\\nAoGBAKr+u2rFWglw9UOLAJjroHfoMIr6TGnNrwt75g1WbuGhvUCwpBgZYTT5E8EV\\nVCrG8JrsKEdPfRupIQyKuE0kwcW24yquLrsOUEstN8CWfuwDrktobGc7Ff/pKhTC\\n/Okzud4kN+3KTraX1tz6h2IoqnY7zaanDSUO15rmD02qyzoRAkEA0qvLPtBPA9r4\\n7/WefMZBQeBPVWlxa+ApZMPX/9drnLR0E3EpKycRtTc1mfvWnPLwI/OVxQd/FJp0\\nUkufqOWC4wJBANFy75+8Q7N493N6P9kx9L2Hw9levyt/ZL5sSatJ/EJAVmc6AZHV\\nfIAt5euzBqlfs27BTHoLPGBlkmZkXJV1t8kCQQCG4CHhdy//QeP6jQAI1kzVRizE\\nfBt3ey5FKvVRALQOwaFHCT3YOM0nfc89ZHSESyzfd4W9fQ0pPbGXNn9jfH0NAkEA\\nvIDMByBichlx491nr2uVkCqramwqc9SA8Bz3pJC+10WePeNn3D+egKJOZvZGDZQT\\nIqAX21NXcI6Z10uGRAGheQJAWy9yVxB1z6d2k4Z1xqW5aLHWvzW65qIJCNd96lLx\\nP0LxDStXYcbqyyouz29Szvm7yGK/vdw2nDS8XxT/10xcUg==\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICrzCCAZcCAQIwDQYJKoZIhvcNAQEFBQAwgYUxCzAJBgNVBAYTAlVTMRcwFQYD\\nVQQIEw5Ob3J0aCBDYXJvbGluYTEQMA4GA1UEBxMHUmFsZWlnaDEQMA4GA1UEChMH\\nS2F0ZWxsbzEUMBIGA1UECxMLU29tZU9yZ1VuaXQxIzAhBgNVBAMTGmthdGVsbG8t\\nZGV2ZWwxLmV4YW1wbGUuY29tMB4XDTE1MDgwNjEyNTcwMFoXDTI1MDgwMzEyNTcw\\nMFowOTENMAsGA1UEAxMEdXVpZDEoMCYGCgmSJomT8ixkAQETGDU1YzM1OTljMTE1\\nMTM4NDNhZWI1OTQ4ZDCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEArFzWoKBq\\nBbygHRtGb7i44luQFEPtGclgGwGx+QxkV33/Uw9IxUVpBkYApXiMpT4cTT1alh4b\\ndNAOgxeJj798IL/Y0rY8QR7zXhhcmBDBZmMchRhwtOMSQGnHO+5xi4fjV/mdmj9K\\nOpRnLYmZKffbLkoyxOpPsCUNm//9vp2DCTsCAwEAATANBgkqhkiG9w0BAQUFAAOC\\nAQEAPDrtMhH8Lpb+wvE7panSnLQ+mrQLeGcZNTRgnRcRRfNrma4oPHSTSmgolTKu\\nAR0rMWsXBvi67V8Ne4zFOX5BwiVy0HDOMIEtRjxoCXeWjuhKt4c9ZTFDKJpL2S4z\\nwkKjRpqDaEGCuBFB587K9VqWbKBOVwNgA4UAcZ/8vhZPvqjpFuCUk+54WF8YOSLT\\nlda192rj6qbSr1aMnHXfmG83S7Mmf7zf0orTn/CjQhVvhdE8SveWo2seuDs6QNX5\\nPe/hDyhbh615NIh8on3V7sHAcQOeT3wViuMaerJffaWW/cgms9Bbs/S5AlP69ESq\\n+We1hiZK+0EO81H60WxgRIa0Dw==\\n-----END CERTIFICATE-----\"}" http_version: - recorded_at: Thu, 15 May 2014 20:27:55 GMT + recorded_at: Thu, 06 Aug 2015 12:57:00 GMT - request: method: delete - uri: https://centos.installer/pulp/api/v2/consumers/uuid/ + uri: https://katello-devel1.example.com/pulp/api/v2/consumers/uuid/ body: encoding: US-ASCII string: "" @@ -57,7 +57,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="2K8H27attGkNNiHVFCCXoCc4HGUDMBgkzY5KLx0", oauth_signature="Sq87zr1oVudWPmttSZWcUS3F7Ys%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400185675", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="YnbYBsoqosS99TiFfgHVWkgdh1kmVTIJSRclZqee04", oauth_signature="X0K8K5QCQAxqxCrh%2F5Kppj5eUCM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865820", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -68,9 +68,9 @@ http_interactions: message: OK headers: Date: - - Thu, 15 May 2014 20:27:55 GMT + - Thu, 06 Aug 2015 12:57:00 GMT Server: - - Apache/2.2.15 (CentOS) + - Apache/2.4.6 (CentOS) Content-Length: - "4" Connection: @@ -81,5 +81,5 @@ http_interactions: encoding: US-ASCII string: "null" http_version: - recorded_at: Thu, 15 May 2014 20:27:55 GMT -recorded_with: VCR 2.9.0 + recorded_at: Thu, 06 Aug 2015 12:57:00 GMT +recorded_with: VCR 2.9.3 diff --git a/test/fixtures/vcr_cassettes/actions/pulp/consumer/sync_node.yml b/test/fixtures/vcr_cassettes/actions/pulp/consumer/sync_node.yml index 3fc25998614..03d285c5783 100644 --- a/test/fixtures/vcr_cassettes/actions/pulp/consumer/sync_node.yml +++ b/test/fixtures/vcr_cassettes/actions/pulp/consumer/sync_node.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: post - uri: https://centos.installer/pulp/api/v2/consumers/ + uri: https://katello-devel1.example.com/pulp/api/v2/consumers/ body: encoding: US-ASCII string: "{\"id\":\"uuid\",\"display_name\":\"name\"}" @@ -14,7 +14,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="iutPspsU58T6f4XaMIYNpZXld9Ost29jDFMV4KnGmlE", oauth_signature="nW0LT3KREGuSB3EGDLnJ7MeQ%2Bdc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400185676", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="9NLdTQvcgIO2Hk5qf7Jwgd5sBJPaXcQzTQ2vxrAyNY", oauth_signature="K3KnvN66GuGyep%2B10EklGdsbTkc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865820", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -27,25 +27,25 @@ http_interactions: message: Created headers: Date: - - Thu, 15 May 2014 20:27:56 GMT + - Thu, 06 Aug 2015 12:57:01 GMT Server: - - Apache/2.2.15 (CentOS) + - Apache/2.4.6 (CentOS) Location: - /pulp/api/v2/consumers/uuid/ Content-Length: - - "2041" + - "2173" Connection: - close Content-Type: - application/json body: encoding: US-ASCII - string: "{\"consumer\": {\"display_name\": \"name\", \"description\": null, \"_ns\": \"consumers\", \"notes\": {}, \"rsa_pub\": null, \"capabilities\": {}, \"_id\": {\"$oid\": \"5375234c86d9a9321c14a5a4\"}, \"id\": \"uuid\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/uuid/\"}}, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICXQIBAAKBgQC2zmk9xc6d4CjwCgUTQU2vk8qBcZO+GJAw3kEr7jYbyuUxh4uV\\njh86ql1MJO8G249AVTgNd5SXBYEUKE/MjA0HVmTR4xxzI17m7clB3ZIQoQSPBN24\\n9SLGk+cBrbmu8VMoqdMhlLrocIN4Y+aeRi/b66fWkEQfhNrFUgVxf4CrgwIDAQAB\\nAoGAAOgTI4hIlwXWjiIulkLbpMRB29R5XBb5GBTyE8qxn/+olU9LxOkYhIz1u3vv\\nZ4RNOI9zoLV4Giuf0T7F7oi/Q8jmxkjvItv5VjTrac9hExaLeQ7j2GqQZb9BMXfh\\n+uiYvjsSPxilh0XsynUIofgvqLgOOykLw7lh49qiOblmcGkCQQDkrWXvcrP+cbFa\\nbKU/exzUzzgvi2/ijR2xtYvp9A+RfEsivQWxVIdDRMTJTcB2lq3U4d7x72aqPOT1\\nYM9FGT8fAkEAzKXyFscN06PPwuwvSq9lhnMXiDQco6quq+OyW3GA/N1NhrXg5UVc\\nF+1ErW5UG4JpZAGpazCrWPOMdDYTKbvbHQJBALQ/4ZuOZEZpw4wtG0wgdKdh9z2y\\nwSxoY0GSgoiUsjjRKkBlkjknEb96U0sBmHVha//jUmKNe/UwLqEj//zNW60CQHKG\\nm8hrdS1viyGGk6C0L5jiZ9TtdOmS51WCg5nxF0JrhqtQtZ8ZBcTOH5T/HUqX3Or+\\nkxVNk1agVYXjjS3Z13ECQQDbt56jBaAJldb6Z2eGV+v5go8vCYJW451LyiVGZjez\\nevEcblShiR3RVPKgc3yKc2TudNvzvLjo/hzNVqfX4tkW\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICVDCCATwCAgLpMA0GCSqGSIb3DQEBBQUAMCoxGTAXBgNVBAMMEGNlbnRvcy5p\\nbnN0YWxsZXIxDTALBgNVBAoMBFBVTFAwHhcNMTQwNTE1MjAyNzU2WhcNMjQwNTEy\\nMjAyNzU2WjA5MQ0wCwYDVQQDEwR1dWlkMSgwJgYKCZImiZPyLGQBARMYNTM3NTIz\\nNGM4NmQ5YTkzMjFjMTRhNWE0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC2\\nzmk9xc6d4CjwCgUTQU2vk8qBcZO+GJAw3kEr7jYbyuUxh4uVjh86ql1MJO8G249A\\nVTgNd5SXBYEUKE/MjA0HVmTR4xxzI17m7clB3ZIQoQSPBN249SLGk+cBrbmu8VMo\\nqdMhlLrocIN4Y+aeRi/b66fWkEQfhNrFUgVxf4CrgwIDAQABMA0GCSqGSIb3DQEB\\nBQUAA4IBAQBYCxeFBAYMFEw57ID4ft8hHDsjCa51xzmKMYhN2te6/ouYJBsBC5HI\\nvNoCHwYlM1itkx8Zj/2IDCjRPURPWtA8H2Z0YBgA78UC1IyF6JDXm2RSorqyknJ8\\ncEWJlYQJmjMp8s/QgtPAi4/PRY7zXqLoEHndEZLltrokX6p+0FjxkBl5ruxHCO/B\\n1kfDeKTty50xEm8Zu8UNm+fq8HuV5sKm+WMzGuCCZ32dqKRUmUOId+adYAT/juCy\\naLLmlej7Tr3CVLjpeXxHNRrllDJxcGGuqWCkKd511QD+klX+K/fMTragV3Joru5O\\np2CmZ2IBOoRMCbHMQFYsHKX13kaLUNSx\\n-----END CERTIFICATE-----\"}" + string: "{\"consumer\": {\"display_name\": \"name\", \"description\": null, \"_ns\": \"consumers\", \"notes\": {}, \"rsa_pub\": null, \"capabilities\": {}, \"_id\": {\"$oid\": \"55c3599d11513843aeb59496\"}, \"id\": \"uuid\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/uuid/\"}}, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICXgIBAAKBgQDLzGdFuuyR89nL5frbHfub9AfRCzgg6G/Ur/0g+ba8EMw9nXMg\\nbZKBLyUb25Lh3h0tscNw2olxsGwoF5PIdZZpUiofkC+ztuCLV99QN6Z7CWTMZnfU\\n+XftesThKefwiABUUEBAUROZPyBW2IfiswWNDO9C1sEPFlOlA6lcH7TvpQIDAQAB\\nAoGBAIcFmbZdLbdVNAsfB6B8sOKWP0eEg19qIA1tu+tJBoR7LJX15vypG9NzBMb8\\nJsh2fCZ2C+KNJ1qnZED7vfGl1kwqdOYYE3etruANrOqVVomZ02heIIHUIkOHZ+Ql\\n6JQKKbsq3zkYKDR2X/X7h4Lpy9XBPhwVONOyffqESB5pqEeBAkEA5YXcN8ZzjsNB\\n4u2WYKSiZUSZ3vBChfiCZeKrIJkILSGj1NpZVKX+BdNG7dRr3nUE4goGNEpmZlVg\\nB3oiRWZfLQJBAONO3RTDn9on0Y318iTruyjTIwaj2Vz/mN7/n1mhM/KkvJOs0YFK\\nXmj8DOau2dmkdnMuFCtKSvJY/VkuwxNE3VkCQQDH+K+cXKfTq2UdHJkXDHl8t59E\\nMJoU9SZPNISaOxp3j8aYrcCE0raWRrSWg6uTvuqJMeij6Gp9IEcxXIS9aGrlAkBH\\nkRr2YKlBrGvEAH2etkGVFvTeMFRNfYQKIf1v4NtUOB3PeQf1Zw7WixUcxEx+w9Mv\\nbICZKKj0KKSLobd1p6bxAkEAucgOes8KHhJxsg2MAstS6QuPZ4MTqA0LTPOmfLbe\\n1c0NMC0KsDHWB37f3jx8jzvf+fLdqUDHlRflZlTokXBU2w==\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICrzCCAZcCAQMwDQYJKoZIhvcNAQEFBQAwgYUxCzAJBgNVBAYTAlVTMRcwFQYD\\nVQQIEw5Ob3J0aCBDYXJvbGluYTEQMA4GA1UEBxMHUmFsZWlnaDEQMA4GA1UEChMH\\nS2F0ZWxsbzEUMBIGA1UECxMLU29tZU9yZ1VuaXQxIzAhBgNVBAMTGmthdGVsbG8t\\nZGV2ZWwxLmV4YW1wbGUuY29tMB4XDTE1MDgwNjEyNTcwMVoXDTI1MDgwMzEyNTcw\\nMVowOTENMAsGA1UEAxMEdXVpZDEoMCYGCgmSJomT8ixkAQETGDU1YzM1OTlkMTE1\\nMTM4NDNhZWI1OTQ5NjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAy8xnRbrs\\nkfPZy+X62x37m/QH0Qs4IOhv1K/9IPm2vBDMPZ1zIG2SgS8lG9uS4d4dLbHDcNqJ\\ncbBsKBeTyHWWaVIqH5Avs7bgi1ffUDemewlkzGZ31Pl37XrE4Snn8IgAVFBAQFET\\nmT8gVtiH4rMFjQzvQtbBDxZTpQOpXB+076UCAwEAATANBgkqhkiG9w0BAQUFAAOC\\nAQEAwiH9fQThH8UZB8lT4v97F9Spw//ud6/ijF44d3NqRuECGN6Gy6ArW/z6yfiF\\nbhBmaCBBps6O1Io1BEhplrrvemsUvA7YU3RNTy4/0lglBRoRFInZFrjQruhwRIFn\\nVlDomD9CW1MKw3JxdhOVNTJ2I7B1s9SdmhCDvzJim/JsSLHFnjp6MqJdJ1CTNPdc\\nZAQBi4iVr1ukLmul+aJaJbhpzk+v7gRa+/CIjGoRz8Jq53xaplXOh+v6/4Nsjy+z\\nYN6dvz6HZNXUPLkVcKifXhzY8n1HXyo1195DtF36AG661hFdpqXbLckTeclhoIrd\\nn9m5KtorqBN6raU+f0By8UzzxQ==\\n-----END CERTIFICATE-----\"}" http_version: - recorded_at: Thu, 15 May 2014 20:27:56 GMT + recorded_at: Thu, 06 Aug 2015 12:57:01 GMT - request: method: delete - uri: https://centos.installer/pulp/api/v2/consumers/uuid/ + uri: https://katello-devel1.example.com/pulp/api/v2/consumers/uuid/ body: encoding: US-ASCII string: "" @@ -57,7 +57,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="p1XJUPQdHtDl9JY1f2lpGkCduKBrlOMfXgxXg7XhQ4", oauth_signature="XzTe%2BhdUBkZwhqwdGrvASyGh7%2B4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400185676", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="hGWAx6K2UPPcVR9mocFzG7rDbCkz8Dlq4jsJoJtVF0", oauth_signature="oIVscaGEzDhmaO4EwNJF1M1S6Hg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865821", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -68,9 +68,9 @@ http_interactions: message: OK headers: Date: - - Thu, 15 May 2014 20:27:56 GMT + - Thu, 06 Aug 2015 12:57:01 GMT Server: - - Apache/2.2.15 (CentOS) + - Apache/2.4.6 (CentOS) Content-Length: - "4" Connection: @@ -81,5 +81,5 @@ http_interactions: encoding: US-ASCII string: "null" http_version: - recorded_at: Thu, 15 May 2014 20:27:56 GMT -recorded_with: VCR 2.9.0 + recorded_at: Thu, 06 Aug 2015 12:57:01 GMT +recorded_with: VCR 2.9.3 diff --git a/test/fixtures/vcr_cassettes/actions/pulp/consumer/uninstall_content.yml b/test/fixtures/vcr_cassettes/actions/pulp/consumer/uninstall_content.yml index eabf726b78b..1e7cd4b067e 100644 --- a/test/fixtures/vcr_cassettes/actions/pulp/consumer/uninstall_content.yml +++ b/test/fixtures/vcr_cassettes/actions/pulp/consumer/uninstall_content.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: post - uri: https://centos.installer/pulp/api/v2/consumers/ + uri: https://katello-devel1.example.com/pulp/api/v2/consumers/ body: encoding: US-ASCII string: "{\"id\":\"uuid\",\"display_name\":\"name\"}" @@ -14,7 +14,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="uPNaInhQlPOICs6WRaCbp5o3hW5NZeQkpoMxoqs", oauth_signature="VAAiIO2M8LY787uTKSCwNoMx0Gc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400185675", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="gZNBWtMgYbVkFtT0S3AWV6Ngy47vmX35NeWQbTahGU", oauth_signature="qSy9JlUcFES46hwobBm0M5cD1m4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865821", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -27,25 +27,25 @@ http_interactions: message: Created headers: Date: - - Thu, 15 May 2014 20:27:55 GMT + - Thu, 06 Aug 2015 12:57:01 GMT Server: - - Apache/2.2.15 (CentOS) + - Apache/2.4.6 (CentOS) Location: - /pulp/api/v2/consumers/uuid/ Content-Length: - - "2045" + - "2169" Connection: - close Content-Type: - application/json body: encoding: US-ASCII - string: "{\"consumer\": {\"display_name\": \"name\", \"description\": null, \"_ns\": \"consumers\", \"notes\": {}, \"rsa_pub\": null, \"capabilities\": {}, \"_id\": {\"$oid\": \"5375234b86d9a9321c14a59c\"}, \"id\": \"uuid\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/uuid/\"}}, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICXgIBAAKBgQCYjAlHuTECR5yKGYp1B8v5sBGLuB2ESvGJQSrLNs8NfdZFmdiN\\n3XZkKHdK4sJwMwZkXSOXAt4bt22UYQyZrClmZzpzUu+byrNlYxA8k3Mz1EG0tpfS\\nt2NsS7dp1hn7q89xJQ67Tol1Z4ewkHv2d0ogNcW2nfkQCo1KgfMYuO1KKwIDAQAB\\nAoGBAIVj9n10L6m5quWLfenl/nQAhOczAQR8cAbAKEZ4T8eRYLuN0rIClJLyW5Xt\\nAW8Q/ybl1sgm5sc/tx9HWbhKtguOx4DewGhN0m3zSkaLqe61aCJD93Na+0+qSX6d\\n8FVecY+AXlq4VFrZOWBCFjINnrkl4HGslWXXojCCwEyaT9YRAkEAyk8hQ3K1o1/C\\nUbzlbE/LddS+YHFyEZ6pb3tkJPXllCCuYybrnQmfBMLuj6u7RHIDARyj8G0C2mxm\\npm6j1P5dGQJBAMEIEqOT5nX47qGOVagacwjxTtuDloh2A/iXYXapVy4d+cMSdFmh\\nPNeaFdT9C5V5zeSWmUhSGyFArqiDGx6xReMCQQCIzRFVJpAktXAVDYKlxx9xwjYp\\nyQy1VXCFbg6933kqvR6u9XaFbigVdCsVA69SDTZy3gcNYOl5Aaw4BsDKGmahAkBF\\n4FI+/M80bYSU3x2K2OhDmHbfZ+caRv5xAvu5JNv2ScucHhYYTBHmSlUU4PVMiudJ\\nlGqwj2haxTt0rOEoXyvZAkEAr3OHAVQRa6pBq+OTuABEJkn+4e8Pt2FhzWlxfgiG\\nGsPeg1isB0fiFF2C9Vor26KKuaCldapDvcu7RQxoyM4Shw==\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICVDCCATwCAgLoMA0GCSqGSIb3DQEBBQUAMCoxGTAXBgNVBAMMEGNlbnRvcy5p\\nbnN0YWxsZXIxDTALBgNVBAoMBFBVTFAwHhcNMTQwNTE1MjAyNzU1WhcNMjQwNTEy\\nMjAyNzU1WjA5MQ0wCwYDVQQDEwR1dWlkMSgwJgYKCZImiZPyLGQBARMYNTM3NTIz\\nNGI4NmQ5YTkzMjFjMTRhNTljMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCY\\njAlHuTECR5yKGYp1B8v5sBGLuB2ESvGJQSrLNs8NfdZFmdiN3XZkKHdK4sJwMwZk\\nXSOXAt4bt22UYQyZrClmZzpzUu+byrNlYxA8k3Mz1EG0tpfSt2NsS7dp1hn7q89x\\nJQ67Tol1Z4ewkHv2d0ogNcW2nfkQCo1KgfMYuO1KKwIDAQABMA0GCSqGSIb3DQEB\\nBQUAA4IBAQAZSD8ryQiaV50KbdTZriKfKESkukFHG6Ceu8MxQHI0qUqPDhmRKzKE\\nUIaorv2df7prj6FFn/6NPfUIMCUVh1XZG6vUTATkRrOXBA3NerIiwmsIfCe83nk1\\nRMTWQUY+74fWePktlo8Mh0bD/Lf1MSp/NpLnxZ4KgUYTsT2f8SDSFiQfIb4miExE\\nQkNtd7qhzJoyrWsXrjCrgsKV1HZZj4+zpU3jeRsw/11BgEItTDxApbAJV9di/6CW\\nHWeJ9Qup6XgAF6fgDS90nJRKyHJV0lmrlJLUK78xKR2Uk3bxi16IE85hHpIdwVtS\\nI6IIOE2MAj9hQ2g3/A/U3aqQvqighqBx\\n-----END CERTIFICATE-----\"}" + string: "{\"consumer\": {\"display_name\": \"name\", \"description\": null, \"_ns\": \"consumers\", \"notes\": {}, \"rsa_pub\": null, \"capabilities\": {}, \"_id\": {\"$oid\": \"55c3599d11513843aeb5949f\"}, \"id\": \"uuid\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/uuid/\"}}, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICXAIBAAKBgQDJfhKmME/xioWtc6dwrISqPZqTVqQQT6+J7NimW2+xAHlwP8Ye\\nb1Ksp5Ip5/dmXEnx2jUPqJjBfv3/3HrgK+oMm6f1JI9PIkovT4+o8WkyKvdQUr+O\\nzquIMTGmtuIua0mnM9kRiuY+5kNDqdrgzSptjLMbL+JO5TaKlUD5SQ2QLQIDAQAB\\nAoGAWFuLzArVk8M9+aEE5RkSGCFpnoDY8zoubRpKqzDfmsvtdPbSZ1hD9eiJ5QyO\\n5flEh+U7bYFuczPAKKpDy/gV6ugiog19gYVqVOr3QvqmSY6zXTQwhaOYvfzy86dF\\n5pvMIog64yUF3HGIKifRjbpcQPDR9fPoDPjEe42ESh7Qf9UCQQDsP3jWYSMKdvkN\\nfJZS6ClCmzK+iDtK5kKqu8lqzlZ1ImuT+LO4qExCygNYZ/q/XinOeWEpRAF9Hghw\\n/5ZL7Z5jAkEA2la2gfA3/FG3iKGY6cyGs/3ocHQ0D3VoiRRvWMQhD69nIHJ+sRHH\\nbG1ct1ssJBFFNApUnLtaBYlJX1wasUdULwJAYCLwHGUI6mBBtwBE99XrvGQFgU1U\\nu4T6ChpCu4jd2+q21k81a2ZpKiCkvdwKSMebwZ7ZL/6xkGWhT8JiOeGnOwJBAJjY\\n8WUffKH3tutAbWLm2jnw+yKWRse3opmsI5LZomdvnFs7q/Nbheci3DBD9C+/o1me\\nDcO26HtNs369ZLZMP+MCQAFYvS57JGAMLuwYWvgRSNVbsw+3Kx1HpvVT0qQw1Mjh\\nMNaH4lUPLhohEtGcGh1Ykifku68pfr+Dglp6lJnWeQE=\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICrzCCAZcCAQQwDQYJKoZIhvcNAQEFBQAwgYUxCzAJBgNVBAYTAlVTMRcwFQYD\\nVQQIEw5Ob3J0aCBDYXJvbGluYTEQMA4GA1UEBxMHUmFsZWlnaDEQMA4GA1UEChMH\\nS2F0ZWxsbzEUMBIGA1UECxMLU29tZU9yZ1VuaXQxIzAhBgNVBAMTGmthdGVsbG8t\\nZGV2ZWwxLmV4YW1wbGUuY29tMB4XDTE1MDgwNjEyNTcwMVoXDTI1MDgwMzEyNTcw\\nMVowOTENMAsGA1UEAxMEdXVpZDEoMCYGCgmSJomT8ixkAQETGDU1YzM1OTlkMTE1\\nMTM4NDNhZWI1OTQ5ZjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAyX4SpjBP\\n8YqFrXOncKyEqj2ak1akEE+viezYpltvsQB5cD/GHm9SrKeSKef3ZlxJ8do1D6iY\\nwX79/9x64CvqDJun9SSPTyJKL0+PqPFpMir3UFK/js6riDExprbiLmtJpzPZEYrm\\nPuZDQ6na4M0qbYyzGy/iTuU2ipVA+UkNkC0CAwEAATANBgkqhkiG9w0BAQUFAAOC\\nAQEARhXT0/P2znc7+mfwSF+xR6rv1GIfU9MBKuP1uoZ55S0YDTYhQyU2vLZF+k66\\nkjTnbqBp+lrCaSHMdmt5JpnbbCVO1QWr3I8y9K/Vh+Y5XVnG91cP+PUZ8/qO4pNO\\n3Or+UqKgQDmimxGl2lKFCehPzwvsLQh83c17g5Ov7R8q/3jGd6pg27h3539b6FCw\\ndVhl4eUEZyBzp0cUIFxmtHcY2kAURUneG4C7Xommf3IBcsn+wUfpZWMDXQ3rf1Tp\\nMcHHBrZH4pz0CyC4NeHzdPPit4+oGPY9pXia8PH4MGU4JcRbv9IGJDI+HJ4vT7nl\\nnsoJvTWqn3lDU/08p1bOaCx7RA==\\n-----END CERTIFICATE-----\"}" http_version: - recorded_at: Thu, 15 May 2014 20:27:55 GMT + recorded_at: Thu, 06 Aug 2015 12:57:01 GMT - request: method: delete - uri: https://centos.installer/pulp/api/v2/consumers/uuid/ + uri: https://katello-devel1.example.com/pulp/api/v2/consumers/uuid/ body: encoding: US-ASCII string: "" @@ -57,7 +57,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="twLjdyoaSn2QkulkY1Xg5vDMAML2EFHHCwshrOG60", oauth_signature="AwmfaDSk88elIE2pJ9FToCbV8Lg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400185675", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="l8lY2OzFy6XDFeNhPe9DAW0iuY4YD4eCuhHxviPlSY", oauth_signature="TzMf%2FS8x%2FgNKgeftk4K2fVpPEy4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865821", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -68,9 +68,9 @@ http_interactions: message: OK headers: Date: - - Thu, 15 May 2014 20:27:55 GMT + - Thu, 06 Aug 2015 12:57:01 GMT Server: - - Apache/2.2.15 (CentOS) + - Apache/2.4.6 (CentOS) Content-Length: - "4" Connection: @@ -81,5 +81,5 @@ http_interactions: encoding: US-ASCII string: "null" http_version: - recorded_at: Thu, 15 May 2014 20:27:55 GMT -recorded_with: VCR 2.9.0 + recorded_at: Thu, 06 Aug 2015 12:57:02 GMT +recorded_with: VCR 2.9.3 diff --git a/test/fixtures/vcr_cassettes/actions/pulp/consumer/update_content.yml b/test/fixtures/vcr_cassettes/actions/pulp/consumer/update_content.yml index 3fc25998614..909ad1992b9 100644 --- a/test/fixtures/vcr_cassettes/actions/pulp/consumer/update_content.yml +++ b/test/fixtures/vcr_cassettes/actions/pulp/consumer/update_content.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: post - uri: https://centos.installer/pulp/api/v2/consumers/ + uri: https://katello-devel1.example.com/pulp/api/v2/consumers/ body: encoding: US-ASCII string: "{\"id\":\"uuid\",\"display_name\":\"name\"}" @@ -14,7 +14,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="iutPspsU58T6f4XaMIYNpZXld9Ost29jDFMV4KnGmlE", oauth_signature="nW0LT3KREGuSB3EGDLnJ7MeQ%2Bdc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400185676", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="UsNjTi9ahSswXC60CKQuoXlc8FvQflbLmVUKxJIZo", oauth_signature="1NfQdjsXoZOUBBNuf5Y4p7W674g%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865822", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -27,25 +27,25 @@ http_interactions: message: Created headers: Date: - - Thu, 15 May 2014 20:27:56 GMT + - Thu, 06 Aug 2015 12:57:02 GMT Server: - - Apache/2.2.15 (CentOS) + - Apache/2.4.6 (CentOS) Location: - /pulp/api/v2/consumers/uuid/ Content-Length: - - "2041" + - "2169" Connection: - close Content-Type: - application/json body: encoding: US-ASCII - string: "{\"consumer\": {\"display_name\": \"name\", \"description\": null, \"_ns\": \"consumers\", \"notes\": {}, \"rsa_pub\": null, \"capabilities\": {}, \"_id\": {\"$oid\": \"5375234c86d9a9321c14a5a4\"}, \"id\": \"uuid\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/uuid/\"}}, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICXQIBAAKBgQC2zmk9xc6d4CjwCgUTQU2vk8qBcZO+GJAw3kEr7jYbyuUxh4uV\\njh86ql1MJO8G249AVTgNd5SXBYEUKE/MjA0HVmTR4xxzI17m7clB3ZIQoQSPBN24\\n9SLGk+cBrbmu8VMoqdMhlLrocIN4Y+aeRi/b66fWkEQfhNrFUgVxf4CrgwIDAQAB\\nAoGAAOgTI4hIlwXWjiIulkLbpMRB29R5XBb5GBTyE8qxn/+olU9LxOkYhIz1u3vv\\nZ4RNOI9zoLV4Giuf0T7F7oi/Q8jmxkjvItv5VjTrac9hExaLeQ7j2GqQZb9BMXfh\\n+uiYvjsSPxilh0XsynUIofgvqLgOOykLw7lh49qiOblmcGkCQQDkrWXvcrP+cbFa\\nbKU/exzUzzgvi2/ijR2xtYvp9A+RfEsivQWxVIdDRMTJTcB2lq3U4d7x72aqPOT1\\nYM9FGT8fAkEAzKXyFscN06PPwuwvSq9lhnMXiDQco6quq+OyW3GA/N1NhrXg5UVc\\nF+1ErW5UG4JpZAGpazCrWPOMdDYTKbvbHQJBALQ/4ZuOZEZpw4wtG0wgdKdh9z2y\\nwSxoY0GSgoiUsjjRKkBlkjknEb96U0sBmHVha//jUmKNe/UwLqEj//zNW60CQHKG\\nm8hrdS1viyGGk6C0L5jiZ9TtdOmS51WCg5nxF0JrhqtQtZ8ZBcTOH5T/HUqX3Or+\\nkxVNk1agVYXjjS3Z13ECQQDbt56jBaAJldb6Z2eGV+v5go8vCYJW451LyiVGZjez\\nevEcblShiR3RVPKgc3yKc2TudNvzvLjo/hzNVqfX4tkW\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICVDCCATwCAgLpMA0GCSqGSIb3DQEBBQUAMCoxGTAXBgNVBAMMEGNlbnRvcy5p\\nbnN0YWxsZXIxDTALBgNVBAoMBFBVTFAwHhcNMTQwNTE1MjAyNzU2WhcNMjQwNTEy\\nMjAyNzU2WjA5MQ0wCwYDVQQDEwR1dWlkMSgwJgYKCZImiZPyLGQBARMYNTM3NTIz\\nNGM4NmQ5YTkzMjFjMTRhNWE0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC2\\nzmk9xc6d4CjwCgUTQU2vk8qBcZO+GJAw3kEr7jYbyuUxh4uVjh86ql1MJO8G249A\\nVTgNd5SXBYEUKE/MjA0HVmTR4xxzI17m7clB3ZIQoQSPBN249SLGk+cBrbmu8VMo\\nqdMhlLrocIN4Y+aeRi/b66fWkEQfhNrFUgVxf4CrgwIDAQABMA0GCSqGSIb3DQEB\\nBQUAA4IBAQBYCxeFBAYMFEw57ID4ft8hHDsjCa51xzmKMYhN2te6/ouYJBsBC5HI\\nvNoCHwYlM1itkx8Zj/2IDCjRPURPWtA8H2Z0YBgA78UC1IyF6JDXm2RSorqyknJ8\\ncEWJlYQJmjMp8s/QgtPAi4/PRY7zXqLoEHndEZLltrokX6p+0FjxkBl5ruxHCO/B\\n1kfDeKTty50xEm8Zu8UNm+fq8HuV5sKm+WMzGuCCZ32dqKRUmUOId+adYAT/juCy\\naLLmlej7Tr3CVLjpeXxHNRrllDJxcGGuqWCkKd511QD+klX+K/fMTragV3Joru5O\\np2CmZ2IBOoRMCbHMQFYsHKX13kaLUNSx\\n-----END CERTIFICATE-----\"}" + string: "{\"consumer\": {\"display_name\": \"name\", \"description\": null, \"_ns\": \"consumers\", \"notes\": {}, \"rsa_pub\": null, \"capabilities\": {}, \"_id\": {\"$oid\": \"55c3599e11513843aeb594a8\"}, \"id\": \"uuid\", \"_href\": {\"_href\": \"/pulp/api/v2/consumers/uuid/\"}}, \"certificate\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICXAIBAAKBgQDUJBKINBALBTnoLgvoQuh3AcbvFkq4Z1Zt/Du3E7LAnoVXf9O+\\nSrHnLegVpGJW/vPPRHqq+t9goXqp1lRDNo12VdW1KoVKS1E4x+p+be6HNqNvHakU\\nFM1BpjkLzn4p0HDGEkQ2ThXFC43JWvaTMcxyjGKSQNtjoqFS8sT1xGcyhwIDAQAB\\nAoGAEZVL0+48xi0Qt6XZZs7k5bhH/NkkKFSoXUVizbHcRwrcknwN2N/oDvlHG0Qc\\nwokvPCa45CMXELNRr3IMWeXTo6ygwpeAntigmO+vdRQiTusyNNEujyI60E9DXvyg\\n2YByAC7tGjreO+PcR57qzMExU9T4CXDH2hqorcZbn5S3dsECQQDyGoho+0h/6TXA\\nvXxwIMnnFW6GhW2eW9SYGW1cKb6tcrB/XSJSAcY58VcqKYGUlKiVoFrK3oJ+vmwd\\nQCJuuj+bAkEA4FFEfwgC3eggbDMxU8tVXpUqR84M+e7bDHEjiVYDxVNDJnKF2P4v\\nu7xUQUaswqJADZMp2XYlQ2zfVsXFXmRlhQJAV/+W53m2n2+X7yewrFzupkTe+JxU\\n/MNqIaLUYjR2LztJtfGXQPGOKI91XEjb5bKnGEPB3I1GJ2V1jKg8G70s0wJAfHOa\\nFQBU1tjaZC1iyKKfEoKfmobvHBsw3I5IsQFPxkKTltki+WjNAtNRy4Vyg+mQr/dd\\n2JB7zBSzNGk1P1FkIQJBAOj6kGC/umFxTj0FFcYBBkvR5W/8GR014qUs8QzEuNKz\\n3uXId+haNXsVs9mxD0jdX44RGU6cspsYkVSpUar9ZJs=\\n-----END RSA PRIVATE KEY-----\\n-----BEGIN CERTIFICATE-----\\nMIICrzCCAZcCAQUwDQYJKoZIhvcNAQEFBQAwgYUxCzAJBgNVBAYTAlVTMRcwFQYD\\nVQQIEw5Ob3J0aCBDYXJvbGluYTEQMA4GA1UEBxMHUmFsZWlnaDEQMA4GA1UEChMH\\nS2F0ZWxsbzEUMBIGA1UECxMLU29tZU9yZ1VuaXQxIzAhBgNVBAMTGmthdGVsbG8t\\nZGV2ZWwxLmV4YW1wbGUuY29tMB4XDTE1MDgwNjEyNTcwMloXDTI1MDgwMzEyNTcw\\nMlowOTENMAsGA1UEAxMEdXVpZDEoMCYGCgmSJomT8ixkAQETGDU1YzM1OTllMTE1\\nMTM4NDNhZWI1OTRhODCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA1CQSiDQQ\\nCwU56C4L6ELodwHG7xZKuGdWbfw7txOywJ6FV3/Tvkqx5y3oFaRiVv7zz0R6qvrf\\nYKF6qdZUQzaNdlXVtSqFSktROMfqfm3uhzajbx2pFBTNQaY5C85+KdBwxhJENk4V\\nxQuNyVr2kzHMcoxikkDbY6KhUvLE9cRnMocCAwEAATANBgkqhkiG9w0BAQUFAAOC\\nAQEASytl/BUFzn1uPguOHvJ/qiSP2LH0Bqq63DuSBvfR7S1u3K8PhVo/K+RISoZY\\nfbZE7Y5n789CQi5N1O89ukVwAj/YmxAfA7bNIZ68YuBZunv2XM1SKkw436y4jO6p\\nejZaDilgHkuPHuiUo/OIMwsF8YiXk5pUzGwu4+IRagjszkXAUz97tJv/MPAcb2YZ\\nCR5oRlZ/et8xPVjNRdWWnqb+C+87dZuB1FucxPI2xdCqzOi8tkndCOYjmBXn4+vL\\n2guErDJfy57+g5P3iRyXvflpoRClTHSOZlOOgapVyR1igYw7RaffXZFYfCTJu8VH\\nX03iC3m/LEY9Z1IqpJcle/hgeA==\\n-----END CERTIFICATE-----\"}" http_version: - recorded_at: Thu, 15 May 2014 20:27:56 GMT + recorded_at: Thu, 06 Aug 2015 12:57:02 GMT - request: method: delete - uri: https://centos.installer/pulp/api/v2/consumers/uuid/ + uri: https://katello-devel1.example.com/pulp/api/v2/consumers/uuid/ body: encoding: US-ASCII string: "" @@ -57,7 +57,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="p1XJUPQdHtDl9JY1f2lpGkCduKBrlOMfXgxXg7XhQ4", oauth_signature="XzTe%2BhdUBkZwhqwdGrvASyGh7%2B4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400185676", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="TMgFEwIEJSIxT5eFCwIrlUC2kiLJb3bPueqXUyiQ0", oauth_signature="9ZiYJ4aN%2Bt1MRMiDu7NnIk7yc3Y%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865822", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -68,9 +68,9 @@ http_interactions: message: OK headers: Date: - - Thu, 15 May 2014 20:27:56 GMT + - Thu, 06 Aug 2015 12:57:02 GMT Server: - - Apache/2.2.15 (CentOS) + - Apache/2.4.6 (CentOS) Content-Length: - "4" Connection: @@ -81,5 +81,5 @@ http_interactions: encoding: US-ASCII string: "null" http_version: - recorded_at: Thu, 15 May 2014 20:27:56 GMT -recorded_with: VCR 2.9.0 + recorded_at: Thu, 06 Aug 2015 12:57:02 GMT +recorded_with: VCR 2.9.3 diff --git a/test/fixtures/vcr_cassettes/actions/pulp/node_bindings/bind_node_distributor.yml b/test/fixtures/vcr_cassettes/actions/pulp/node_bindings/bind_node_distributor.yml index 9d9c7f8436f..b7a3224011c 100644 --- a/test/fixtures/vcr_cassettes/actions/pulp/node_bindings/bind_node_distributor.yml +++ b/test/fixtures/vcr_cassettes/actions/pulp/node_bindings/bind_node_distributor.yml @@ -34,28 +34,20 @@ http_interactions: - "2" Vary: - Accept-Encoding - Content-Encoding: - - gzip Content-Length: - - "195" + - "252" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: !binary | - H4sIAAAAAAAAAzWO0QrCMAxFf2UEH5XOTa34Af5GCV2HhZmGNhNl7N9dKr4l - h5Obu0DxGcU/GAe4Ncu6b2CIhSf8OMJn2Bjcw5AyNkfbvK8XdzmBOmG7iywx - 0abQPE0bdFTUz4FTUYmSBCULOGUH+XANzPw8KAD95hNJIHEzRXE+zSTlX8TF - 2gl2qQ5w7u3gW4/taL09tWfE3o7dsa05P6XTv+6Rw6ib4XligxzNqzO1VpSU - YyimM7B+ARPRotX8AAAA - + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"537dc0ca0f7c7405aa37f210\"}, \"id\": \"2\", \"_href\": \"/pulp/api/v2/repositories/2/\"}" http_version: recorded_at: Thu, 22 May 2014 09:18:03 GMT - request: method: get - uri: https://centos.installer/pulp/api/v2/repositories/2/?details=true + uri: https://centos.installer/pulp/api/v2/tasks/c628b185-d616-47ff-86b0-a1de28d9998d/ body: encoding: US-ASCII string: "" @@ -67,7 +59,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="yRScAeb9EbX4w1y81JVlvexikZW9wHEoQ79d4xTbI1U", oauth_signature="mxChTgPfy%2F5bihM8J524iW5OaKY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400750283", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="3oOzyK0xvphPicuAN6geAs13krTFGlwe9Gpd0k3sMM", oauth_signature="zIR8gz%2FBrl7NwOcwmKEWZRp4j7U%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400750283", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -78,38 +70,148 @@ http_interactions: message: OK headers: Date: - - Thu, 22 May 2014 09:18:02 GMT + - Thu, 22 May 2014 09:18:03 GMT Server: - Apache/2.2.15 (Red Hat) Vary: - Accept-Encoding - Content-Encoding: - - gzip Content-Length: - - "428" + - "554" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: !binary | - H4sIAAAAAAAAA7WT224CIRCGX8WQXtag62EbH6Av0RiC7GyXBIHAoN0a372A - h0WvrIm3P3P6vxkOxAvHUXSWN2Q1OhzfR6SR3ireM823EDXyCY1xfDStRz8f - S7ackxQDMU9alEbHEB2UOiWik5uAxvmofh2IA2uYTJVJldKYTg8n+SY6vinu - kdmwUdJ3Q00e3wsVXYCoetFBExQ0lyfIDde3QzDsLZzbaxNHZh2iLRvnmXLA - gbyZU+RiVjdiIvikrUU9nyw4n9VtNZ2TxEYY3crvC6mzM5aLp/cXOG658s9Z - 7sOWCWU0POl4duc4LR2l5mnpZcmr3RJJbvwiJE8fQSLyHIvqnoV1BkEgNMM8 - 6biKhTlQEdUOWHAqVaYIyRvHjpJztD8nF+DIcX2LKGPRsZnPfVnSxslTDrDb - cRIu0yFoZEFLZMIEjf56qFtrHMIj33IILfLuIV7068p8r8Wwr2EzSb9u5UHW - 03vWLWTMpJUKVpTSHXd0v9+fgGZG9NeY4vxuRjz+o/WkvOFMpnPQ5u3ZoCzl - VtJdRXNPGS9IgqcVJcc/8cI5MEcFAAA= - + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/c628b185-d616-47ff-86b0-a1de28d9998d/\", \"task_id\": \"c628b185-d616-47ff-86b0-a1de28d9998d\", \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": \"2014-05-22T09:18:03Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@ft-29.inecas.cz.dq\", \"state\": \"running\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"537dc0cb6e2bc4cc38e16a55\"}, \"id\": \"537dc0cb0f7c7405aa37f217\"}" http_version: recorded_at: Thu, 22 May 2014 09:18:03 GMT +- request: + method: get + uri: https://centos.installer/pulp/api/v2/tasks/c628b185-d616-47ff-86b0-a1de28d9998d/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="eHGpFN6DFgP2mNMXl8F3WSpZAyvvGjp9KWgdMJz5wb8", oauth_signature="%2F0a%2FbYrzn1dfOrgQsijkZ0ZA5IE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400750284", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 22 May 2014 09:18:04 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "595" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/c628b185-d616-47ff-86b0-a1de28d9998d/\", \"task_id\": \"c628b185-d616-47ff-86b0-a1de28d9998d\", \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"finish_time\": \"2014-05-22T09:18:03Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-05-22T09:18:03Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@ft-29.inecas.cz.dq\", \"state\": \"finished\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"537dc0cb6e2bc4cc38e16a55\"}, \"id\": \"537dc0cb0f7c7405aa37f217\"}" + http_version: + recorded_at: Thu, 22 May 2014 09:18:04 GMT +- request: + method: post + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/ + body: + encoding: US-ASCII + string: "{\"id\":\"2\",\"display_name\":\"Fedora 17 x86_64 dev\",\"importer_type_id\":\"yum_importer\",\"importer_config\":{\"feed\":\"file:///var/www/test_repos/zoo\",\"ssl_ca_cert\":null,\"ssl_client_cert\":null,\"ssl_client_key\":null},\"notes\":{\"_repo-type\":\"rpm-repo\"},\"distributors\":[{\"distributor_type_id\":\"yum_distributor\",\"distributor_config\":{\"relative_url\":\"/test_path/\",\"http\":false,\"https\":true,\"protected\":true},\"auto_publish\":true,\"distributor_id\":\"2\"},{\"distributor_type_id\":\"yum_clone_distributor\",\"distributor_config\":{\"destination_distributor_id\":\"2\"},\"auto_publish\":false,\"distributor_id\":\"2_clone\"},{\"distributor_type_id\":\"nodes_http_distributor\",\"distributor_config\":{},\"auto_publish\":true,\"distributor_id\":\"2_nodes\"}]}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="hUMkqRKdzL9GlRIP5CUtq8lrtmmUinmYHit1OOCa44", oauth_signature="vKJ6jCozgsJWdc%2BH9JklFqePXhQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865823", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "707" + User-Agent: + - Ruby + response: + status: + code: 201 + message: Created + headers: + Date: + - Thu, 06 Aug 2015 12:57:03 GMT + Server: + - Apache/2.4.6 (CentOS) + Location: + - "2" + Content-Length: + - "308" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64 dev\", \"description\": null, \"last_unit_added\": null, \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"last_unit_removed\": null, \"content_unit_counts\": {}, \"_ns\": \"repos\", \"_id\": {\"$oid\": \"55c3599f11513843aeb594b1\"}, \"id\": \"2\", \"_href\": \"/pulp/api/v2/repositories/2/\"}" + http_version: + recorded_at: Thu, 06 Aug 2015 12:57:03 GMT +- request: + method: get + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/2/?details=true + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="p16Tti7WN95tmwS1yaxBKt6npGANtPnq3TlLWXediKM", oauth_signature="jSs0rvmr89yEQ1IKii%2Fu0qvPmQU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865823", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 06 Aug 2015 12:57:03 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1407" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64 dev\", \"description\": null, \"distributors\": [{\"repo_id\": \"2\", \"_ns\": \"repo_distributors\", \"last_publish\": null, \"auto_publish\": true, \"scheduled_publishes\": [], \"distributor_type_id\": \"nodes_http_distributor\", \"_id\": {\"$oid\": \"55c3599f11513843aeb594b5\"}, \"config\": {}, \"id\": \"2_nodes\"}, {\"repo_id\": \"2\", \"_ns\": \"repo_distributors\", \"last_publish\": null, \"auto_publish\": false, \"scheduled_publishes\": [], \"distributor_type_id\": \"yum_clone_distributor\", \"_id\": {\"$oid\": \"55c3599f11513843aeb594b4\"}, \"config\": {\"destination_distributor_id\": \"2\"}, \"id\": \"2_clone\"}, {\"repo_id\": \"2\", \"_ns\": \"repo_distributors\", \"last_publish\": null, \"auto_publish\": true, \"scheduled_publishes\": [], \"distributor_type_id\": \"yum_distributor\", \"_id\": {\"$oid\": \"55c3599f11513843aeb594b3\"}, \"config\": {\"protected\": true, \"http\": false, \"relative_url\": \"/test_path/\", \"https\": true}, \"id\": \"2\"}], \"last_unit_added\": null, \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"last_unit_removed\": null, \"content_unit_counts\": {}, \"_ns\": \"repos\", \"importers\": [{\"repo_id\": \"2\", \"_ns\": \"repo_importers\", \"importer_type_id\": \"yum_importer\", \"last_sync\": null, \"scheduled_syncs\": [], \"_id\": {\"$oid\": \"55c3599f11513843aeb594b2\"}, \"config\": {\"feed\": \"file:///var/www/test_repos/zoo\"}, \"id\": \"yum_importer\"}], \"_id\": {\"$oid\": \"55c3599f11513843aeb594b1\"}, \"id\": \"2\", \"_href\": \"/pulp/api/v2/repositories/2/\"}" + http_version: + recorded_at: Thu, 06 Aug 2015 12:57:03 GMT - request: method: delete - uri: https://centos.installer/pulp/api/v2/repositories/2/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/2/ body: encoding: US-ASCII string: "" @@ -121,7 +223,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="c41wOiVpWcN9a9jwbw01BJXlTDezNUuCGOgDe2qAw", oauth_signature="HBaD5FxmeuLyXQafxm7V%2B0L3GU8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400750283", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="AEL9GTqBqFNwiCjO3DMEUH1pfq7mqDd8vPhleUGUCY", oauth_signature="AfGroQn%2FJTnRyPJ1axqMdAiCe%2BQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865823", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -132,9 +234,9 @@ http_interactions: message: Accepted headers: Date: - - Thu, 22 May 2014 09:18:02 GMT + - Thu, 06 Aug 2015 12:57:03 GMT Server: - - Apache/2.2.15 (Red Hat) + - Apache/2.4.6 (CentOS) Content-Encoding: - utf-8 Content-Length: @@ -145,12 +247,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/c628b185-d616-47ff-86b0-a1de28d9998d/\", \"task_id\": \"c628b185-d616-47ff-86b0-a1de28d9998d\"}], \"result\": null, \"error\": null}" + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/f43a5cd4-bbad-464e-b243-72ed78da468a/\", \"task_id\": \"f43a5cd4-bbad-464e-b243-72ed78da468a\"}], \"result\": null, \"error\": null}" http_version: - recorded_at: Thu, 22 May 2014 09:18:03 GMT + recorded_at: Thu, 06 Aug 2015 12:57:03 GMT - request: method: get - uri: https://centos.installer/pulp/api/v2/tasks/c628b185-d616-47ff-86b0-a1de28d9998d/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/f43a5cd4-bbad-464e-b243-72ed78da468a/ body: encoding: US-ASCII string: "" @@ -162,7 +264,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="3oOzyK0xvphPicuAN6geAs13krTFGlwe9Gpd0k3sMM", oauth_signature="zIR8gz%2FBrl7NwOcwmKEWZRp4j7U%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400750283", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="TEfCo0pFQWkps4MOuj8w2uIqyqqHheuHpzlnI4CScbw", oauth_signature="BO9SWLdMEQYmyyinDXSDyD%2BAs4k%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865823", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -173,36 +275,23 @@ http_interactions: message: OK headers: Date: - - Thu, 22 May 2014 09:18:03 GMT + - Thu, 06 Aug 2015 12:57:03 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding - Content-Encoding: - - gzip + - Apache/2.4.6 (CentOS) Content-Length: - - "338" + - "519" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: !binary | - H4sIAAAAAAAAA42Qz1LDIBCHX8VhPEoC5H9OPoQnHSdDYNMyjYQCaa2dvruQ - 2InePPLb/dhv94rgU4DxatKofdDzOD49IM/dofMXAyFCZh5N4sCewCax4BIL - ZnLKT/aSSBjBAwpMt7cwxP40Aik3Kj2xdAFSUbK6p3WBZUlLnFfDgOuyJ5hT - CayWTdPUMkX3wUrGb/7DrMjOhf63xbPd1FoWq0vIRVyv/XF9D/GgtHL7zqsP - 2LZ2nlt/zxAjNMekwIy9kKaldUuy12We5QJ6Lg6/QMPPGmS3LBtd4ghjp50F - 57qoZH2Ir7cQH2eYl/9DLd5UhrqbZiugO0/2ABbT58Fj1iRKg+AuEV+JPKJV - z6/krLXSu5gFdh79ZgLWTnZ7rqe8osdpvWmRVVIQ0ZfAepELkdVAS14UKJr9 - bSFDJaqcFJxn1cBohW7fcL9YGioCAAA= - + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/f43a5cd4-bbad-464e-b243-72ed78da468a/\", \"task_id\": \"f43a5cd4-bbad-464e-b243-72ed78da468a\", \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c3599f7164df9aa32ab939\"}, \"id\": \"55c3599f11513843aeb594b8\"}" http_version: - recorded_at: Thu, 22 May 2014 09:18:03 GMT + recorded_at: Thu, 06 Aug 2015 12:57:03 GMT - request: method: get - uri: https://centos.installer/pulp/api/v2/tasks/c628b185-d616-47ff-86b0-a1de28d9998d/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/f43a5cd4-bbad-464e-b243-72ed78da468a/ body: encoding: US-ASCII string: "" @@ -214,7 +303,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="eHGpFN6DFgP2mNMXl8F3WSpZAyvvGjp9KWgdMJz5wb8", oauth_signature="%2F0a%2FbYrzn1dfOrgQsijkZ0ZA5IE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400750284", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="RZIRj3o3oYowc1akliwDs96gB4av0NjMySMk7Lj5n0", oauth_signature="E4iEYXbweQnBDBDN1iFIr9OhQms%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865823", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -225,31 +314,18 @@ http_interactions: message: OK headers: Date: - - Thu, 22 May 2014 09:18:04 GMT + - Thu, 06 Aug 2015 12:57:04 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding - Content-Encoding: - - gzip + - Apache/2.4.6 (CentOS) Content-Length: - - "348" + - "678" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: !binary | - H4sIAAAAAAAAA42QzW7DIBCEXyVCPRYb8L9PfYieWlUWhnWD4toEcNI0yrsX - cCqrp/Zmz+ws384VwacA7dQ8oXY3LeP4uEOO20PnLhq8hPQy6sSCOYFJgmET - A3q2ys3mkkgYwQHymW5vYAjzaQikXKv0xNIYSEXJ6p7WBZYlLXFeDQOuy55g - TiWwWjZNU8sU/TysZFjzn8waebd+/jVythtay4IbRS7Cee2d9c3Lg5qU3XdO - fcQTGaE5JgVm7Jk0La1bkr3Em6aweqWyjrvFBtV/Gfdn1hkuoOfisNVqNT9P - ILtYSmAOKNrM7was7QK6cV6+3rx8XGCJ+70Xupfet/NiBHTn2RzAYPo0OMya - RE0guE3EVyKPdzwXk+uREFvy4WV0GwoYM5vtd+38ih7mtfwiq6Qgoi+B9SIX - IquBlrwoUED7PUKGSlQ5KTjPqoHRCt2+AeSryU9TAgAA - + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/f43a5cd4-bbad-464e-b243-72ed78da468a/\", \"task_id\": \"f43a5cd4-bbad-464e-b243-72ed78da468a\", \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"finish_time\": \"2015-08-06T12:57:03Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-06T12:57:03Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c3599f7164df9aa32ab939\"}, \"id\": \"55c3599f1151384439db7c05\"}" http_version: - recorded_at: Thu, 22 May 2014 09:18:04 GMT -recorded_with: VCR 2.9.0 + recorded_at: Thu, 06 Aug 2015 12:57:04 GMT +recorded_with: VCR 2.9.3 diff --git a/test/fixtures/vcr_cassettes/actions/pulp/node_bindings/unbind_node_distributor.yml b/test/fixtures/vcr_cassettes/actions/pulp/node_bindings/unbind_node_distributor.yml index a599c898239..ec900c04146 100644 --- a/test/fixtures/vcr_cassettes/actions/pulp/node_bindings/unbind_node_distributor.yml +++ b/test/fixtures/vcr_cassettes/actions/pulp/node_bindings/unbind_node_distributor.yml @@ -34,28 +34,20 @@ http_interactions: - "2" Vary: - Accept-Encoding - Content-Encoding: - - gzip Content-Length: - - "194" + - "252" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: !binary | - H4sIAAAAAAAAAzWO0QrCMAxFf2UEH5XOTa34Af5GCV2HhZmGNhNl7N9dKr4l - h5Obu0DxGcU/GAe4Ncu6b2CIhSf8OMJn2Bjcw5AyNkfbvK8XdzmBOmG7iywx - 0abQPE0bdFTUz4FTUYmSBCULOGUH+XANzPw8KAD95hNJIHEzRXE+zSTlX8TF - 2gl2qQ5w7u3gW+/b0Xp7as+IvR27I9acn9LpX/fIYdTN8DyxQY7m1ZlaK0rK - MRTTGVi/WLTwRfwAAAA= - + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"537dc0cc0f7c7405aa37f21a\"}, \"id\": \"2\", \"_href\": \"/pulp/api/v2/repositories/2/\"}" http_version: recorded_at: Thu, 22 May 2014 09:18:04 GMT - request: method: get - uri: https://centos.installer/pulp/api/v2/repositories/2/?details=true + uri: https://centos.installer/pulp/api/v2/tasks/bef0ccf5-16ec-4419-ab6b-48f828968949/ body: encoding: US-ASCII string: "" @@ -67,7 +59,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="ehgOEyK5Zhjo8Ny8wqcS603NtbagWmA0YrFgXWhT060", oauth_signature="GVsxbpHYXLccqn2uuYT8MCl8hco%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400750284", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="rnYZR6Cc4VXItbPQZgT2gVMGFnA843zFD8te6Dg", oauth_signature="z5HO8qOc5Sgpo1sM1JdTEC%2Fumks%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400750285", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -78,38 +70,148 @@ http_interactions: message: OK headers: Date: - - Thu, 22 May 2014 09:18:04 GMT + - Thu, 22 May 2014 09:18:05 GMT Server: - Apache/2.2.15 (Red Hat) Vary: - Accept-Encoding - Content-Encoding: - - gzip Content-Length: - - "427" + - "554" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: !binary | - H4sIAAAAAAAAA7WT224CIRCGX8WQXtbgeRsfoC/RGILsbJcEgcCg3W589wIe - Fr2yJt7+zOn/ZuiJF46jaC2vyXrUH99HpJbeKt4xzXcQNfIJtXF8NK1GPx8r - tlqQFAMxT1qURscQHZQ6JaKT24DG+ah+9cSBNUymymSW0phODyf5Jjq+Ke6R - 2bBV0rdDTR7fCxVdgKh60UIdFNSXJ8gNN7dDMOwsnNtrE0dmLaItG+eZckBP - 3swpcjmvajERYtJUolpMlpzPq2Y2BZLYCKMb+X0hdXbGcvH0/gLHDVf+Octd - 2DGhjIYnHdd3jtPSUWqell6WvNotkeTGL0Ly9BEkIs+xEPcsrDMIAqEe5knH - VSzMgYqo9sCCU6kyRUjeOLaUnKP9ObkAR46bW0QZi47NfO7LkjZOnnKA3Y2T - cJkOQSMLWiITJmj010PdWeMQHvmWQ2iRdw/xol9X5jsthn0Nm0n6dSsPst7e - s24gYyaNVLCmlO65o4fD4QQ0M6K/xhTndzPi8R+teXnDmUzroMnbs0FZyq2k - +xnNPWW8IAmezig5/gGG2t2LRwUAAA== - + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/bef0ccf5-16ec-4419-ab6b-48f828968949/\", \"task_id\": \"bef0ccf5-16ec-4419-ab6b-48f828968949\", \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": \"2014-05-22T09:18:05Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@ft-29.inecas.cz.dq\", \"state\": \"running\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"537dc0cd6e2bc4cc38e16a56\"}, \"id\": \"537dc0cd0f7c7405aa37f221\"}" http_version: - recorded_at: Thu, 22 May 2014 09:18:04 GMT + recorded_at: Thu, 22 May 2014 09:18:05 GMT +- request: + method: get + uri: https://centos.installer/pulp/api/v2/tasks/bef0ccf5-16ec-4419-ab6b-48f828968949/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="j1e3l8XwwJoxeYluzqYRmY7RQ4cTGzSTB9vOAWQx6o", oauth_signature="%2FO0FuhE2IEg39TWlRPGDHUwin4g%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400750285", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 22 May 2014 09:18:05 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "595" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/bef0ccf5-16ec-4419-ab6b-48f828968949/\", \"task_id\": \"bef0ccf5-16ec-4419-ab6b-48f828968949\", \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"finish_time\": \"2014-05-22T09:18:05Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-05-22T09:18:05Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@ft-29.inecas.cz.dq\", \"state\": \"finished\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"537dc0cd6e2bc4cc38e16a56\"}, \"id\": \"537dc0cd0f7c7405aa37f221\"}" + http_version: + recorded_at: Thu, 22 May 2014 09:18:06 GMT +- request: + method: post + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/ + body: + encoding: US-ASCII + string: "{\"id\":\"2\",\"display_name\":\"Fedora 17 x86_64 dev\",\"importer_type_id\":\"yum_importer\",\"importer_config\":{\"feed\":\"file:///var/www/test_repos/zoo\",\"ssl_ca_cert\":null,\"ssl_client_cert\":null,\"ssl_client_key\":null},\"notes\":{\"_repo-type\":\"rpm-repo\"},\"distributors\":[{\"distributor_type_id\":\"yum_distributor\",\"distributor_config\":{\"relative_url\":\"/test_path/\",\"http\":false,\"https\":true,\"protected\":true},\"auto_publish\":true,\"distributor_id\":\"2\"},{\"distributor_type_id\":\"yum_clone_distributor\",\"distributor_config\":{\"destination_distributor_id\":\"2\"},\"auto_publish\":false,\"distributor_id\":\"2_clone\"},{\"distributor_type_id\":\"nodes_http_distributor\",\"distributor_config\":{},\"auto_publish\":true,\"distributor_id\":\"2_nodes\"}]}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="nTosAVVJEzdquLrb5GEf2TNXiZKzdhiYSi5ZAR5Ic", oauth_signature="sibJvxLBzzVNlzfUQOLbkEJx%2BxI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865824", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "707" + User-Agent: + - Ruby + response: + status: + code: 201 + message: Created + headers: + Date: + - Thu, 06 Aug 2015 12:57:04 GMT + Server: + - Apache/2.4.6 (CentOS) + Location: + - "2" + Content-Length: + - "308" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64 dev\", \"description\": null, \"last_unit_added\": null, \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"last_unit_removed\": null, \"content_unit_counts\": {}, \"_ns\": \"repos\", \"_id\": {\"$oid\": \"55c359a011513843aeb594bd\"}, \"id\": \"2\", \"_href\": \"/pulp/api/v2/repositories/2/\"}" + http_version: + recorded_at: Thu, 06 Aug 2015 12:57:04 GMT +- request: + method: get + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/2/?details=true + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="FWqNzhfQy3Hbzk7mrJyXAUz0bcn6fb2SWUwQm7Sd3yM", oauth_signature="w8Q%2BsIikRlN3TSDUA9dI1uU0kyE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865824", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 06 Aug 2015 12:57:04 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1407" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64 dev\", \"description\": null, \"distributors\": [{\"repo_id\": \"2\", \"_ns\": \"repo_distributors\", \"last_publish\": null, \"auto_publish\": true, \"scheduled_publishes\": [], \"distributor_type_id\": \"nodes_http_distributor\", \"_id\": {\"$oid\": \"55c359a011513843aeb594c1\"}, \"config\": {}, \"id\": \"2_nodes\"}, {\"repo_id\": \"2\", \"_ns\": \"repo_distributors\", \"last_publish\": null, \"auto_publish\": false, \"scheduled_publishes\": [], \"distributor_type_id\": \"yum_clone_distributor\", \"_id\": {\"$oid\": \"55c359a011513843aeb594c0\"}, \"config\": {\"destination_distributor_id\": \"2\"}, \"id\": \"2_clone\"}, {\"repo_id\": \"2\", \"_ns\": \"repo_distributors\", \"last_publish\": null, \"auto_publish\": true, \"scheduled_publishes\": [], \"distributor_type_id\": \"yum_distributor\", \"_id\": {\"$oid\": \"55c359a011513843aeb594bf\"}, \"config\": {\"protected\": true, \"http\": false, \"relative_url\": \"/test_path/\", \"https\": true}, \"id\": \"2\"}], \"last_unit_added\": null, \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"last_unit_removed\": null, \"content_unit_counts\": {}, \"_ns\": \"repos\", \"importers\": [{\"repo_id\": \"2\", \"_ns\": \"repo_importers\", \"importer_type_id\": \"yum_importer\", \"last_sync\": null, \"scheduled_syncs\": [], \"_id\": {\"$oid\": \"55c359a011513843aeb594be\"}, \"config\": {\"feed\": \"file:///var/www/test_repos/zoo\"}, \"id\": \"yum_importer\"}], \"_id\": {\"$oid\": \"55c359a011513843aeb594bd\"}, \"id\": \"2\", \"_href\": \"/pulp/api/v2/repositories/2/\"}" + http_version: + recorded_at: Thu, 06 Aug 2015 12:57:04 GMT - request: method: delete - uri: https://centos.installer/pulp/api/v2/repositories/2/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/2/ body: encoding: US-ASCII string: "" @@ -121,7 +223,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="a9J1tzaPVLwV36qYxAgC9HiqHvgxkj1eK1S3teRc", oauth_signature="aoAoM6cs7qhrw%2F3rcS%2FQQF8YX2U%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400750284", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="rEasHre0i18K03DfgslUv0hUz4swSLC6HYWEFs5HMY", oauth_signature="vIc6b2rT3L5lIMI0Zvl3hH7Hw2s%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865824", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -132,9 +234,9 @@ http_interactions: message: Accepted headers: Date: - - Thu, 22 May 2014 09:18:04 GMT + - Thu, 06 Aug 2015 12:57:04 GMT Server: - - Apache/2.2.15 (Red Hat) + - Apache/2.4.6 (CentOS) Content-Encoding: - utf-8 Content-Length: @@ -145,12 +247,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/bef0ccf5-16ec-4419-ab6b-48f828968949/\", \"task_id\": \"bef0ccf5-16ec-4419-ab6b-48f828968949\"}], \"result\": null, \"error\": null}" + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/da840430-4f39-486e-b229-a2bc6a4dd1b7/\", \"task_id\": \"da840430-4f39-486e-b229-a2bc6a4dd1b7\"}], \"result\": null, \"error\": null}" http_version: - recorded_at: Thu, 22 May 2014 09:18:05 GMT + recorded_at: Thu, 06 Aug 2015 12:57:04 GMT - request: method: get - uri: https://centos.installer/pulp/api/v2/tasks/bef0ccf5-16ec-4419-ab6b-48f828968949/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/da840430-4f39-486e-b229-a2bc6a4dd1b7/ body: encoding: US-ASCII string: "" @@ -162,7 +264,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="rnYZR6Cc4VXItbPQZgT2gVMGFnA843zFD8te6Dg", oauth_signature="z5HO8qOc5Sgpo1sM1JdTEC%2Fumks%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400750285", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="jfN7dPA1rxEUTpuH5zanhgFuyd5rqQML7dWiDblSM", oauth_signature="DvThx8shbYcTp%2BCHNfQSUkkZJdI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865824", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -173,36 +275,23 @@ http_interactions: message: OK headers: Date: - - Thu, 22 May 2014 09:18:05 GMT + - Thu, 06 Aug 2015 12:57:04 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding - Content-Encoding: - - gzip + - Apache/2.4.6 (CentOS) Content-Length: - - "339" + - "519" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: !binary | - H4sIAAAAAAAAA42QwVKDMBCGX8XJeDQQUqDAyYfwpOMwYdm0mWJIk9BaO313 - E7CD3jzm3/2y3+6V4Ceg8WrUpHnQ0zA8PRAv3KH1F4MhImYaTOLQntAmseAS - i2Z0yo/2kvQ4oEcSmHZvUcb+NAKpMCo98XQG0g4lA5AFzUoEmudZTUVXdjSv - ZMWruqzqvE7JfbDq4zf/YRZk50L/2+zZrGoNj9U5FBDXa35c30MslVZu33r1 - gevWzgvr7xnhLMspKyjnL6xusqphxes8zwrATsDhF2jEWWPfzstGlzjC2HFn - 0bk2Klkf4ustxMcJp/n/UIs37UPdjZMFbM+jPaCl2bP0lNeJ0gjCJfCV9Eey - 6PmFnLRWehezwE6DX03Q2tGuz+WUV/I4LjctNtseGPQl8g5ygE2FWSmKkkSz - vy1MbmGbs0KIzVZynpHbN1GTxDkqAgAA - + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/da840430-4f39-486e-b229-a2bc6a4dd1b7/\", \"task_id\": \"da840430-4f39-486e-b229-a2bc6a4dd1b7\", \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c359a07164df9aa32ab93d\"}, \"id\": \"55c359a011513843aeb594c4\"}" http_version: - recorded_at: Thu, 22 May 2014 09:18:05 GMT + recorded_at: Thu, 06 Aug 2015 12:57:04 GMT - request: method: get - uri: https://centos.installer/pulp/api/v2/tasks/bef0ccf5-16ec-4419-ab6b-48f828968949/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/da840430-4f39-486e-b229-a2bc6a4dd1b7/ body: encoding: US-ASCII string: "" @@ -214,7 +303,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="j1e3l8XwwJoxeYluzqYRmY7RQ4cTGzSTB9vOAWQx6o", oauth_signature="%2FO0FuhE2IEg39TWlRPGDHUwin4g%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1400750285", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="se04yo2zNc1J3wh1brmwBcMq3y3GAw2Fn9e8Ww7gBBM", oauth_signature="UrzZTzAUN1oQOqBAdwgKkGSuj98%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438865825", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -225,31 +314,18 @@ http_interactions: message: OK headers: Date: - - Thu, 22 May 2014 09:18:05 GMT + - Thu, 06 Aug 2015 12:57:05 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding - Content-Encoding: - - gzip + - Apache/2.4.6 (CentOS) Content-Length: - - "348" + - "678" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: !binary | - H4sIAAAAAAAAA42QwXKDIBRFfyXDdFkUiRp11Y/oqp2Og/BomFghgEnTTP69 - gOk4XbU7vffdx3n3iuCTg/FKT6jbTPM4Pm6QZ+7Q+4uBICEzjyZzYE9gs2i4 - zILRTnltL5mAETygkOn3FmScz2MgZ0blJ5qnQD6AJJzLChc1cFyWRYvZUA+4 - bGRDm7Zu2rLN0c/DSsQ1/8kskXcX5l8TZ7eidTS6SWQ8ntfdWd+CLNWk3L73 - 6iOdSElRYlJhSp9J2xVNR6qXdNMUVy9UzjM/u6iGL+v/zHrLOAyMH9ZanWHn - CUSfSonMEcVY/W7BuT6iWx/k6y3IxxnmtD94sXsRfKdny6E/a3sAi4sn6TFt - MzUBZy7jX5k43vF8Si5HgohiCM+jX1HAWm3X36XzK3rQS/nVdic44aIGOvCS - 820DRc2qGkW03yNE7viuJBVj252ktEC3b8qVYaNTAgAA - + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/da840430-4f39-486e-b229-a2bc6a4dd1b7/\", \"task_id\": \"da840430-4f39-486e-b229-a2bc6a4dd1b7\", \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"finish_time\": \"2015-08-06T12:57:05Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-06T12:57:05Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c359a07164df9aa32ab93d\"}, \"id\": \"55c359a01151384439db7c0c\"}" http_version: - recorded_at: Thu, 22 May 2014 09:18:06 GMT -recorded_with: VCR 2.9.0 + recorded_at: Thu, 06 Aug 2015 12:57:05 GMT +recorded_with: VCR 2.9.3 diff --git a/test/fixtures/vcr_cassettes/pulp/content/package_group.yml b/test/fixtures/vcr_cassettes/pulp/content/package_group.yml new file mode 100644 index 00000000000..ba5315e1289 --- /dev/null +++ b/test/fixtures/vcr_cassettes/pulp/content/package_group.yml @@ -0,0 +1,10114 @@ +--- +http_interactions: +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/fa171e7d-789a-4667-a9b9-72f3f2b2dec7/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="CTvpKEC1HWlkrZ58ZWfIPOSOPo8qKrlm5T8y1j22BRM", oauth_signature="mV%2BYUZCooFwIX35RcHC2Xxnhzps%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847505", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:31:45 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/fa171e7d-789a-4667-a9b9-72f3f2b2dec7/\", \"task_id\": \"fa171e7d-789a-4667-a9b9-72f3f2b2dec7\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954b5140d2f2ca6ffdb0fd\"}, \"id\": \"55954b5117f25e4ab6c141f0\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:31:45 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/fa171e7d-789a-4667-a9b9-72f3f2b2dec7/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="F9tzdmzBlPDobqtkpIEuZmBv1juy2EVX5gfwsNwONo", oauth_signature="7cEzg7knfqOLBGBE8tehCN2VRvo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847506", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:31:46 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/fa171e7d-789a-4667-a9b9-72f3f2b2dec7/\", \"task_id\": \"fa171e7d-789a-4667-a9b9-72f3f2b2dec7\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T14:31:46Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:31:46Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/679a5083-b8b5-40b5-b778-598c044fbd29/\", \"task_id\": \"679a5083-b8b5-40b5-b778-598c044fbd29\"}, {\"_href\": \"/pulp/api/v2/tasks/3b870e45-4ad9-4b43-8dcc-1519302521ac/\", \"task_id\": \"3b870e45-4ad9-4b43-8dcc-1519302521ac\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T14:31:46Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T14:31:46Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 4, \"error_message\": null, \"updated_count\": 11, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55954b5217f25e08ebfcfd07\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954b5140d2f2ca6ffdb0fd\"}, \"id\": \"55954b5217f25e08fb447f1f\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:31:46 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/679a5083-b8b5-40b5-b778-598c044fbd29/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="dAGdAjVWNv4YpNUvePjvUUbhnjVngD92t0wanYBrqU", oauth_signature="s9qj9ukjCC1XOI6jVbAilWxS97g%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847506", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:31:46 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "658" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/679a5083-b8b5-40b5-b778-598c044fbd29/\", \"task_id\": \"679a5083-b8b5-40b5-b778-598c044fbd29\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": null, \"start_time\": \"2015-07-02T14:31:46Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"running\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954b5240d2f2ca6ffdb10a\"}, \"id\": \"55954b5217f25e08fb447f26\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:31:46 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/3b870e45-4ad9-4b43-8dcc-1519302521ac/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="73g3HyAkkpH5ltc5ILhTXQ9MG3rAgROhRqttlPlw", oauth_signature="EGkGf0x%2B2GJ7ORvRnKMo%2F%2FMJvTA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847506", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:31:46 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "640" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/3b870e45-4ad9-4b43-8dcc-1519302521ac/\", \"task_id\": \"3b870e45-4ad9-4b43-8dcc-1519302521ac\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954b5240d2f2ca6ffdb10b\"}, \"id\": \"55954b5217f25e08fb447f2a\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:31:46 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/fa171e7d-789a-4667-a9b9-72f3f2b2dec7/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="E0Ncua7NyUG91pKXxP0HSV7UZkyf02nXcs6qnkzw", oauth_signature="JJicRQLDNY8XvVVYgBpctbfoKak%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847507", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:31:47 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/fa171e7d-789a-4667-a9b9-72f3f2b2dec7/\", \"task_id\": \"fa171e7d-789a-4667-a9b9-72f3f2b2dec7\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T14:31:46Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:31:46Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/679a5083-b8b5-40b5-b778-598c044fbd29/\", \"task_id\": \"679a5083-b8b5-40b5-b778-598c044fbd29\"}, {\"_href\": \"/pulp/api/v2/tasks/3b870e45-4ad9-4b43-8dcc-1519302521ac/\", \"task_id\": \"3b870e45-4ad9-4b43-8dcc-1519302521ac\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T14:31:46Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T14:31:46Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 4, \"error_message\": null, \"updated_count\": 11, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55954b5217f25e08ebfcfd07\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954b5140d2f2ca6ffdb0fd\"}, \"id\": \"55954b5217f25e08fb447f1f\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:31:47 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/679a5083-b8b5-40b5-b778-598c044fbd29/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="bNqvpsFXYHU7PoY4VV8FlWY9wtLBrkWWsWhdag3uCo", oauth_signature="Q0itl6nxsuhaJ14BZPn4NRldnvo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847507", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:31:47 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/679a5083-b8b5-40b5-b778-598c044fbd29/\", \"task_id\": \"679a5083-b8b5-40b5-b778-598c044fbd29\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:31:46Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:31:46Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:31:46Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:31:46Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55954b5217f25e08ebfcfd0a\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954b5240d2f2ca6ffdb10a\"}, \"id\": \"55954b5217f25e08fb447f26\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:31:47 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/3b870e45-4ad9-4b43-8dcc-1519302521ac/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Kho7wxL7z9kUeyrd837VjuDqsb7rQdjoMuzYy7DDhtw", oauth_signature="NPuUxrmJd4y302Jh%2FOHZej9uSOw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847507", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:31:47 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/3b870e45-4ad9-4b43-8dcc-1519302521ac/\", \"task_id\": \"3b870e45-4ad9-4b43-8dcc-1519302521ac\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:31:46Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:31:46Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"bae16624-7797-4028-80ad-b0fd0dccdf82\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"19441787-2f7e-4d18-9d44-ad0d01f822c5\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"33db0cf6-09b1-49bc-abe5-32a054ce6010\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"62a24adc-c51b-4e90-bb3e-d5dc478ec655\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b7fe7ac3-b2e4-4973-80b4-c82899984980\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"95c88612-310e-47b0-879c-dad6aed1f6f7\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"bb472451-3f60-4005-9741-4e4e652d3b7b\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9e882e4c-f58b-448c-ac79-ba0dedd22baf\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8e56295e-3437-4f42-b789-82878740307e\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"93ad2c32-1cd5-4288-b5d6-20152ab40edd\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"271cf571-e0d2-40c9-9688-5dcfc1094686\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:31:46Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:31:46Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"bae16624-7797-4028-80ad-b0fd0dccdf82\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"19441787-2f7e-4d18-9d44-ad0d01f822c5\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"33db0cf6-09b1-49bc-abe5-32a054ce6010\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"62a24adc-c51b-4e90-bb3e-d5dc478ec655\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b7fe7ac3-b2e4-4973-80b4-c82899984980\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"95c88612-310e-47b0-879c-dad6aed1f6f7\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"bb472451-3f60-4005-9741-4e4e652d3b7b\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9e882e4c-f58b-448c-ac79-ba0dedd22baf\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8e56295e-3437-4f42-b789-82878740307e\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"93ad2c32-1cd5-4288-b5d6-20152ab40edd\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"271cf571-e0d2-40c9-9688-5dcfc1094686\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"55954b5217f25e08ebfcfd12\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954b5240d2f2ca6ffdb10b\"}, \"id\": \"55954b5217f25e08fb447f2a\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:31:47 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/447692b1-7198-484c-88b6-39766ea99cb4/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="dKziwpizEmHhbn4Y9JgiGrINv5u5ccNCSagkMySqaM", oauth_signature="YHoQreVYZsRUBXlIQ%2F2ILgmejBY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847507", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:31:47 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/447692b1-7198-484c-88b6-39766ea99cb4/\", \"task_id\": \"447692b1-7198-484c-88b6-39766ea99cb4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954b5340d2f2ca6ffdb115\"}, \"id\": \"55954b5317f25e4ab6c14205\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:31:47 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/447692b1-7198-484c-88b6-39766ea99cb4/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="WIqin9fdfhH6ltwbfxVpXj0MBaUq3sgLUzMnUI3zI", oauth_signature="QJUvSBtBxoSH16v6Zmtfqqo%2FN84%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847508", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:31:48 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/447692b1-7198-484c-88b6-39766ea99cb4/\", \"task_id\": \"447692b1-7198-484c-88b6-39766ea99cb4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T14:31:47Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:31:47Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954b5340d2f2ca6ffdb115\"}, \"id\": \"55954b5317f25e08fb447f31\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:31:48 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/2c51c71f-75a9-4a48-987a-52bc5879c392/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="HQsMtRR6OUkMqJGpOPzgube88IyiQlxfkV3eE8i1c", oauth_signature="BjG8ee0gGW9PO7d5wEVAjVL%2FIFM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847763", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:36:03 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/2c51c71f-75a9-4a48-987a-52bc5879c392/\", \"task_id\": \"2c51c71f-75a9-4a48-987a-52bc5879c392\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954c5340d2f2ca6ffdb120\"}, \"id\": \"55954c5317f25e4ab6c1421c\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:36:03 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/2c51c71f-75a9-4a48-987a-52bc5879c392/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="8MX8EyQWJaU5VicfqWIEf9R3h44ZkNm1jbeb9opcyA", oauth_signature="Kh4OftzjN2qkiMpPYGLuA96ZjI0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847764", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:36:04 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/2c51c71f-75a9-4a48-987a-52bc5879c392/\", \"task_id\": \"2c51c71f-75a9-4a48-987a-52bc5879c392\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T14:36:03Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:36:03Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/5832469d-db05-4318-a86d-bcc5f9946c22/\", \"task_id\": \"5832469d-db05-4318-a86d-bcc5f9946c22\"}, {\"_href\": \"/pulp/api/v2/tasks/fac0da75-4b72-4ed1-b5f5-8075a974e625/\", \"task_id\": \"fac0da75-4b72-4ed1-b5f5-8075a974e625\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T14:36:03Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T14:36:03Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55954c5317f25e08ebfcfd25\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954c5340d2f2ca6ffdb120\"}, \"id\": \"55954c5317f25e08fb447f38\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:36:04 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/5832469d-db05-4318-a86d-bcc5f9946c22/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="vzEGsXDP4rfFiSzvxJZFOvwCIXearmQmrmafanyMBdI", oauth_signature="DHIZoGfKr2Rq1jGSgvN9ZHXiQEM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847764", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:36:04 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/5832469d-db05-4318-a86d-bcc5f9946c22/\", \"task_id\": \"5832469d-db05-4318-a86d-bcc5f9946c22\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:36:03Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:36:03Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:36:03Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:36:03Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55954c5317f25e08ebfcfd28\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954c5340d2f2ca6ffdb122\"}, \"id\": \"55954c5317f25e08fb447f3f\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:36:04 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/fac0da75-4b72-4ed1-b5f5-8075a974e625/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="H5ym6F0P1awtypN0OSPCHtEHEKhfAFYeOajB8OQDJk", oauth_signature="DPk%2BzPurCyV9lJ%2BK078Epgt3KY4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847764", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:36:04 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/fac0da75-4b72-4ed1-b5f5-8075a974e625/\", \"task_id\": \"fac0da75-4b72-4ed1-b5f5-8075a974e625\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:36:03Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:36:03Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"21a59aa8-e37f-43fe-9579-05c8d831d93f\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"737b797f-d0ed-4d4c-af07-e4a9cef8cfa2\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"14e3fbaa-6f98-40be-aa45-13af9562741a\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b3e5b79b-c609-444e-b2eb-1a6e39cbd86c\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"93982858-99f7-41ca-b455-cd8f7f93fac1\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"7d4b9a44-7d85-4bb0-81a5-961954da6934\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"77048c40-f8ec-41c7-b14e-048ee41fd135\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"ecffe72e-05eb-4cdd-aba9-b39ffe8c8351\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d4de4db7-1dae-43a9-ad16-d97bddad4941\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f7059874-efde-42a5-9b5d-e46a8f5b9056\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3ca5bc06-87f8-4c53-9ea7-24296608ce48\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:36:03Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:36:03Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"21a59aa8-e37f-43fe-9579-05c8d831d93f\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"737b797f-d0ed-4d4c-af07-e4a9cef8cfa2\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"14e3fbaa-6f98-40be-aa45-13af9562741a\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b3e5b79b-c609-444e-b2eb-1a6e39cbd86c\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"93982858-99f7-41ca-b455-cd8f7f93fac1\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"7d4b9a44-7d85-4bb0-81a5-961954da6934\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"77048c40-f8ec-41c7-b14e-048ee41fd135\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"ecffe72e-05eb-4cdd-aba9-b39ffe8c8351\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d4de4db7-1dae-43a9-ad16-d97bddad4941\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f7059874-efde-42a5-9b5d-e46a8f5b9056\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3ca5bc06-87f8-4c53-9ea7-24296608ce48\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"55954c5317f25e08ebfcfd30\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954c5340d2f2ca6ffdb123\"}, \"id\": \"55954c5317f25e08fb447f43\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:36:04 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/a7ae2b2e-f68a-44df-9091-cb6e3a82404b/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="BW9vpyLKlU2avJdHhTMoR0oDkqPxU5unm69SYENNJw", oauth_signature="bEA1%2B76a2ltaPoDgBihfcjxUyT4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847764", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:36:04 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/a7ae2b2e-f68a-44df-9091-cb6e3a82404b/\", \"task_id\": \"a7ae2b2e-f68a-44df-9091-cb6e3a82404b\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954c5440d2f2ca6ffdb12c\"}, \"id\": \"55954c5417f25e4ab6c1422b\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:36:04 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/a7ae2b2e-f68a-44df-9091-cb6e3a82404b/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="fngrJrKGob1k2reTpI59Gdy8uMQjdsWT9m9dYm0xQw", oauth_signature="SfuceyQS23NmAJG%2B%2B4AvfHVrlwY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847765", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:36:05 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/a7ae2b2e-f68a-44df-9091-cb6e3a82404b/\", \"task_id\": \"a7ae2b2e-f68a-44df-9091-cb6e3a82404b\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T14:36:04Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:36:04Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954c5440d2f2ca6ffdb12c\"}, \"id\": \"55954c5417f25e08fb447f4a\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:36:05 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/269bf70b-07d2-48bc-9f5c-da775da9dbe5/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="G2d0Ct39VLWirsOwWRIhQ1FuIbyovlfdnvwhyZpWba0", oauth_signature="qtziD4GrfVi1bX6UnC9u8CXhkqk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847766", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:36:06 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/269bf70b-07d2-48bc-9f5c-da775da9dbe5/\", \"task_id\": \"269bf70b-07d2-48bc-9f5c-da775da9dbe5\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954c5640d2f2ca6ffdb130\"}, \"id\": \"55954c5617f25e4ab6c14242\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:36:06 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/269bf70b-07d2-48bc-9f5c-da775da9dbe5/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="KHyEKRaEeA3gdEGFJWy9Rk3bfei06QasKisxa0qc04", oauth_signature="Mat6c8CIZI2ldnnOFaaKLBJJHns%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847766", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:36:06 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/269bf70b-07d2-48bc-9f5c-da775da9dbe5/\", \"task_id\": \"269bf70b-07d2-48bc-9f5c-da775da9dbe5\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T14:36:06Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:36:06Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/4f12da6e-cfae-4c11-8250-de27c497f528/\", \"task_id\": \"4f12da6e-cfae-4c11-8250-de27c497f528\"}, {\"_href\": \"/pulp/api/v2/tasks/2a16268c-2384-4b66-8212-7a158b26410a/\", \"task_id\": \"2a16268c-2384-4b66-8212-7a158b26410a\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T14:36:06Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T14:36:06Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55954c5617f25e08ebfcfd43\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954c5640d2f2ca6ffdb130\"}, \"id\": \"55954c5617f25e08fb447f51\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:36:06 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/4f12da6e-cfae-4c11-8250-de27c497f528/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="FqmRa7pzBvxdO6PvVrRt2W0ass2c6P5JrL43W37YNE", oauth_signature="mK7AVbOXhWDqd%2F%2F7cyv0VqyNXAc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847766", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:36:06 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/4f12da6e-cfae-4c11-8250-de27c497f528/\", \"task_id\": \"4f12da6e-cfae-4c11-8250-de27c497f528\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:36:06Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:36:06Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:36:06Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:36:06Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55954c5617f25e08ebfcfd46\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954c5640d2f2ca6ffdb132\"}, \"id\": \"55954c5617f25e08fb447f55\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:36:06 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/2a16268c-2384-4b66-8212-7a158b26410a/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="cm6LQkTTFqVq4SDdzZUdxD4l1j0U3fXPix6LqJhTk4", oauth_signature="6mLy3dASWZvtuGonZuU1nTeFHxA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847766", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:36:06 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "3519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/2a16268c-2384-4b66-8212-7a158b26410a/\", \"task_id\": \"2a16268c-2384-4b66-8212-7a158b26410a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": null, \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:36:06Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"ac0f671c-9bd2-4d79-b4ef-9504b80966c1\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"22feb1a0-d5e1-42a2-a919-f2a422b7ce5a\", \"num_processed\": 1}, {\"num_success\": 5, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"IN_PROGRESS\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"cc2282f1-c98c-4b88-b9ed-e1f0b48e746f\", \"num_processed\": 5}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"NOT_STARTED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"48bbad76-6358-4de9-8fc4-ffdb73140007\", \"num_processed\": 0}, {\"num_success\": 0, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 1, \"state\": \"NOT_STARTED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"16ddb525-1136-46b5-852b-4fd3d51d209a\", \"num_processed\": 0}, {\"num_success\": 0, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 1, \"state\": \"NOT_STARTED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0113cd98-a216-482f-a5e5-d9da8fc76b94\", \"num_processed\": 0}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 1, \"state\": \"NOT_STARTED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"40d87674-1b97-4c3c-ae1e-f550468aaec1\", \"num_processed\": 0}, {\"num_success\": 0, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"NOT_STARTED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"4e35390b-28bc-407c-9337-6fc40b4324c1\", \"num_processed\": 0}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"NOT_STARTED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b7e5606d-3a2a-4cb5-99fc-7b9a8bc11f6e\", \"num_processed\": 0}, {\"num_success\": 0, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"NOT_STARTED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"51b6c14e-f17e-4b90-933b-86f87a5ecf92\", \"num_processed\": 0}, {\"num_success\": 0, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"NOT_STARTED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e65599f9-1178-43a2-82a3-3f591a867c9e\", \"num_processed\": 0}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"running\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954c5640d2f2ca6ffdb133\"}, \"id\": \"55954c5617f25e08fb447f59\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:36:06 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/269bf70b-07d2-48bc-9f5c-da775da9dbe5/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Dac4k2JbL6wgTCc5cWWbig9PjOgnIGZR92Hn1r9SPDA", oauth_signature="ny%2BP%2F5eh2AofmnImyfA7B27vMPE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847767", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:36:07 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/269bf70b-07d2-48bc-9f5c-da775da9dbe5/\", \"task_id\": \"269bf70b-07d2-48bc-9f5c-da775da9dbe5\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T14:36:06Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:36:06Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/4f12da6e-cfae-4c11-8250-de27c497f528/\", \"task_id\": \"4f12da6e-cfae-4c11-8250-de27c497f528\"}, {\"_href\": \"/pulp/api/v2/tasks/2a16268c-2384-4b66-8212-7a158b26410a/\", \"task_id\": \"2a16268c-2384-4b66-8212-7a158b26410a\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T14:36:06Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T14:36:06Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55954c5617f25e08ebfcfd43\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954c5640d2f2ca6ffdb130\"}, \"id\": \"55954c5617f25e08fb447f51\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:36:07 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/4f12da6e-cfae-4c11-8250-de27c497f528/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="0ZgGs3qF4xWsEkucGZDaNJLRrHdd0yHU92Dtq6R3I", oauth_signature="LGrpHB4c8TkSzbwV2XlfFH0gs0s%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847767", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:36:07 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/4f12da6e-cfae-4c11-8250-de27c497f528/\", \"task_id\": \"4f12da6e-cfae-4c11-8250-de27c497f528\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:36:06Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:36:06Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:36:06Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:36:06Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55954c5617f25e08ebfcfd46\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954c5640d2f2ca6ffdb132\"}, \"id\": \"55954c5617f25e08fb447f55\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:36:07 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/2a16268c-2384-4b66-8212-7a158b26410a/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="eDG93UC3UN2QNSvzBpbIdFUZTzGpeKQOMGRYxdWY", oauth_signature="OYvSMbo5a5zqlxBTc63csEMZuI0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847767", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:36:07 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/2a16268c-2384-4b66-8212-7a158b26410a/\", \"task_id\": \"2a16268c-2384-4b66-8212-7a158b26410a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:36:06Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:36:06Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"ac0f671c-9bd2-4d79-b4ef-9504b80966c1\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"22feb1a0-d5e1-42a2-a919-f2a422b7ce5a\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"cc2282f1-c98c-4b88-b9ed-e1f0b48e746f\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"48bbad76-6358-4de9-8fc4-ffdb73140007\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"16ddb525-1136-46b5-852b-4fd3d51d209a\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0113cd98-a216-482f-a5e5-d9da8fc76b94\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"40d87674-1b97-4c3c-ae1e-f550468aaec1\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"4e35390b-28bc-407c-9337-6fc40b4324c1\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b7e5606d-3a2a-4cb5-99fc-7b9a8bc11f6e\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"51b6c14e-f17e-4b90-933b-86f87a5ecf92\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e65599f9-1178-43a2-82a3-3f591a867c9e\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:36:06Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:36:06Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"ac0f671c-9bd2-4d79-b4ef-9504b80966c1\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"22feb1a0-d5e1-42a2-a919-f2a422b7ce5a\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"cc2282f1-c98c-4b88-b9ed-e1f0b48e746f\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"48bbad76-6358-4de9-8fc4-ffdb73140007\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"16ddb525-1136-46b5-852b-4fd3d51d209a\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0113cd98-a216-482f-a5e5-d9da8fc76b94\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"40d87674-1b97-4c3c-ae1e-f550468aaec1\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"4e35390b-28bc-407c-9337-6fc40b4324c1\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b7e5606d-3a2a-4cb5-99fc-7b9a8bc11f6e\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"51b6c14e-f17e-4b90-933b-86f87a5ecf92\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e65599f9-1178-43a2-82a3-3f591a867c9e\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"55954c5617f25e08ebfcfd4e\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954c5640d2f2ca6ffdb133\"}, \"id\": \"55954c5617f25e08fb447f59\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:36:07 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/c007d68d-7208-42f9-bcc1-d4f403ba583b/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="apWQFSZpuvm0PXwEcIBvAdFDkYACPdZhlxhaay22M", oauth_signature="AOpim2CmCrtiRfn5YvwGEf8XmAY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847768", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:36:08 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/c007d68d-7208-42f9-bcc1-d4f403ba583b/\", \"task_id\": \"c007d68d-7208-42f9-bcc1-d4f403ba583b\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954c5840d2f2ca6ffdb140\"}, \"id\": \"55954c5817f25e4ab6c1425b\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:36:08 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/c007d68d-7208-42f9-bcc1-d4f403ba583b/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="HocBnqnIiWgRFCRyq9ngSFcHzmqHRDtmopYo64O5M", oauth_signature="URYN3%2FY7ZhknBqganQFPSPAyOjU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435847768", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:36:08 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/c007d68d-7208-42f9-bcc1-d4f403ba583b/\", \"task_id\": \"c007d68d-7208-42f9-bcc1-d4f403ba583b\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T14:36:08Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:36:08Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954c5840d2f2ca6ffdb140\"}, \"id\": \"55954c5817f25e08fb447f60\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:36:08 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/a30bd2bd-aef3-439b-8f63-7dd0c064e2a2/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="9TkkCs8IsX1NXhkKA26MFS0ga4sq1TfTWl0LBuypgY", oauth_signature="OL2ZlaKg4AQ8YLlzVg2cJi6%2FmTA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848068", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:41:08 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/a30bd2bd-aef3-439b-8f63-7dd0c064e2a2/\", \"task_id\": \"a30bd2bd-aef3-439b-8f63-7dd0c064e2a2\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954d8440d2f2ca6ffdb144\"}, \"id\": \"55954d8417f25e4ab6c14272\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:41:08 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/a30bd2bd-aef3-439b-8f63-7dd0c064e2a2/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="QCd1rZwzGq5GlIxf1Ta9k1nbGeL9z6w8gYLpgMwrUzI", oauth_signature="SvqOh4dMsDg9z4uWpI5IT65UaWQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848069", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:41:09 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/a30bd2bd-aef3-439b-8f63-7dd0c064e2a2/\", \"task_id\": \"a30bd2bd-aef3-439b-8f63-7dd0c064e2a2\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T14:41:09Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:41:08Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/d09be795-da83-4500-9a1c-4a9dbab46e14/\", \"task_id\": \"d09be795-da83-4500-9a1c-4a9dbab46e14\"}, {\"_href\": \"/pulp/api/v2/tasks/2eaa7d85-0929-4172-b610-618530421264/\", \"task_id\": \"2eaa7d85-0929-4172-b610-618530421264\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T14:41:08Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T14:41:09Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55954d8517f25e08ebfcfd61\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954d8440d2f2ca6ffdb144\"}, \"id\": \"55954d8417f25e08fb447f67\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:41:09 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/d09be795-da83-4500-9a1c-4a9dbab46e14/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="FIrKncvBmtrjPLElBfiK2ehhPZY5AX3gYQksOTQBgo", oauth_signature="wpB21XaSBA6jgA1N3I99iQS4L98%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848069", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:41:09 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/d09be795-da83-4500-9a1c-4a9dbab46e14/\", \"task_id\": \"d09be795-da83-4500-9a1c-4a9dbab46e14\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:41:09Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:41:09Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:41:09Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:41:09Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55954d8517f25e08ebfcfd64\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954d8540d2f2ca6ffdb146\"}, \"id\": \"55954d8517f25e08fb447f6e\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:41:09 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/2eaa7d85-0929-4172-b610-618530421264/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="GCWbbm0G8Np2jzeQXpDCDuVnO00XSliJW5G2FUYHWEs", oauth_signature="tQplWh83p%2FREbg6tiCzdqYvDZTM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848069", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:41:09 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/2eaa7d85-0929-4172-b610-618530421264/\", \"task_id\": \"2eaa7d85-0929-4172-b610-618530421264\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:41:09Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:41:09Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1174ac19-883c-4d68-9f89-8c655763419a\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"faa9f56d-feb6-43ae-981f-3aafb6837e5b\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"31fd26de-fbbc-464b-8eee-7243248a1931\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"463638ec-c511-49d5-a774-895ecd48f48d\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"95376949-4e78-4455-ba4b-ab4442eb26e8\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1c95e87d-ae21-4732-b579-c6175d4b0173\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"23a4df19-a8b7-4b5e-a31c-7cd7b6730e42\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f3411ae4-4a6b-47b4-bcfd-2e6368934384\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9b98dde4-934b-4a8d-94af-2cac8f77561a\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b3c8e86a-6d5e-4757-90c6-effd013a3cc0\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d52a2f8e-60c0-42b3-9479-04dc8a9cf274\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:41:09Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:41:09Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1174ac19-883c-4d68-9f89-8c655763419a\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"faa9f56d-feb6-43ae-981f-3aafb6837e5b\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"31fd26de-fbbc-464b-8eee-7243248a1931\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"463638ec-c511-49d5-a774-895ecd48f48d\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"95376949-4e78-4455-ba4b-ab4442eb26e8\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1c95e87d-ae21-4732-b579-c6175d4b0173\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"23a4df19-a8b7-4b5e-a31c-7cd7b6730e42\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f3411ae4-4a6b-47b4-bcfd-2e6368934384\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9b98dde4-934b-4a8d-94af-2cac8f77561a\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b3c8e86a-6d5e-4757-90c6-effd013a3cc0\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d52a2f8e-60c0-42b3-9479-04dc8a9cf274\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"55954d8517f25e08ebfcfd6c\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954d8540d2f2ca6ffdb147\"}, \"id\": \"55954d8517f25e08fb447f72\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:41:09 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/6ac2303e-5b5e-4ddc-8505-7c2019e630a8/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="twFpF33l6nfV1TCxZuLGQl5HpoylJOqmq1hdA9AeGE", oauth_signature="xsdVXshmK4Kh1UJx992jyaJ1zpY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848069", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:41:09 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/6ac2303e-5b5e-4ddc-8505-7c2019e630a8/\", \"task_id\": \"6ac2303e-5b5e-4ddc-8505-7c2019e630a8\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954d8540d2f2ca6ffdb150\"}, \"id\": \"55954d8517f25e4ab6c14281\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:41:09 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/6ac2303e-5b5e-4ddc-8505-7c2019e630a8/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="orL6Ogqmb51nHtTiHTJUEuC2wYOMEc0ElSH6uCYXxU", oauth_signature="tCCXuevQWfPsgF2o51EzYjI1Q04%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848070", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:41:10 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/6ac2303e-5b5e-4ddc-8505-7c2019e630a8/\", \"task_id\": \"6ac2303e-5b5e-4ddc-8505-7c2019e630a8\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T14:41:09Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:41:09Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954d8540d2f2ca6ffdb150\"}, \"id\": \"55954d8517f25e08fb447f79\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:41:10 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/21231e27-78ec-41ee-aa64-4a8a85480caf/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="so8F5ojLp5cEQ3tFm5i6cg3Zs34uyW3KQvXHHxUI0", oauth_signature="Dm7ljYcy3ZNWZozC2TDCWpea5bo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848071", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:41:11 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/21231e27-78ec-41ee-aa64-4a8a85480caf/\", \"task_id\": \"21231e27-78ec-41ee-aa64-4a8a85480caf\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954d8740d2f2ca6ffdb154\"}, \"id\": \"55954d8717f25e4ab6c14298\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:41:11 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/21231e27-78ec-41ee-aa64-4a8a85480caf/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="fRifwQPPrT6u3snzY9w8Dvx5O28MqGtL5cN06vqdGA", oauth_signature="Uc71r5og1Q6EMUox6w8%2FKXvXHt4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848072", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:41:12 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/21231e27-78ec-41ee-aa64-4a8a85480caf/\", \"task_id\": \"21231e27-78ec-41ee-aa64-4a8a85480caf\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T14:41:12Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:41:11Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/c4ff2ff7-510e-48cb-8447-40517f162eef/\", \"task_id\": \"c4ff2ff7-510e-48cb-8447-40517f162eef\"}, {\"_href\": \"/pulp/api/v2/tasks/50635508-fe4f-4fb1-b08e-f1b57f84a53b/\", \"task_id\": \"50635508-fe4f-4fb1-b08e-f1b57f84a53b\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T14:41:11Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T14:41:11Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55954d8717f25e08ebfcfd7f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954d8740d2f2ca6ffdb154\"}, \"id\": \"55954d8717f25e08fb447f80\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:41:12 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/c4ff2ff7-510e-48cb-8447-40517f162eef/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="V1b3AIDiEYvIfYYGEvPzxeoG7S0jPSJy4O6OgHrM0", oauth_signature="bYiLvr1gA90LB%2BcLpNjHIWJcewo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848072", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:41:12 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/c4ff2ff7-510e-48cb-8447-40517f162eef/\", \"task_id\": \"c4ff2ff7-510e-48cb-8447-40517f162eef\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:41:12Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:41:12Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:41:12Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:41:12Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55954d8817f25e08ebfcfd82\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954d8740d2f2ca6ffdb156\"}, \"id\": \"55954d8817f25e08fb447f87\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:41:12 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/50635508-fe4f-4fb1-b08e-f1b57f84a53b/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="0NayLXod7zLtHek7Fq9eq2t22c65vPNt0YVCX8Z2s", oauth_signature="UaubrHBXzQoClUm8gR%2BlgFPglyM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848072", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:41:12 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "640" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/50635508-fe4f-4fb1-b08e-f1b57f84a53b/\", \"task_id\": \"50635508-fe4f-4fb1-b08e-f1b57f84a53b\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954d8740d2f2ca6ffdb157\"}, \"id\": \"55954d8817f25e08fb447f8b\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:41:12 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/21231e27-78ec-41ee-aa64-4a8a85480caf/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="YJcFRF7wtfbxU4kbzt5DRTIz56d5NsqulcADyCiguCQ", oauth_signature="lRqx7uvgpvpzj3yXeLpY%2Bx6mQi8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848073", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:41:13 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/21231e27-78ec-41ee-aa64-4a8a85480caf/\", \"task_id\": \"21231e27-78ec-41ee-aa64-4a8a85480caf\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T14:41:12Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:41:11Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/c4ff2ff7-510e-48cb-8447-40517f162eef/\", \"task_id\": \"c4ff2ff7-510e-48cb-8447-40517f162eef\"}, {\"_href\": \"/pulp/api/v2/tasks/50635508-fe4f-4fb1-b08e-f1b57f84a53b/\", \"task_id\": \"50635508-fe4f-4fb1-b08e-f1b57f84a53b\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T14:41:11Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T14:41:11Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55954d8717f25e08ebfcfd7f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954d8740d2f2ca6ffdb154\"}, \"id\": \"55954d8717f25e08fb447f80\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:41:13 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/c4ff2ff7-510e-48cb-8447-40517f162eef/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Djig4LHkJHHx6RwjQ43iOVns4eKCxPz3qzOvh6lkE", oauth_signature="g2yuKaTfyoQMEDEFG2gp7t9rNu0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848073", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:41:13 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/c4ff2ff7-510e-48cb-8447-40517f162eef/\", \"task_id\": \"c4ff2ff7-510e-48cb-8447-40517f162eef\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:41:12Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:41:12Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:41:12Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:41:12Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55954d8817f25e08ebfcfd82\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954d8740d2f2ca6ffdb156\"}, \"id\": \"55954d8817f25e08fb447f87\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:41:13 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/50635508-fe4f-4fb1-b08e-f1b57f84a53b/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="HM78AfRy7SM6nXGlCChpI3oX6j5eGa2tNlP0qGbf2A", oauth_signature="2NTvOAV%2FRAbEyN07vr23m7Bn1Oo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848073", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:41:13 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/50635508-fe4f-4fb1-b08e-f1b57f84a53b/\", \"task_id\": \"50635508-fe4f-4fb1-b08e-f1b57f84a53b\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:41:12Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:41:12Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9385888e-2c29-42f0-9b72-8477632efd59\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"bfaf5c4f-188b-4be1-8742-2c07d1622161\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0bd66dda-65e7-4428-9310-51d53fed1724\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"2dbc3f24-8068-4224-9880-c7f76388fd5c\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3ce75c26-8d14-44a4-bce2-bec5812211e2\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1d937c0f-e70a-4e99-97c0-36876e681181\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"77ef285c-e273-442e-a361-a8dc3975fba0\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9fb9ee84-c3df-4b6a-aaba-002749781659\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f6392c07-6e14-4e37-b83b-941f5c7c9636\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"28d7b5d7-7aec-45a0-8c83-4b5f9c96ae92\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"52595b72-1c90-4f9e-8202-8954b6281f24\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:41:12Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:41:12Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9385888e-2c29-42f0-9b72-8477632efd59\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"bfaf5c4f-188b-4be1-8742-2c07d1622161\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0bd66dda-65e7-4428-9310-51d53fed1724\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"2dbc3f24-8068-4224-9880-c7f76388fd5c\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3ce75c26-8d14-44a4-bce2-bec5812211e2\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1d937c0f-e70a-4e99-97c0-36876e681181\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"77ef285c-e273-442e-a361-a8dc3975fba0\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9fb9ee84-c3df-4b6a-aaba-002749781659\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f6392c07-6e14-4e37-b83b-941f5c7c9636\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"28d7b5d7-7aec-45a0-8c83-4b5f9c96ae92\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"52595b72-1c90-4f9e-8202-8954b6281f24\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"55954d8817f25e08ebfcfd8a\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954d8740d2f2ca6ffdb157\"}, \"id\": \"55954d8817f25e08fb447f8b\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:41:13 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/66d9ec0b-5133-4d27-80b7-5556f92046b9/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="DqOWRemfmxtN6RVHofAVZH6CEexffRkdCqA68BOU", oauth_signature="GZv8CKTTEp%2Bp8urNxqaR8IDXMWg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848073", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:41:13 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/66d9ec0b-5133-4d27-80b7-5556f92046b9/\", \"task_id\": \"66d9ec0b-5133-4d27-80b7-5556f92046b9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954d8940d2f2ca6ffdb160\"}, \"id\": \"55954d8917f25e4ab6c142b1\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:41:13 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/66d9ec0b-5133-4d27-80b7-5556f92046b9/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="fOLm6mf3F4Dt3biLGXE8UXLWUwP7aGjc9EtNrGJTVA", oauth_signature="eU7B3nZV9b9cPHjglSGrxnsRIfY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848074", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:41:14 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/66d9ec0b-5133-4d27-80b7-5556f92046b9/\", \"task_id\": \"66d9ec0b-5133-4d27-80b7-5556f92046b9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T14:41:13Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:41:13Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954d8940d2f2ca6ffdb160\"}, \"id\": \"55954d8917f25e08fb447f92\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:41:14 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/749ff485-ab1d-4439-9354-a2f88459b32a/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="QwDuDsBxXqFb8Nv5Ng4Yz7iTxum0TsabQylujS9xGA", oauth_signature="XKCZJZCh5SDJAr62WJGQspgmaj8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848672", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:51:12 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/749ff485-ab1d-4439-9354-a2f88459b32a/\", \"task_id\": \"749ff485-ab1d-4439-9354-a2f88459b32a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954fe040d2f2ca6ffdb164\"}, \"id\": \"55954fe017f25e4ab6c142c8\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:51:12 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/749ff485-ab1d-4439-9354-a2f88459b32a/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="xsgwUl8cRKEtLV7gpgZHaPDtfzMXCCE6s3SfM9OZ4s", oauth_signature="ljPZUfXyITLKK%2Ber72Jem2UBNCY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848673", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:51:13 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/749ff485-ab1d-4439-9354-a2f88459b32a/\", \"task_id\": \"749ff485-ab1d-4439-9354-a2f88459b32a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T14:51:13Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:51:13Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/ab84cb61-0088-4042-bc64-edbe67560ed0/\", \"task_id\": \"ab84cb61-0088-4042-bc64-edbe67560ed0\"}, {\"_href\": \"/pulp/api/v2/tasks/9418cb1b-04bb-4cd9-b26b-b13ec8f8b629/\", \"task_id\": \"9418cb1b-04bb-4cd9-b26b-b13ec8f8b629\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T14:51:13Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T14:51:13Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55954fe117f25e08ebfcfd9d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954fe040d2f2ca6ffdb164\"}, \"id\": \"55954fe017f25e08fb447f99\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:51:13 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/ab84cb61-0088-4042-bc64-edbe67560ed0/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="LcrFHXOXQhtSSkovFLvI5gwqsPbkUs2LcK8KcqJU", oauth_signature="Tb%2BUxiA4K1BMHsAzDjw%2FcH9UG0E%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848673", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:51:13 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/ab84cb61-0088-4042-bc64-edbe67560ed0/\", \"task_id\": \"ab84cb61-0088-4042-bc64-edbe67560ed0\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:51:13Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:51:13Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:51:13Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:51:13Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55954fe117f25e08ebfcfda0\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954fe140d2f2ca6ffdb166\"}, \"id\": \"55954fe117f25e08fb447fa0\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:51:13 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/9418cb1b-04bb-4cd9-b26b-b13ec8f8b629/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Tykr1lwoQjkLIeJqmJm0teYrJ1J3gX7rt3ObxZA", oauth_signature="goadqtmYX9duW%2BfyG1MLcWe3rWI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848673", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:51:13 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "640" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/9418cb1b-04bb-4cd9-b26b-b13ec8f8b629/\", \"task_id\": \"9418cb1b-04bb-4cd9-b26b-b13ec8f8b629\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954fe140d2f2ca6ffdb167\"}, \"id\": \"55954fe117f25e08fb447fa4\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:51:13 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/749ff485-ab1d-4439-9354-a2f88459b32a/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="ZNB8k0gqeTautMbZBktQ5z43O9aSSFJjVgrWryrYw", oauth_signature="zckA9lsx7sBGGaJKf%2FFx50vFHd0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848673", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:51:13 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/749ff485-ab1d-4439-9354-a2f88459b32a/\", \"task_id\": \"749ff485-ab1d-4439-9354-a2f88459b32a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T14:51:13Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:51:13Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/ab84cb61-0088-4042-bc64-edbe67560ed0/\", \"task_id\": \"ab84cb61-0088-4042-bc64-edbe67560ed0\"}, {\"_href\": \"/pulp/api/v2/tasks/9418cb1b-04bb-4cd9-b26b-b13ec8f8b629/\", \"task_id\": \"9418cb1b-04bb-4cd9-b26b-b13ec8f8b629\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T14:51:13Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T14:51:13Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55954fe117f25e08ebfcfd9d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954fe040d2f2ca6ffdb164\"}, \"id\": \"55954fe017f25e08fb447f99\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:51:13 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/ab84cb61-0088-4042-bc64-edbe67560ed0/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="fXFCbsRFC207MqxL4wR2yon8cJ0mWHBLtfaHkz510", oauth_signature="9V43q%2FlsSQ8ClGZIHksyB5clmnc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848673", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:51:14 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/ab84cb61-0088-4042-bc64-edbe67560ed0/\", \"task_id\": \"ab84cb61-0088-4042-bc64-edbe67560ed0\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:51:13Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:51:13Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:51:13Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:51:13Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55954fe117f25e08ebfcfda0\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954fe140d2f2ca6ffdb166\"}, \"id\": \"55954fe117f25e08fb447fa0\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:51:14 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/9418cb1b-04bb-4cd9-b26b-b13ec8f8b629/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="CzO9jrr1jo3C1iarjyGNM977ywTlyPg1zeIWtCeT2wY", oauth_signature="94UhWSwM0Z9Uj4lZitUEhZx7oe8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848674", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:51:14 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/9418cb1b-04bb-4cd9-b26b-b13ec8f8b629/\", \"task_id\": \"9418cb1b-04bb-4cd9-b26b-b13ec8f8b629\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:51:13Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:51:13Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e4934711-433a-434a-84c5-189366dd38c6\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1f8a3c9c-c4ac-427c-891b-dfb56e290a03\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"5f3ade6c-67d6-4852-a0d8-9e05788c67bb\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3480d37e-1295-4150-b6cb-b7f8c2bae09c\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"13b832c3-b1ac-4e1d-b6f2-484085a9de4f\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1083d8b6-fd87-4cd7-b9f5-28b186d634d6\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e523fc34-4bdc-4f1f-9e0e-a2b6160e3b84\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c2496bd4-adc2-421d-afe1-2cfe5370c618\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"aa1e03f6-cf4e-40cc-b024-ea26425a8a26\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"123df997-2220-4181-9469-ed7fbbcf536d\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3d73106a-4a9b-4809-944b-48e233c45456\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:51:13Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:51:13Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e4934711-433a-434a-84c5-189366dd38c6\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1f8a3c9c-c4ac-427c-891b-dfb56e290a03\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"5f3ade6c-67d6-4852-a0d8-9e05788c67bb\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3480d37e-1295-4150-b6cb-b7f8c2bae09c\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"13b832c3-b1ac-4e1d-b6f2-484085a9de4f\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1083d8b6-fd87-4cd7-b9f5-28b186d634d6\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e523fc34-4bdc-4f1f-9e0e-a2b6160e3b84\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c2496bd4-adc2-421d-afe1-2cfe5370c618\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"aa1e03f6-cf4e-40cc-b024-ea26425a8a26\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"123df997-2220-4181-9469-ed7fbbcf536d\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3d73106a-4a9b-4809-944b-48e233c45456\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"55954fe117f25e08ebfcfda8\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954fe140d2f2ca6ffdb167\"}, \"id\": \"55954fe117f25e08fb447fa4\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:51:14 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/2e7993ac-e26d-456a-9829-2e6b59c3f299/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="KwA6jOUW4UmIOdx3TeCwPXLl0j59bJnTEROA6eUwI", oauth_signature="RRWJGT8AamJG2VjHQAe4dAl3muk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848674", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:51:14 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/2e7993ac-e26d-456a-9829-2e6b59c3f299/\", \"task_id\": \"2e7993ac-e26d-456a-9829-2e6b59c3f299\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954fe240d2f2ca6ffdb170\"}, \"id\": \"55954fe217f25e4ab6c142dd\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:51:14 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/2e7993ac-e26d-456a-9829-2e6b59c3f299/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="7mL3Qr3BL50TwvxWZy6soIXKxVhxftTTflhNIC8yks", oauth_signature="%2FRhQ26eN8bLXqPj%2FZf9Mx5cPT1c%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848675", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:51:15 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/2e7993ac-e26d-456a-9829-2e6b59c3f299/\", \"task_id\": \"2e7993ac-e26d-456a-9829-2e6b59c3f299\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T14:51:14Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:51:14Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954fe240d2f2ca6ffdb170\"}, \"id\": \"55954fe217f25e08fb447fab\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:51:15 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/99f7b2cb-9a39-4fbd-abee-6f1a7d68fe2a/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="bUzbNc57t2pED5mUS1wzZYQc9vObIGfLhO1MDfDOaI", oauth_signature="zy5q3rpTe9eHEH%2B2N4x0PTu6gj4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848676", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:51:16 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/99f7b2cb-9a39-4fbd-abee-6f1a7d68fe2a/\", \"task_id\": \"99f7b2cb-9a39-4fbd-abee-6f1a7d68fe2a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954fe440d2f2ca6ffdb174\"}, \"id\": \"55954fe417f25e4ab6c142f4\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:51:16 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/99f7b2cb-9a39-4fbd-abee-6f1a7d68fe2a/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="vBdL7dOL1bMBXP1hnVWK0ynrEO0hd0uuv0Iv5AA9cMw", oauth_signature="WDG12aGxR3uK%2BN22wRhMbA6HllE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848677", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:51:17 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/99f7b2cb-9a39-4fbd-abee-6f1a7d68fe2a/\", \"task_id\": \"99f7b2cb-9a39-4fbd-abee-6f1a7d68fe2a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T14:51:16Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:51:16Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/f2acc9e4-b650-411f-b7bd-ea722fb2d854/\", \"task_id\": \"f2acc9e4-b650-411f-b7bd-ea722fb2d854\"}, {\"_href\": \"/pulp/api/v2/tasks/e8d31bee-642d-4112-a3d0-0f85d30600a6/\", \"task_id\": \"e8d31bee-642d-4112-a3d0-0f85d30600a6\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T14:51:16Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T14:51:16Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55954fe417f25e08ebfcfdbb\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954fe440d2f2ca6ffdb174\"}, \"id\": \"55954fe417f25e08fb447fb2\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:51:17 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/f2acc9e4-b650-411f-b7bd-ea722fb2d854/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="zq3pIYIf7UfQ1Flva0KAbYuohB9oe9IKXdW4l0ccY", oauth_signature="mu60A13kU3ZO0m%2BAgHcigRMqzWQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848677", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:51:17 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/f2acc9e4-b650-411f-b7bd-ea722fb2d854/\", \"task_id\": \"f2acc9e4-b650-411f-b7bd-ea722fb2d854\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:51:16Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:51:16Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:51:16Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:51:16Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55954fe417f25e08ebfcfdbe\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954fe440d2f2ca6ffdb176\"}, \"id\": \"55954fe417f25e08fb447fb9\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:51:17 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/e8d31bee-642d-4112-a3d0-0f85d30600a6/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="6CmQJ5oScsZ7bL0PdtemMn5TlLWNaYH2ttkVELIxno", oauth_signature="4UZykwlCgDLMG1GmnmaUbYYGUe4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848677", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:51:17 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/e8d31bee-642d-4112-a3d0-0f85d30600a6/\", \"task_id\": \"e8d31bee-642d-4112-a3d0-0f85d30600a6\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:51:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:51:17Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8482abca-b9b3-4822-ac61-88e28628440b\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"ec55884e-a383-4c2d-8392-debd36820295\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b2bb87e5-5521-49a7-ac81-7b5aee04b29c\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"cfe6a645-71d0-4ccb-8b1e-b00724ce479d\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"11236cb0-61d1-4615-b404-8c77568cfc84\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8755d5c2-4eaa-454a-bfa0-06281f434d65\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3cdfabd3-5b70-4dfe-9b52-3c471a8424eb\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8f756423-0089-4b5b-b065-122f52e497ea\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f7e54187-e941-4b0e-be01-aebc3d9580b4\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"fa24d8aa-9767-43e8-9d8a-60c8599caf8f\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"da30b080-208b-4d70-920b-0a80f24cfbc7\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:51:17Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:51:17Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8482abca-b9b3-4822-ac61-88e28628440b\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"ec55884e-a383-4c2d-8392-debd36820295\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b2bb87e5-5521-49a7-ac81-7b5aee04b29c\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"cfe6a645-71d0-4ccb-8b1e-b00724ce479d\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"11236cb0-61d1-4615-b404-8c77568cfc84\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8755d5c2-4eaa-454a-bfa0-06281f434d65\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3cdfabd3-5b70-4dfe-9b52-3c471a8424eb\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8f756423-0089-4b5b-b065-122f52e497ea\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f7e54187-e941-4b0e-be01-aebc3d9580b4\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"fa24d8aa-9767-43e8-9d8a-60c8599caf8f\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"da30b080-208b-4d70-920b-0a80f24cfbc7\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"55954fe517f25e08ebfcfdc6\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55954fe440d2f2ca6ffdb177\"}, \"id\": \"55954fe417f25e08fb447fbd\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:51:17 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/71349150-eb06-4fbd-b161-813603c55a17/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="yPSo2PF6IvVd4aNsYskYfKjIYG23Ff8djSjcj7zWsg", oauth_signature="kF%2FpL1xc6y0n1L0xJaHkOya%2BleE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848677", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:51:17 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/71349150-eb06-4fbd-b161-813603c55a17/\", \"task_id\": \"71349150-eb06-4fbd-b161-813603c55a17\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954fe540d2f2ca6ffdb180\"}, \"id\": \"55954fe517f25e4ab6c14307\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:51:17 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/71349150-eb06-4fbd-b161-813603c55a17/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Wfc5UCuCqk5ReMgA9Nhik1h0zru8EMmpeb0wIg17Tk", oauth_signature="60i6R96twbO5hYWi21DVY%2Bbvt44%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848678", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:51:18 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/71349150-eb06-4fbd-b161-813603c55a17/\", \"task_id\": \"71349150-eb06-4fbd-b161-813603c55a17\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T14:51:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:51:17Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55954fe540d2f2ca6ffdb180\"}, \"id\": \"55954fe517f25e08fb447fc4\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:51:18 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/c33625c4-8e61-4fcd-a0c9-703f0263ca21/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="NVuQgPrOhOPCzz362u3q4Hx57YKZa1iL1vQN14A", oauth_signature="dk5EG1d4lTgiH%2BBHLQ2FSkxqDVs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848789", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:53:09 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/c33625c4-8e61-4fcd-a0c9-703f0263ca21/\", \"task_id\": \"c33625c4-8e61-4fcd-a0c9-703f0263ca21\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595505540d2f2ca6ffdb184\"}, \"id\": \"5595505517f25e4ab6c1431e\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:53:09 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/c33625c4-8e61-4fcd-a0c9-703f0263ca21/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="gQ7ReYx2AEagCt2pVMXEIhNL2gTlgpHPJ9j2ssRw", oauth_signature="5j9nGwEuY8wrFCpyGgzUYYaVGDw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848789", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:53:09 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/c33625c4-8e61-4fcd-a0c9-703f0263ca21/\", \"task_id\": \"c33625c4-8e61-4fcd-a0c9-703f0263ca21\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T14:53:09Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:53:09Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/ffc3f28f-3ab9-4c51-bdb6-35b14b82e605/\", \"task_id\": \"ffc3f28f-3ab9-4c51-bdb6-35b14b82e605\"}, {\"_href\": \"/pulp/api/v2/tasks/bbbddd41-9985-4080-a91e-50f132a18375/\", \"task_id\": \"bbbddd41-9985-4080-a91e-50f132a18375\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T14:53:09Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T14:53:09Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5595505517f25e08ebfcfdd9\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595505540d2f2ca6ffdb184\"}, \"id\": \"5595505517f25e08fb447fcb\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:53:09 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/ffc3f28f-3ab9-4c51-bdb6-35b14b82e605/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="V8rPYjsGI4Mz0qyVDpSc2qmI83KZBc5tCwT1P9RMg", oauth_signature="bPGB2OyHv660PKlsC%2B2pu%2BePC84%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848789", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:53:09 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/ffc3f28f-3ab9-4c51-bdb6-35b14b82e605/\", \"task_id\": \"ffc3f28f-3ab9-4c51-bdb6-35b14b82e605\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:53:09Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:53:09Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:53:09Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:53:09Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"5595505517f25e08ebfcfddc\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595505540d2f2ca6ffdb186\"}, \"id\": \"5595505517f25e08fb447fd2\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:53:09 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/bbbddd41-9985-4080-a91e-50f132a18375/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="qf9IUdFQA7SG2MNSIaaDSebnCwJAEaiNgNZFQnLH4", oauth_signature="UrkftKqfuE6URQn7%2BRRsbF1FEcw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848789", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:53:09 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/bbbddd41-9985-4080-a91e-50f132a18375/\", \"task_id\": \"bbbddd41-9985-4080-a91e-50f132a18375\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:53:09Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:53:09Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8afb3c2a-7510-4348-a39c-0102f9647a52\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"2c79c36c-ed0f-47ff-a5b5-f6f2b2545b9c\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8a929a5f-5469-4d89-893b-7750425da32c\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6c8fa65a-3b46-401a-a2a5-cea274a90167\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8b7585e7-e3e2-4c08-ba88-90f5d7c190b9\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"5e4e3fdd-e919-4de8-aed4-a8baec10cabe\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a650c3fd-1075-40a4-a2ca-f561b52a2814\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"ef99cc28-b181-4ae0-a32a-e19259086dba\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d9667267-5001-4cd0-8c02-d144647233bf\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"53502760-b51f-40f4-8b8b-a8acc665bc45\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"5cfae16a-6859-4016-bf2b-fd7bd35e3e08\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:53:09Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:53:09Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8afb3c2a-7510-4348-a39c-0102f9647a52\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"2c79c36c-ed0f-47ff-a5b5-f6f2b2545b9c\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8a929a5f-5469-4d89-893b-7750425da32c\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6c8fa65a-3b46-401a-a2a5-cea274a90167\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8b7585e7-e3e2-4c08-ba88-90f5d7c190b9\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"5e4e3fdd-e919-4de8-aed4-a8baec10cabe\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a650c3fd-1075-40a4-a2ca-f561b52a2814\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"ef99cc28-b181-4ae0-a32a-e19259086dba\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d9667267-5001-4cd0-8c02-d144647233bf\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"53502760-b51f-40f4-8b8b-a8acc665bc45\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"5cfae16a-6859-4016-bf2b-fd7bd35e3e08\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"5595505517f25e08ebfcfde4\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595505540d2f2ca6ffdb187\"}, \"id\": \"5595505517f25e08fb447fd6\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:53:09 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/0d8d7fe1-724a-4070-be9b-94f5d60fa36f/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="c0bHIxRCUr6rgZ0JjbYz2174Fjt23FiJNnY7X8AMDg", oauth_signature="uvf%2FI0HKobZuTInJ9ydgu4TAav4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848790", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:53:10 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "633" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/0d8d7fe1-724a-4070-be9b-94f5d60fa36f/\", \"task_id\": \"0d8d7fe1-724a-4070-be9b-94f5d60fa36f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595505640d2f2ca6ffdb190\"}, \"id\": \"5595505617f25e08fb447fdd\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:53:10 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/0d8d7fe1-724a-4070-be9b-94f5d60fa36f/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="9YxQkEAWEZFICq6Hw7P3Lz3eCNVEi7vV9mkGxq218", oauth_signature="6huMfmcD0R3eVPj0c2Hv6HI7M4c%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848791", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:53:11 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/0d8d7fe1-724a-4070-be9b-94f5d60fa36f/\", \"task_id\": \"0d8d7fe1-724a-4070-be9b-94f5d60fa36f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T14:53:10Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:53:10Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595505640d2f2ca6ffdb190\"}, \"id\": \"5595505617f25e08fb447fdd\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:53:11 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/54dc0a07-8d88-4a49-8dc8-0e93d176810e/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="8PZzTGfwMHqzqnMz0EQZHsOd6kvjkBWaM6K6sxFSA", oauth_signature="yfbOsPfu9HRRzcD0clxHw2tetGA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848792", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:53:12 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "631" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/54dc0a07-8d88-4a49-8dc8-0e93d176810e/\", \"task_id\": \"54dc0a07-8d88-4a49-8dc8-0e93d176810e\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595505840d2f2ca6ffdb194\"}, \"id\": \"5595505817f25e08fb447fe4\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:53:12 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/54dc0a07-8d88-4a49-8dc8-0e93d176810e/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="BPNp86xZmkLJVMweeHjIZd6QWvs42xRYQpSlszFds", oauth_signature="TviZMpkK5rN4FCEXsoww9sp4dXs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848793", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:53:13 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/54dc0a07-8d88-4a49-8dc8-0e93d176810e/\", \"task_id\": \"54dc0a07-8d88-4a49-8dc8-0e93d176810e\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T14:53:12Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:53:12Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/9a544e3a-a389-4f20-8718-4eedec6ea14a/\", \"task_id\": \"9a544e3a-a389-4f20-8718-4eedec6ea14a\"}, {\"_href\": \"/pulp/api/v2/tasks/854925e8-b2f5-4745-b6f7-5e6c0a8650c2/\", \"task_id\": \"854925e8-b2f5-4745-b6f7-5e6c0a8650c2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T14:53:12Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T14:53:12Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5595505817f25e08ebfcfdf7\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595505840d2f2ca6ffdb194\"}, \"id\": \"5595505817f25e08fb447fe4\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:53:13 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/9a544e3a-a389-4f20-8718-4eedec6ea14a/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="LMspRkdFasWBi7c9DqvW4ckNa7tt7XpS4qCDjyds4", oauth_signature="rwm%2B0ZjRhDjS3qhYdRHoh2mmllM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848793", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:53:13 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/9a544e3a-a389-4f20-8718-4eedec6ea14a/\", \"task_id\": \"9a544e3a-a389-4f20-8718-4eedec6ea14a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:53:13Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:53:12Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:53:12Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:53:13Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"5595505917f25e08ebfcfdfa\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595505840d2f2ca6ffdb196\"}, \"id\": \"5595505817f25e08fb447fe8\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:53:13 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/854925e8-b2f5-4745-b6f7-5e6c0a8650c2/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="8CFv0tMulfm234KlAAUIovDOXfXsDW6noirpv0hPpRQ", oauth_signature="LZs%2BgMVVzhVwpWBpZwUpyyZnabA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848793", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:53:13 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/854925e8-b2f5-4745-b6f7-5e6c0a8650c2/\", \"task_id\": \"854925e8-b2f5-4745-b6f7-5e6c0a8650c2\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:53:13Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:53:13Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"53576592-304c-43d0-ad40-dd4b6ba49c93\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"afade6d4-874a-4e06-b172-e624bc612b14\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"4ef32e73-3437-4443-98b3-6449f2e9fbc0\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"92beaa8e-0a33-4369-8850-8f10b7c6d63e\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d5cfc1a3-c85a-4b9b-977b-2b6a41dffc15\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"93ed299a-2b21-4b05-ab8c-547ebf2903ae\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"90b5d5c4-938a-4ba4-8448-5f3012f83fed\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6f2fc122-54d3-4028-8e9f-6674dea12749\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"17eebfaf-dadc-4cd5-a989-a312d3d8b763\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"4ca8f980-74fd-42a1-a865-f31eab7e0da2\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1a586f68-17b0-4956-a45f-8682dc37f069\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:53:13Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:53:13Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"53576592-304c-43d0-ad40-dd4b6ba49c93\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"afade6d4-874a-4e06-b172-e624bc612b14\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"4ef32e73-3437-4443-98b3-6449f2e9fbc0\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"92beaa8e-0a33-4369-8850-8f10b7c6d63e\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d5cfc1a3-c85a-4b9b-977b-2b6a41dffc15\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"93ed299a-2b21-4b05-ab8c-547ebf2903ae\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"90b5d5c4-938a-4ba4-8448-5f3012f83fed\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6f2fc122-54d3-4028-8e9f-6674dea12749\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"17eebfaf-dadc-4cd5-a989-a312d3d8b763\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"4ca8f980-74fd-42a1-a865-f31eab7e0da2\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1a586f68-17b0-4956-a45f-8682dc37f069\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"5595505917f25e08ebfcfe02\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595505840d2f2ca6ffdb197\"}, \"id\": \"5595505817f25e08fb447fec\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:53:13 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/d89cdcdf-dd4d-4a56-b0d1-cfe35fa1f61f/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Nd4UtJLYS6iKSAxT1o2Jgsm5DcrKtQuoLtehaoWtInQ", oauth_signature="mENv5Pxc24u%2Bi628iLFsOKDm6UM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848794", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:53:14 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/d89cdcdf-dd4d-4a56-b0d1-cfe35fa1f61f/\", \"task_id\": \"d89cdcdf-dd4d-4a56-b0d1-cfe35fa1f61f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595505a40d2f2ca6ffdb1a0\"}, \"id\": \"5595505a17f25e4ab6c14359\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:53:14 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/d89cdcdf-dd4d-4a56-b0d1-cfe35fa1f61f/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Ssy7t2q2VPRCei2l9MLJpgLi208p6KNhoMoWejhPzMc", oauth_signature="WgYFF5YD%2FWIjBMVImAQAyE7owSQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848794", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:53:14 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/d89cdcdf-dd4d-4a56-b0d1-cfe35fa1f61f/\", \"task_id\": \"d89cdcdf-dd4d-4a56-b0d1-cfe35fa1f61f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T14:53:14Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:53:14Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595505a40d2f2ca6ffdb1a0\"}, \"id\": \"5595505a17f25e08fb447ff3\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:53:14 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/64af73ba-2dee-48b5-adde-0f890f4c4a2d/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="QVXXEycgYdIQDDHKQy2EQqBwPr2txJ5litkPVRq3w6g", oauth_signature="cAhbcsm1VueA4G3EheBWa69QIVk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848913", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:55:13 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "631" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/64af73ba-2dee-48b5-adde-0f890f4c4a2d/\", \"task_id\": \"64af73ba-2dee-48b5-adde-0f890f4c4a2d\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"559550d140d2f2ca6ffdb1a4\"}, \"id\": \"559550d117f25e08fb447ffa\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:55:13 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/64af73ba-2dee-48b5-adde-0f890f4c4a2d/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="YK4rxJaI3u96u2wojpvxMQ4H5mX3d2GT4C1tVrOHd0", oauth_signature="RIIkf1IxwEeGqUwxkKb8JIiqIiI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848914", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:55:14 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/64af73ba-2dee-48b5-adde-0f890f4c4a2d/\", \"task_id\": \"64af73ba-2dee-48b5-adde-0f890f4c4a2d\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T14:55:14Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:55:13Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/3f847c3d-c672-4979-ae29-e6b9403cf0b2/\", \"task_id\": \"3f847c3d-c672-4979-ae29-e6b9403cf0b2\"}, {\"_href\": \"/pulp/api/v2/tasks/484abf91-b3b0-4d41-98bf-32c130b029f4/\", \"task_id\": \"484abf91-b3b0-4d41-98bf-32c130b029f4\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T14:55:13Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T14:55:14Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"559550d217f25e08ebfcfe15\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"559550d140d2f2ca6ffdb1a4\"}, \"id\": \"559550d117f25e08fb447ffa\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:55:14 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/3f847c3d-c672-4979-ae29-e6b9403cf0b2/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="9AlcK3CfkoUSfWG3bQRv3w2lOlvrJ7OLQSdfjEO3eWU", oauth_signature="Z0YtSAZs4HjnfmUOoRMNUvnrctE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848914", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:55:14 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/3f847c3d-c672-4979-ae29-e6b9403cf0b2/\", \"task_id\": \"3f847c3d-c672-4979-ae29-e6b9403cf0b2\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:55:14Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:55:14Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:55:14Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:55:14Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"559550d217f25e08ebfcfe18\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"559550d240d2f2ca6ffdb1a6\"}, \"id\": \"559550d217f25e08fb448001\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:55:14 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/484abf91-b3b0-4d41-98bf-32c130b029f4/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="LWTaEfZpqC7PcovTpJmeL8yNqaqbl7bij9SWmNGnSw", oauth_signature="7kCJ%2BxS3vbmvcK7zMPCoEFd%2FeAo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848914", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:55:14 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/484abf91-b3b0-4d41-98bf-32c130b029f4/\", \"task_id\": \"484abf91-b3b0-4d41-98bf-32c130b029f4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T14:55:14Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:55:14Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"2464f394-d80a-46ec-b2e8-9b75a3f9fffb\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"043de2a9-d8c7-4c99-9c2d-98836dd4ff93\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"cb76acb4-02fb-422d-b047-5749facc73b9\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"5693aad9-65e0-453b-bd9e-fe5cddac1920\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"fb8ee0b8-0785-40fe-a6d0-004bb1b9ad77\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"246acb74-4aa5-4580-8589-d89448d2c63a\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"961e4541-0702-4871-952b-24c137031888\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"84acf68e-f030-458d-ada7-af0b0b216d12\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"71556ba6-6416-40d6-8e7a-54c563a0371a\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c3fc43c1-e3a7-41a7-aaed-124e266ec468\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c75b449e-b5e2-4ae4-9301-feeb664fff4e\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T14:55:14Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T14:55:14Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"2464f394-d80a-46ec-b2e8-9b75a3f9fffb\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"043de2a9-d8c7-4c99-9c2d-98836dd4ff93\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"cb76acb4-02fb-422d-b047-5749facc73b9\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"5693aad9-65e0-453b-bd9e-fe5cddac1920\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"fb8ee0b8-0785-40fe-a6d0-004bb1b9ad77\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"246acb74-4aa5-4580-8589-d89448d2c63a\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"961e4541-0702-4871-952b-24c137031888\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"84acf68e-f030-458d-ada7-af0b0b216d12\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"71556ba6-6416-40d6-8e7a-54c563a0371a\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c3fc43c1-e3a7-41a7-aaed-124e266ec468\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c75b449e-b5e2-4ae4-9301-feeb664fff4e\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"559550d217f25e08ebfcfe20\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"559550d240d2f2ca6ffdb1a8\"}, \"id\": \"559550d217f25e08fb448005\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:55:14 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/5e6fbd6f-4216-4181-859f-a78c2d5305f0/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="yVm70TePLgmtyqQPIyMCCDp5G3ERrtM01BSnrycSlec", oauth_signature="x7SfU8pT79h3mo8qcrtNiqX9IMA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848915", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:55:15 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/5e6fbd6f-4216-4181-859f-a78c2d5305f0/\", \"task_id\": \"5e6fbd6f-4216-4181-859f-a78c2d5305f0\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"559550d340d2f2ca6ffdb1b0\"}, \"id\": \"559550d317f25e4ab6c1437f\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:55:15 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/5e6fbd6f-4216-4181-859f-a78c2d5305f0/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="pTzIlO35DRXketcP318sR9kXBbPnp2eYyf77I5hY", oauth_signature="mraBLjPB8FfyQjshKeubtphjrsk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435848915", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 14:55:15 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/5e6fbd6f-4216-4181-859f-a78c2d5305f0/\", \"task_id\": \"5e6fbd6f-4216-4181-859f-a78c2d5305f0\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T14:55:15Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T14:55:15Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"559550d340d2f2ca6ffdb1b0\"}, \"id\": \"559550d317f25e08fb44800c\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 14:55:15 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/7bfb8ab7-eaa8-407f-b41d-66b87453506b/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="BC3EU1V5QPwseAdj9zOULJehzPxJKNNb8q0riigcwA", oauth_signature="4TsLgdcK2%2BMgr5f%2B82Rd05aLrws%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435851815", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 15:43:35 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/7bfb8ab7-eaa8-407f-b41d-66b87453506b/\", \"task_id\": \"7bfb8ab7-eaa8-407f-b41d-66b87453506b\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55955c2740d2f2ca6ffdb1c0\"}, \"id\": \"55955c2717f25e4ab6c143b6\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 15:43:35 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/7bfb8ab7-eaa8-407f-b41d-66b87453506b/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Ut5mzI5T118VTPRY6m0mNpoTbUecKVme8IwyCPLlg", oauth_signature="OqJSGG2SwARjH35gxylQYMCrNns%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435851815", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 15:43:35 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/7bfb8ab7-eaa8-407f-b41d-66b87453506b/\", \"task_id\": \"7bfb8ab7-eaa8-407f-b41d-66b87453506b\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T15:43:35Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T15:43:35Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55955c2740d2f2ca6ffdb1c0\"}, \"id\": \"55955c2717f25e08fb448025\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 15:43:35 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/ec93c74b-c419-4e2f-9172-aad66f406a26/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="mWPGEhvvdZrke0sWgzjfZTb5o6vOLQZdwUMEP2Rzpg", oauth_signature="l4GtxzQmox3vzGD2gSlOJ0vvKvw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435852112", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 15:48:32 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "631" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/ec93c74b-c419-4e2f-9172-aad66f406a26/\", \"task_id\": \"ec93c74b-c419-4e2f-9172-aad66f406a26\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55955d5040d2f2ca6ffdb1c4\"}, \"id\": \"55955d5017f25e08fb44802c\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 15:48:32 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/ec93c74b-c419-4e2f-9172-aad66f406a26/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="OgRxLCta2qsjrzdof934c61Nm7ldpGDacDmprFQ", oauth_signature="AgtfbidpBlAsih9eipR4ZrMXW18%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435852113", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 15:48:33 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/ec93c74b-c419-4e2f-9172-aad66f406a26/\", \"task_id\": \"ec93c74b-c419-4e2f-9172-aad66f406a26\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T15:48:32Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T15:48:32Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/3e4e1652-31e9-477a-b86d-0c370e97b48b/\", \"task_id\": \"3e4e1652-31e9-477a-b86d-0c370e97b48b\"}, {\"_href\": \"/pulp/api/v2/tasks/5ed2f294-ad14-40f3-91d0-6398667df1fb/\", \"task_id\": \"5ed2f294-ad14-40f3-91d0-6398667df1fb\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T15:48:32Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T15:48:32Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55955d5017f25e08ebfcfe51\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55955d5040d2f2ca6ffdb1c4\"}, \"id\": \"55955d5017f25e08fb44802c\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 15:48:33 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/3e4e1652-31e9-477a-b86d-0c370e97b48b/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="9k9GJ5rCqGVv80lx8m5cOdyi66J54S4b3YBrdiYqcs", oauth_signature="DblFmbK8y%2FrKB9KZ7fe4TavPKCA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435852113", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 15:48:33 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/3e4e1652-31e9-477a-b86d-0c370e97b48b/\", \"task_id\": \"3e4e1652-31e9-477a-b86d-0c370e97b48b\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T15:48:32Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T15:48:32Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T15:48:32Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T15:48:32Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55955d5017f25e08ebfcfe54\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55955d5040d2f2ca6ffdb1c6\"}, \"id\": \"55955d5017f25e08fb448033\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 15:48:33 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/5ed2f294-ad14-40f3-91d0-6398667df1fb/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Rccz9e6tCWtZaTaOz8s0YR6KDTV1YRdo3dg7172I", oauth_signature="WcyLDtyRayA%2BYRfyxLNZyB2Esrg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435852113", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 15:48:33 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/5ed2f294-ad14-40f3-91d0-6398667df1fb/\", \"task_id\": \"5ed2f294-ad14-40f3-91d0-6398667df1fb\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T15:48:32Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T15:48:32Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"2d8fe7d1-9c68-4370-b6df-2584e10120b4\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"138ea016-d647-4b88-97f7-604799c64439\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e172abf3-962d-4619-b8ce-74ad87e184c2\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"680f148b-39e2-459c-93bf-e232daaf711a\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f864ea01-00e8-493b-ba37-650c9cad3a9f\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"230b7c0b-107e-4408-8ab3-d4c3afa79f98\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b6ca73f8-ddf2-4a39-8e05-8a5ee3879804\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"485841d3-1926-4ce6-a9c1-a415291d38cc\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d6bf3e5b-7e56-49d2-b8ad-fb418b778174\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f5d0545f-e93a-47d5-86d8-7f84a10801ed\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"cc2787eb-7c13-42ec-aa27-0a89eb6c73f6\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T15:48:32Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T15:48:32Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"2d8fe7d1-9c68-4370-b6df-2584e10120b4\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"138ea016-d647-4b88-97f7-604799c64439\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e172abf3-962d-4619-b8ce-74ad87e184c2\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"680f148b-39e2-459c-93bf-e232daaf711a\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f864ea01-00e8-493b-ba37-650c9cad3a9f\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"230b7c0b-107e-4408-8ab3-d4c3afa79f98\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b6ca73f8-ddf2-4a39-8e05-8a5ee3879804\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"485841d3-1926-4ce6-a9c1-a415291d38cc\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d6bf3e5b-7e56-49d2-b8ad-fb418b778174\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f5d0545f-e93a-47d5-86d8-7f84a10801ed\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"cc2787eb-7c13-42ec-aa27-0a89eb6c73f6\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"55955d5017f25e08ebfcfe5c\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55955d5040d2f2ca6ffdb1c7\"}, \"id\": \"55955d5017f25e08fb448037\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 15:48:33 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/b0c23d87-3f63-4227-bd35-f6e4ad214a42/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="QrLsPW1t2DyLPZZPgSxBslRZ71pVhkeUjMQMcZdJ70", oauth_signature="uZYLed9Z20%2FKLCj7mm911E3lgpY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435852113", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 15:48:33 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/b0c23d87-3f63-4227-bd35-f6e4ad214a42/\", \"task_id\": \"b0c23d87-3f63-4227-bd35-f6e4ad214a42\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55955d5140d2f2ca6ffdb1d0\"}, \"id\": \"55955d5117f25e4ab6c143dc\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 15:48:33 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/b0c23d87-3f63-4227-bd35-f6e4ad214a42/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="atAhdVaUGgdfsAoi627JpX407L1cwaLyYUG1Tm7Oo", oauth_signature="KpYhVQxU%2BKq1IvD9naO0DDjNfb0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435852114", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 15:48:34 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/b0c23d87-3f63-4227-bd35-f6e4ad214a42/\", \"task_id\": \"b0c23d87-3f63-4227-bd35-f6e4ad214a42\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T15:48:33Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T15:48:33Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55955d5140d2f2ca6ffdb1d0\"}, \"id\": \"55955d5117f25e08fb44803e\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 15:48:34 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/a8d17f6f-db44-4224-9310-0ec4b51c2796/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="vZ70p1V3aJ7ZeIawmn3VjVmdDoqgKqMNhvCXzDWwU", oauth_signature="cnEAmWmUA6ipnPo081%2BtMOp46%2Fc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435852115", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 15:48:35 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/a8d17f6f-db44-4224-9310-0ec4b51c2796/\", \"task_id\": \"a8d17f6f-db44-4224-9310-0ec4b51c2796\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55955d5340d2f2ca6ffdb1d4\"}, \"id\": \"55955d5317f25e4ab6c143f3\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 15:48:35 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/a8d17f6f-db44-4224-9310-0ec4b51c2796/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="bv2jM3pZ0OH2v8pS4Pc0fDObVIWS1xrB2nyLpTfqkkw", oauth_signature="binJZQAbR5XkIoQqnsrAf6BE1eM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435852116", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 15:48:36 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/a8d17f6f-db44-4224-9310-0ec4b51c2796/\", \"task_id\": \"a8d17f6f-db44-4224-9310-0ec4b51c2796\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T15:48:36Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T15:48:35Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/921bfb97-1e17-469b-a0a7-ef3261a3752a/\", \"task_id\": \"921bfb97-1e17-469b-a0a7-ef3261a3752a\"}, {\"_href\": \"/pulp/api/v2/tasks/64796002-9675-42f2-bbc1-38f6e3656a91/\", \"task_id\": \"64796002-9675-42f2-bbc1-38f6e3656a91\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T15:48:35Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T15:48:36Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55955d5417f25e08ebfcfe6f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55955d5340d2f2ca6ffdb1d4\"}, \"id\": \"55955d5317f25e08fb448045\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 15:48:36 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/921bfb97-1e17-469b-a0a7-ef3261a3752a/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="2zanccLEfslbKaXlKHvG49kCpBThaO2jFzUigiDU", oauth_signature="0MqqJ2D%2FcJ%2FL7FkYe3z7VtkgM5A%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435852116", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 15:48:36 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/921bfb97-1e17-469b-a0a7-ef3261a3752a/\", \"task_id\": \"921bfb97-1e17-469b-a0a7-ef3261a3752a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T15:48:36Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T15:48:36Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T15:48:36Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T15:48:36Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55955d5417f25e08ebfcfe72\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55955d5440d2f2ca6ffdb1d6\"}, \"id\": \"55955d5417f25e08fb44804c\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 15:48:36 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/64796002-9675-42f2-bbc1-38f6e3656a91/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="DY6GasyAz2D9hNHr4H4Ei5xritO1uVSpCdEW85K0g", oauth_signature="z72G3rtYmoUm2qIGbgRadPs8%2BoQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435852116", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 15:48:36 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/64796002-9675-42f2-bbc1-38f6e3656a91/\", \"task_id\": \"64796002-9675-42f2-bbc1-38f6e3656a91\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T15:48:36Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T15:48:36Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c0dede31-6362-49dd-b73d-48658e544a6b\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"dc9c9444-d5c6-44ff-9253-3ad88cc697f9\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e53b8baf-79a4-4497-83d9-c92baf69501b\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d1711fcb-17af-4572-af85-a60f03476da9\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"618ab300-e8de-478d-99fc-217327e046e2\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8b41ab66-864b-4f41-be45-c00a1047dbc5\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"eb695cb9-488e-4765-b072-3e0a604db462\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b4aa0c5a-4485-4816-afdf-0fa933326654\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a078268a-6f28-428d-a649-9c5b093aa27d\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"bb75492a-1cb1-4793-a515-4ac217790149\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0530b50c-fd31-4ec0-a3c3-6c40a9580e59\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T15:48:36Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T15:48:36Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c0dede31-6362-49dd-b73d-48658e544a6b\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"dc9c9444-d5c6-44ff-9253-3ad88cc697f9\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e53b8baf-79a4-4497-83d9-c92baf69501b\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d1711fcb-17af-4572-af85-a60f03476da9\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"618ab300-e8de-478d-99fc-217327e046e2\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8b41ab66-864b-4f41-be45-c00a1047dbc5\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"eb695cb9-488e-4765-b072-3e0a604db462\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b4aa0c5a-4485-4816-afdf-0fa933326654\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a078268a-6f28-428d-a649-9c5b093aa27d\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"bb75492a-1cb1-4793-a515-4ac217790149\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0530b50c-fd31-4ec0-a3c3-6c40a9580e59\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"55955d5417f25e08ebfcfe7a\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55955d5440d2f2ca6ffdb1d7\"}, \"id\": \"55955d5417f25e08fb448050\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 15:48:36 GMT +- request: + method: post + uri: https://katello-centos7-devel.example.com/pulp/api/v2/content/units/package_group/search/ + body: + encoding: US-ASCII + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"4f9eea2a-a124-497e-8492-828b64444abc\"]}}},\"include_repos\":true}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Uw1Bk6xzVXX30SwcKlEZ0GzHlYf77Th9NoBP8XjG64", oauth_signature="6ZSYPCHTMOMwFmHvUkVvYIFcgGk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435852267", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "102" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 15:51:07 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "[]" + http_version: + recorded_at: Thu, 02 Jul 2015 15:51:07 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/8454fefe-274f-4fdc-a3b9-adf589366f08/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="3itwB77eSf9xwG5uTl7LKztc1McHcamhSxudh6hRk", oauth_signature="pMM3eCpu3MQV%2FEdtFg5Jka0jMkY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435853040", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 16:04:00 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/8454fefe-274f-4fdc-a3b9-adf589366f08/\", \"task_id\": \"8454fefe-274f-4fdc-a3b9-adf589366f08\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"559560f040d2f2ca6ffdb1e0\"}, \"id\": \"559560f017f25e4ab6c14408\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 16:04:00 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/8454fefe-274f-4fdc-a3b9-adf589366f08/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="bRatjYDaer517Aju3KqYD0UBWXrUzL0904ioxJEIg", oauth_signature="kWouofsY414h6KP2oIoZ1EoNTz8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435853040", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 16:04:00 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/8454fefe-274f-4fdc-a3b9-adf589366f08/\", \"task_id\": \"8454fefe-274f-4fdc-a3b9-adf589366f08\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T16:04:00Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T16:04:00Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"559560f040d2f2ca6ffdb1e0\"}, \"id\": \"559560f017f25e08fb448057\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 16:04:00 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/f305e379-d7d4-45c8-920e-e3b160da5ccd/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="I7daAtLkkNYOtPC67A97xxRhKkYkYZrlagiqZF4", oauth_signature="xE6ps262%2BYljlU7W2GET%2FjEz5Gs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857436", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:17:16 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/f305e379-d7d4-45c8-920e-e3b160da5ccd/\", \"task_id\": \"f305e379-d7d4-45c8-920e-e3b160da5ccd\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595721c40d2f2ca6ffdb1e4\"}, \"id\": \"5595721c17f25e4ab6c1441f\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:17:16 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/f305e379-d7d4-45c8-920e-e3b160da5ccd/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="tZFTWZk0TT8tOr0Ohb459hQN9GElLQynrj9MSDVEqY", oauth_signature="xo%2B4klS6aTqr%2FAJ0Olj2C7zQOD0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857437", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:17:17 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/f305e379-d7d4-45c8-920e-e3b160da5ccd/\", \"task_id\": \"f305e379-d7d4-45c8-920e-e3b160da5ccd\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T17:17:16Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:17:16Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/e1347a47-8586-484c-83aa-65576a2fde1b/\", \"task_id\": \"e1347a47-8586-484c-83aa-65576a2fde1b\"}, {\"_href\": \"/pulp/api/v2/tasks/6eb744eb-de5f-4224-ae5d-d75b195e3127/\", \"task_id\": \"6eb744eb-de5f-4224-ae5d-d75b195e3127\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T17:17:16Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T17:17:16Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5595721c17f25e08ebfcfe8d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595721c40d2f2ca6ffdb1e4\"}, \"id\": \"5595721c17f25e08fb44805e\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:17:17 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/e1347a47-8586-484c-83aa-65576a2fde1b/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="2XNfGj9xTmUdSfaGCUP0y83uYdch4N9CYF1BvQkP6k", oauth_signature="JP40HmuDdKyqkEzaEb1zA%2B0v1wY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857437", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:17:17 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/e1347a47-8586-484c-83aa-65576a2fde1b/\", \"task_id\": \"e1347a47-8586-484c-83aa-65576a2fde1b\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:17:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:17:17Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:17:17Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:17:17Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"5595721d17f25e08ebfcfe90\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595721c40d2f2ca6ffdb1e6\"}, \"id\": \"5595721d17f25e08fb448065\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:17:17 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/6eb744eb-de5f-4224-ae5d-d75b195e3127/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="5HFBhv4Tmy8KZ9WjSRO3sGgKwNJGPUQGrYRXp75HUbc", oauth_signature="%2FgjynN0ky7%2FucStcjyIEc8XMnA0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857437", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:17:17 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/6eb744eb-de5f-4224-ae5d-d75b195e3127/\", \"task_id\": \"6eb744eb-de5f-4224-ae5d-d75b195e3127\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:17:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:17:17Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a21112c3-5091-4980-a7a2-b86b125ca0c1\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a5bba714-3a17-414f-9ccc-275d8e89081d\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"424a6d09-f010-4bd3-ae9d-efd4d742cf49\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"eee6efe9-c71c-4a83-8559-974bc9179c05\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c9738a76-b168-4eeb-ad1d-459ddc9ceb10\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8a2bcd8d-c63b-4cb9-8894-539f1796462a\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f23c85f9-3648-4904-88db-61af0f46c187\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"4d132afe-727c-4edc-9578-78591dbc6ccf\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a32f18ff-9cfe-4d12-b6fb-f10adb07e426\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"fa0b564c-25ab-4c25-94fb-1470549467fa\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"19a7d833-f45d-4178-b54e-a5b654ada2a1\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:17:17Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:17:17Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a21112c3-5091-4980-a7a2-b86b125ca0c1\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a5bba714-3a17-414f-9ccc-275d8e89081d\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"424a6d09-f010-4bd3-ae9d-efd4d742cf49\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"eee6efe9-c71c-4a83-8559-974bc9179c05\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c9738a76-b168-4eeb-ad1d-459ddc9ceb10\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8a2bcd8d-c63b-4cb9-8894-539f1796462a\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f23c85f9-3648-4904-88db-61af0f46c187\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"4d132afe-727c-4edc-9578-78591dbc6ccf\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a32f18ff-9cfe-4d12-b6fb-f10adb07e426\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"fa0b564c-25ab-4c25-94fb-1470549467fa\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"19a7d833-f45d-4178-b54e-a5b654ada2a1\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"5595721d17f25e08ebfcfe98\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595721c40d2f2ca6ffdb1e7\"}, \"id\": \"5595721d17f25e08fb448069\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:17:17 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/fe3fcec5-12a9-484b-9f4c-0f6e72ad0e73/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="rAyo9ucw9EjEafyOCQ4gWEPOrlpKX3lsyWbZ5nZjmA", oauth_signature="8BlvWInktnEVZ0qD58okCKuGG6s%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857437", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:17:17 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/fe3fcec5-12a9-484b-9f4c-0f6e72ad0e73/\", \"task_id\": \"fe3fcec5-12a9-484b-9f4c-0f6e72ad0e73\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595721d40d2f2ca6ffdb1f0\"}, \"id\": \"5595721d17f25e4ab6c1442e\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:17:17 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/fe3fcec5-12a9-484b-9f4c-0f6e72ad0e73/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="QT3egnnKZwHP70ncp3KZKT9C2sUCH6TJf3VwIsj9Z8o", oauth_signature="XON2IOwh4zUHwuMzroJnISleAVY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857438", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:17:18 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/fe3fcec5-12a9-484b-9f4c-0f6e72ad0e73/\", \"task_id\": \"fe3fcec5-12a9-484b-9f4c-0f6e72ad0e73\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T17:17:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:17:17Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595721d40d2f2ca6ffdb1f0\"}, \"id\": \"5595721d17f25e08fb448070\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:17:18 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/8cebb75f-bbea-4b54-95ea-a5efa5833362/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="fW8FjKp5321FA9q9o5xOIk1kOHn7cvpXZmGI66iZ7k", oauth_signature="HCbM6h7hHtKmFsy5sBIC8ttYHaE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857801", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:23:21 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/8cebb75f-bbea-4b54-95ea-a5efa5833362/\", \"task_id\": \"8cebb75f-bbea-4b54-95ea-a5efa5833362\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595738940d2f2ca6ffdb200\"}, \"id\": \"5595738917f25e4ab6c14465\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:23:21 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/8cebb75f-bbea-4b54-95ea-a5efa5833362/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="P2174vTZy0lyMQ2I8GD16tk2NLKPNFvfuULwfOPRjY", oauth_signature="a1JTIDLbnblaZCwQdjwHhp48gq4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857802", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:23:22 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/8cebb75f-bbea-4b54-95ea-a5efa5833362/\", \"task_id\": \"8cebb75f-bbea-4b54-95ea-a5efa5833362\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T17:23:21Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:23:21Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595738940d2f2ca6ffdb200\"}, \"id\": \"5595738917f25e08fb448086\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:23:22 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/ac912472-48e0-4b84-9594-fe6b7247fde2/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="15WJx7tpdvRFMn6kCYaTwu6PVRlakQLaofGD8QzfE5k", oauth_signature="M2n8v4cYWD55ubWjFZJEIfRTX9k%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857914", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:25:14 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/ac912472-48e0-4b84-9594-fe6b7247fde2/\", \"task_id\": \"ac912472-48e0-4b84-9594-fe6b7247fde2\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"559573fa40d2f2ca6ffdb204\"}, \"id\": \"559573fa17f25e4ab6c1447c\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:25:14 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/ac912472-48e0-4b84-9594-fe6b7247fde2/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="nr0mfzVrz9pKJGRcp94oAeZAjxtjBmBM8wL1IZJMgs", oauth_signature="j16qWa23S%2BFRdNMqFzplBJt%2FIAs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857914", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:25:14 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/ac912472-48e0-4b84-9594-fe6b7247fde2/\", \"task_id\": \"ac912472-48e0-4b84-9594-fe6b7247fde2\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T17:25:14Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:25:14Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/17ecb64e-73cb-4204-a7b0-44998d5a309a/\", \"task_id\": \"17ecb64e-73cb-4204-a7b0-44998d5a309a\"}, {\"_href\": \"/pulp/api/v2/tasks/18d47207-835e-4edd-850f-95a78e49c625/\", \"task_id\": \"18d47207-835e-4edd-850f-95a78e49c625\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T17:25:14Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T17:25:14Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"559573fa17f25e08ebfcfec9\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"559573fa40d2f2ca6ffdb204\"}, \"id\": \"559573fa17f25e08fb44808d\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:25:14 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/17ecb64e-73cb-4204-a7b0-44998d5a309a/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="zjSdvqOwTTLre1qW9L2ORXrRymlxk6EE6MRQHUtMhg", oauth_signature="gAQDzzueRgS9cpDKdlHivZe21i0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857914", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:25:14 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/17ecb64e-73cb-4204-a7b0-44998d5a309a/\", \"task_id\": \"17ecb64e-73cb-4204-a7b0-44998d5a309a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:25:14Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:25:14Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:25:14Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:25:14Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"559573fa17f25e08ebfcfecc\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"559573fa40d2f2ca6ffdb206\"}, \"id\": \"559573fa17f25e08fb448094\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:25:14 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/18d47207-835e-4edd-850f-95a78e49c625/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="BPqYQyqSc1zyvgSNlBVJ1LnEn3xY6u0i4XxLrtalk", oauth_signature="aotJacRyBfbSTuX41NRA9SX%2FYBU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857914", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:25:14 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "658" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/18d47207-835e-4edd-850f-95a78e49c625/\", \"task_id\": \"18d47207-835e-4edd-850f-95a78e49c625\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": null, \"start_time\": \"2015-07-02T17:25:14Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"running\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"559573fa40d2f2ca6ffdb207\"}, \"id\": \"559573fa17f25e08fb448098\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:25:14 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/ac912472-48e0-4b84-9594-fe6b7247fde2/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="3CiYeca7uXRWWE1PpKSmIp9Nx1a4Weogsm4nsI7U", oauth_signature="tQ8cxQ1X2k%2B5tiro%2BYcIq1%2B4nFw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857915", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:25:15 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/ac912472-48e0-4b84-9594-fe6b7247fde2/\", \"task_id\": \"ac912472-48e0-4b84-9594-fe6b7247fde2\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T17:25:14Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:25:14Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/17ecb64e-73cb-4204-a7b0-44998d5a309a/\", \"task_id\": \"17ecb64e-73cb-4204-a7b0-44998d5a309a\"}, {\"_href\": \"/pulp/api/v2/tasks/18d47207-835e-4edd-850f-95a78e49c625/\", \"task_id\": \"18d47207-835e-4edd-850f-95a78e49c625\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T17:25:14Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T17:25:14Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"559573fa17f25e08ebfcfec9\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"559573fa40d2f2ca6ffdb204\"}, \"id\": \"559573fa17f25e08fb44808d\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:25:15 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/17ecb64e-73cb-4204-a7b0-44998d5a309a/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="9ahpVFi1NxL8UdCHaHIQM6x7QUb8wjYQJAts3rYzQ", oauth_signature="cqwXr812SBm7%2BpG73kiQ32SH1rc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857915", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:25:15 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/17ecb64e-73cb-4204-a7b0-44998d5a309a/\", \"task_id\": \"17ecb64e-73cb-4204-a7b0-44998d5a309a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:25:14Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:25:14Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:25:14Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:25:14Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"559573fa17f25e08ebfcfecc\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"559573fa40d2f2ca6ffdb206\"}, \"id\": \"559573fa17f25e08fb448094\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:25:15 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/18d47207-835e-4edd-850f-95a78e49c625/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="a7M59Lz8MbrmTY2RG7mBAs7L0qf7DelLnUHRXDuWC8g", oauth_signature="g6IhSc4LWe7SE%2Fb%2F%2BrnZu9STfkI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857915", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:25:15 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/18d47207-835e-4edd-850f-95a78e49c625/\", \"task_id\": \"18d47207-835e-4edd-850f-95a78e49c625\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:25:14Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:25:14Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0e3b8662-7c15-4988-afe9-362449b715d3\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e71d02f7-8e3c-4cc5-89ea-ea1a2781c8c7\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"959f61d3-4fb8-44a6-85aa-8dd346213f3b\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1bf926ca-719f-4b76-99ad-3cd495641e76\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"229c3ffa-3859-4108-adb8-1126e6dadaab\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"014e0359-bbfe-4902-a3c5-aa52a63d146a\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"def9bc73-cb45-4ba9-a789-09e7663290db\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"4e825705-8354-4c19-9215-c866cf8bdb75\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0da0fbbc-360c-4aa1-b791-a9f1285d1265\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d1e391fa-1620-4971-9ea0-bc691f3929ec\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"10a40250-58f0-475e-9c25-45d93de25a58\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:25:14Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:25:14Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0e3b8662-7c15-4988-afe9-362449b715d3\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e71d02f7-8e3c-4cc5-89ea-ea1a2781c8c7\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"959f61d3-4fb8-44a6-85aa-8dd346213f3b\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1bf926ca-719f-4b76-99ad-3cd495641e76\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"229c3ffa-3859-4108-adb8-1126e6dadaab\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"014e0359-bbfe-4902-a3c5-aa52a63d146a\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"def9bc73-cb45-4ba9-a789-09e7663290db\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"4e825705-8354-4c19-9215-c866cf8bdb75\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0da0fbbc-360c-4aa1-b791-a9f1285d1265\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d1e391fa-1620-4971-9ea0-bc691f3929ec\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"10a40250-58f0-475e-9c25-45d93de25a58\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"559573fa17f25e08ebfcfed4\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"559573fa40d2f2ca6ffdb207\"}, \"id\": \"559573fa17f25e08fb448098\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:25:15 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/27108b3a-8074-4f5d-b49d-1d4bf901f382/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="SVjc0d2NvSYltRawRYvf4x7aTKbOYYULcwDWrTw", oauth_signature="yEgv3VTb74Lh1loEyCeGnHSWovo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857915", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:25:15 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/27108b3a-8074-4f5d-b49d-1d4bf901f382/\", \"task_id\": \"27108b3a-8074-4f5d-b49d-1d4bf901f382\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"559573fb40d2f2ca6ffdb210\"}, \"id\": \"559573fb17f25e4ab6c14491\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:25:15 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/27108b3a-8074-4f5d-b49d-1d4bf901f382/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="7KJdClngFK2HPZuCjtkUD19g8Se4MQRRMXT0Wr5JVs", oauth_signature="u8YOgb7lYr%2B9SUxnxGcfxGE41w4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857916", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:25:16 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/27108b3a-8074-4f5d-b49d-1d4bf901f382/\", \"task_id\": \"27108b3a-8074-4f5d-b49d-1d4bf901f382\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T17:25:15Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:25:15Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"559573fb40d2f2ca6ffdb210\"}, \"id\": \"559573fb17f25e08fb44809f\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:25:16 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/80a25a15-8d77-4a02-bf21-a38e7da31361/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="3CPHLoxCDaqWZqu1ThGGW4uL40uoed6k2N3MBMvvY", oauth_signature="D5kG63RrTzQzSRuXFJMUPVCq%2BPo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857918", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:25:18 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/80a25a15-8d77-4a02-bf21-a38e7da31361/\", \"task_id\": \"80a25a15-8d77-4a02-bf21-a38e7da31361\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"559573fe40d2f2ca6ffdb214\"}, \"id\": \"559573fe17f25e4ab6c144a8\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:25:18 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/80a25a15-8d77-4a02-bf21-a38e7da31361/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Vk6Bhcd8urX5dgxozvMYK9CepU8ZNi7hQi9cJfU", oauth_signature="AEI5xhNyq1PuqImXQb1s8awunPc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857918", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:25:18 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/80a25a15-8d77-4a02-bf21-a38e7da31361/\", \"task_id\": \"80a25a15-8d77-4a02-bf21-a38e7da31361\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T17:25:18Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:25:18Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/018718f4-376e-4576-a3d4-8a8b72ca8218/\", \"task_id\": \"018718f4-376e-4576-a3d4-8a8b72ca8218\"}, {\"_href\": \"/pulp/api/v2/tasks/c5fb4815-ad9e-4e36-8ea1-61f6620d9970/\", \"task_id\": \"c5fb4815-ad9e-4e36-8ea1-61f6620d9970\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T17:25:18Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T17:25:18Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"559573fe17f25e08ebfcfee7\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"559573fe40d2f2ca6ffdb214\"}, \"id\": \"559573fe17f25e08fb4480a6\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:25:18 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/018718f4-376e-4576-a3d4-8a8b72ca8218/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="ZA9Q4129zBEYsyhALWN17DuakstVRVmgTYeiE2Jo2c", oauth_signature="5ljWA%2B7x8DpYNYmcpa3BiQ4BM74%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857918", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:25:18 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/018718f4-376e-4576-a3d4-8a8b72ca8218/\", \"task_id\": \"018718f4-376e-4576-a3d4-8a8b72ca8218\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:25:18Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:25:18Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:25:18Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:25:18Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"559573fe17f25e08ebfcfeea\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"559573fe40d2f2ca6ffdb216\"}, \"id\": \"559573fe17f25e08fb4480ad\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:25:19 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/c5fb4815-ad9e-4e36-8ea1-61f6620d9970/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="ua21qLuSUrOPPpukYmUCu2vHG6b4iqU64CUXRjXeNbM", oauth_signature="QR5Z4BN8VQC97FkQh3j6NXaN14Q%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857919", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:25:19 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/c5fb4815-ad9e-4e36-8ea1-61f6620d9970/\", \"task_id\": \"c5fb4815-ad9e-4e36-8ea1-61f6620d9970\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:25:19Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:25:18Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b860d18d-18ab-4757-bf72-8a315cb03e52\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e5f8e84c-d40e-476d-b9cb-b5d2fe9f0fe6\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0408553f-b858-469f-a013-31b9f867dd55\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"692d538e-c84f-4021-89e5-bc7601abb370\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"31fdbc5a-4e1e-498c-b165-e1ba99290591\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"cbb74bad-3c35-4df8-ab02-b3393d623e49\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6f1e9b08-7903-4c96-8769-ac72f266661e\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8e5c88f2-4962-4cc1-9e98-97fe0562a1d8\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"011d976f-fc64-4664-8f88-bbea6ff89c4f\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"eede9f27-f1c6-48e8-a14b-e4ddadd16aef\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"5d0c3d8f-fe4e-43b7-9d20-e0bbaace1219\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:25:18Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:25:19Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b860d18d-18ab-4757-bf72-8a315cb03e52\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e5f8e84c-d40e-476d-b9cb-b5d2fe9f0fe6\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0408553f-b858-469f-a013-31b9f867dd55\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"692d538e-c84f-4021-89e5-bc7601abb370\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"31fdbc5a-4e1e-498c-b165-e1ba99290591\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"cbb74bad-3c35-4df8-ab02-b3393d623e49\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6f1e9b08-7903-4c96-8769-ac72f266661e\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8e5c88f2-4962-4cc1-9e98-97fe0562a1d8\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"011d976f-fc64-4664-8f88-bbea6ff89c4f\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"eede9f27-f1c6-48e8-a14b-e4ddadd16aef\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"5d0c3d8f-fe4e-43b7-9d20-e0bbaace1219\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"559573ff17f25e08ebfcfef2\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"559573fe40d2f2ca6ffdb217\"}, \"id\": \"559573fe17f25e08fb4480b1\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:25:19 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/f0b59484-7da5-4761-a3f3-1037330cff67/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="y1xz3PG29MZs9f7CwOQRZVggN7kBEqGihbwO0FC48", oauth_signature="KsdVOrzm9P6yh3sCQ7%2Fqsj1rOeQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857957", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:25:57 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/f0b59484-7da5-4761-a3f3-1037330cff67/\", \"task_id\": \"f0b59484-7da5-4761-a3f3-1037330cff67\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595742540d2f2ca6ffdb220\"}, \"id\": \"5595742517f25e4ab6c144bb\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:25:57 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/f0b59484-7da5-4761-a3f3-1037330cff67/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="dgkfg78aPofIqUqgqcapZbhJcUnbsWEcql1YIG3jWs", oauth_signature="g1ycV%2FPtwJHB5r0QzhyZ7Amc6WY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435857958", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:25:58 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/f0b59484-7da5-4761-a3f3-1037330cff67/\", \"task_id\": \"f0b59484-7da5-4761-a3f3-1037330cff67\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T17:25:57Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:25:57Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595742540d2f2ca6ffdb220\"}, \"id\": \"5595742517f25e08fb4480b8\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:25:58 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/3fa927ac-f5ec-470d-bb1f-5bc8eb0af47c/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="L7AJo46IXPoxAM8apLC3XdnijbPRxxzRmwGdf08", oauth_signature="t6BsRj8FsmzydHLuuSplj1p4VPc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858485", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:34:45 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/3fa927ac-f5ec-470d-bb1f-5bc8eb0af47c/\", \"task_id\": \"3fa927ac-f5ec-470d-bb1f-5bc8eb0af47c\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595763540d2f2ca6ffdb224\"}, \"id\": \"5595763517f25e4ab6c144d2\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:34:45 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/3fa927ac-f5ec-470d-bb1f-5bc8eb0af47c/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="YC5V0400l3SskUOg55QpbCMZPvalCGF6Yo2TP7XpmE", oauth_signature="kFk6h7tdxT3xFDYrZgwxzj39UGU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858486", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:34:46 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/3fa927ac-f5ec-470d-bb1f-5bc8eb0af47c/\", \"task_id\": \"3fa927ac-f5ec-470d-bb1f-5bc8eb0af47c\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T17:34:45Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:34:45Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/af07fc9c-c8b7-46e2-8901-e7b62b71b04a/\", \"task_id\": \"af07fc9c-c8b7-46e2-8901-e7b62b71b04a\"}, {\"_href\": \"/pulp/api/v2/tasks/7f916602-1a14-4278-9988-a8346de1926e/\", \"task_id\": \"7f916602-1a14-4278-9988-a8346de1926e\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T17:34:45Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T17:34:45Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5595763517f25e08ebfcff05\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595763540d2f2ca6ffdb224\"}, \"id\": \"5595763517f25e08fb4480bf\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:34:46 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/af07fc9c-c8b7-46e2-8901-e7b62b71b04a/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="xT0yykfflmSlQ0rdxXyHl7TfzMxI86Gk20FpyxJqDY", oauth_signature="S2H%2F0IGdpnbf0T9u346SnM4Ft%2Fo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858486", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:34:46 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/af07fc9c-c8b7-46e2-8901-e7b62b71b04a/\", \"task_id\": \"af07fc9c-c8b7-46e2-8901-e7b62b71b04a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:34:46Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:34:46Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:34:46Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:34:46Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"5595763617f25e08ebfcff08\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595763540d2f2ca6ffdb226\"}, \"id\": \"5595763517f25e08fb4480c3\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:34:46 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/7f916602-1a14-4278-9988-a8346de1926e/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="harsEw02eSohnLCgz9fLdAoyuH5WO5RA1WUBETjIiA", oauth_signature="P7%2BEAq3bLpKhofy1WVrg%2BqfVa0I%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858486", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:34:46 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/7f916602-1a14-4278-9988-a8346de1926e/\", \"task_id\": \"7f916602-1a14-4278-9988-a8346de1926e\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:34:46Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:34:46Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"489f7267-959c-48ad-bc6a-9abdbd270afa\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d0b8040f-e317-41f4-9ed6-8b163412b285\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3fda6458-1201-46b7-8ed2-216a964d5aa8\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b869b764-3f0e-480a-bc16-9b9d28018167\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"94d5a012-b300-4ed1-a82f-ce9394985fd0\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"53fe1f8d-d502-44f8-b5f9-59bc9fcd18ff\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"46a74fcb-4620-4da6-8996-4be7d54da4db\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"52cfe5cb-eb23-4949-b2cb-49c1b662b0bf\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"654f0f10-0969-4970-a8ef-7de480cf9410\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"325eca4a-1af1-420c-bfb0-f38a004c1ec0\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0ee8739f-bc22-4c10-a578-94a5264c4436\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:34:46Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:34:46Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"489f7267-959c-48ad-bc6a-9abdbd270afa\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d0b8040f-e317-41f4-9ed6-8b163412b285\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3fda6458-1201-46b7-8ed2-216a964d5aa8\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b869b764-3f0e-480a-bc16-9b9d28018167\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"94d5a012-b300-4ed1-a82f-ce9394985fd0\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"53fe1f8d-d502-44f8-b5f9-59bc9fcd18ff\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"46a74fcb-4620-4da6-8996-4be7d54da4db\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"52cfe5cb-eb23-4949-b2cb-49c1b662b0bf\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"654f0f10-0969-4970-a8ef-7de480cf9410\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"325eca4a-1af1-420c-bfb0-f38a004c1ec0\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0ee8739f-bc22-4c10-a578-94a5264c4436\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"5595763617f25e08ebfcff10\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595763540d2f2ca6ffdb227\"}, \"id\": \"5595763617f25e08fb4480c7\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:34:46 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/b5aba89e-0b9a-45ba-b97e-f318aa960d6d/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="AB7FOtqeASUZU6A9HCvQWDX4si5CQB9j4g2bKywwsfk", oauth_signature="AGoxL1jeqKVRGCaeTfk46TZA4Es%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858486", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:34:46 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/b5aba89e-0b9a-45ba-b97e-f318aa960d6d/\", \"task_id\": \"b5aba89e-0b9a-45ba-b97e-f318aa960d6d\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595763640d2f2ca6ffdb230\"}, \"id\": \"5595763617f25e4ab6c144e1\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:34:46 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/b5aba89e-0b9a-45ba-b97e-f318aa960d6d/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="pQIVmNSbWSzglYrvO8jgPmtNxShayIHpYgitdSxU", oauth_signature="Vd3quOFGo7CJu7O%2BccX%2FGjSXzVQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858487", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:34:47 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/b5aba89e-0b9a-45ba-b97e-f318aa960d6d/\", \"task_id\": \"b5aba89e-0b9a-45ba-b97e-f318aa960d6d\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T17:34:46Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:34:46Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595763640d2f2ca6ffdb230\"}, \"id\": \"5595763617f25e08fb4480ce\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:34:47 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/fae13f84-b3bb-4f83-8aa3-94df1604d9ea/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="hGPq5FdoQPMo9NJH6IlU85AzMt65zEiSmgE2TLnQ9Q", oauth_signature="5Psgv3AaVT3eKivOCrw%2FVZCW5p0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858489", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:34:49 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/fae13f84-b3bb-4f83-8aa3-94df1604d9ea/\", \"task_id\": \"fae13f84-b3bb-4f83-8aa3-94df1604d9ea\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595763940d2f2ca6ffdb234\"}, \"id\": \"5595763917f25e4ab6c144f8\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:34:49 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/fae13f84-b3bb-4f83-8aa3-94df1604d9ea/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="uordfMYPHw8VgDiGrXZrm624Bmo8gNPzPFkASwvQ", oauth_signature="nrKgziCHtcZjHNiFA9PpgRupK7M%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858489", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:34:49 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/fae13f84-b3bb-4f83-8aa3-94df1604d9ea/\", \"task_id\": \"fae13f84-b3bb-4f83-8aa3-94df1604d9ea\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T17:34:49Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:34:49Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8d6d1196-8aa2-4146-8a5d-6c97a6524ef5/\", \"task_id\": \"8d6d1196-8aa2-4146-8a5d-6c97a6524ef5\"}, {\"_href\": \"/pulp/api/v2/tasks/59740212-1688-4e70-8957-e006091248f2/\", \"task_id\": \"59740212-1688-4e70-8957-e006091248f2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T17:34:49Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T17:34:49Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5595763917f25e08ebfcff23\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595763940d2f2ca6ffdb234\"}, \"id\": \"5595763917f25e08fb4480d5\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:34:49 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/8d6d1196-8aa2-4146-8a5d-6c97a6524ef5/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="WMYrOmWVSq3p5djq2H3ntIYMT7eqFLBQzjsyX0Q8K8", oauth_signature="4ePEiSk3uwoeBb1vmcrSBkwnixo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858489", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:34:49 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/8d6d1196-8aa2-4146-8a5d-6c97a6524ef5/\", \"task_id\": \"8d6d1196-8aa2-4146-8a5d-6c97a6524ef5\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:34:49Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:34:49Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:34:49Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:34:49Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"5595763917f25e08ebfcff26\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595763940d2f2ca6ffdb236\"}, \"id\": \"5595763917f25e08fb4480d9\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:34:49 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/59740212-1688-4e70-8957-e006091248f2/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="rikeh75Si9gylCPzTp9cW2QMNhRnrYT9jkHdlrXgHU0", oauth_signature="jWiecMegOy4Jl4DngM1oyLbDGXU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858489", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:34:49 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "640" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/59740212-1688-4e70-8957-e006091248f2/\", \"task_id\": \"59740212-1688-4e70-8957-e006091248f2\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595763940d2f2ca6ffdb237\"}, \"id\": \"5595763917f25e08fb4480dd\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:34:49 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/fae13f84-b3bb-4f83-8aa3-94df1604d9ea/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="kh4j7EcZFhwH1y4sx4B4EXool8LRNAV8VCDC2q4wP4", oauth_signature="m%2F1SntrnXfeqBDUKQEDp7%2BEEb4c%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858490", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:34:50 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/fae13f84-b3bb-4f83-8aa3-94df1604d9ea/\", \"task_id\": \"fae13f84-b3bb-4f83-8aa3-94df1604d9ea\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T17:34:49Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:34:49Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8d6d1196-8aa2-4146-8a5d-6c97a6524ef5/\", \"task_id\": \"8d6d1196-8aa2-4146-8a5d-6c97a6524ef5\"}, {\"_href\": \"/pulp/api/v2/tasks/59740212-1688-4e70-8957-e006091248f2/\", \"task_id\": \"59740212-1688-4e70-8957-e006091248f2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T17:34:49Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T17:34:49Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5595763917f25e08ebfcff23\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595763940d2f2ca6ffdb234\"}, \"id\": \"5595763917f25e08fb4480d5\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:34:50 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/8d6d1196-8aa2-4146-8a5d-6c97a6524ef5/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="HH300Szy1S7hIJh36UopdDvLegR2g8NbTDEhwWCms", oauth_signature="FgjWIULjsti36aXBr8FcPYJa99Q%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858490", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:34:50 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/8d6d1196-8aa2-4146-8a5d-6c97a6524ef5/\", \"task_id\": \"8d6d1196-8aa2-4146-8a5d-6c97a6524ef5\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:34:49Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:34:49Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:34:49Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:34:49Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"5595763917f25e08ebfcff26\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595763940d2f2ca6ffdb236\"}, \"id\": \"5595763917f25e08fb4480d9\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:34:50 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/59740212-1688-4e70-8957-e006091248f2/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="eCsnJDEkPL65ZS5tzYpR9aQGxO46Nd7qq7J6EqarNk", oauth_signature="NAMAa97wUHZjiDLA640TCOdWkDU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858490", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:34:50 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/59740212-1688-4e70-8957-e006091248f2/\", \"task_id\": \"59740212-1688-4e70-8957-e006091248f2\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:34:50Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:34:49Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"95f7f6d0-4e81-419c-9f88-e390fac9c848\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9d8e47c3-a59c-4c38-8f96-0ecfff97077c\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c0d118c9-42ec-4c1c-836c-8ef3602546bc\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"56992e93-0286-4939-a0e0-6b8e9eea9c7d\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a71deffc-3532-4106-8f8c-e4e5a3212775\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f7525553-d3fe-4e0a-953c-32cf3857f3f3\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"fc70fb18-71b7-4700-b167-7df0cd4d1b14\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"47ce7551-f1c5-4239-b30e-b1695e451170\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"fb11e2da-0551-4a9f-8c85-7d3896886704\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a9c49668-c8d3-4fcc-af41-3063fd3bfc0f\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"182d2536-1d92-4133-b5bd-f5402cb89b63\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:34:49Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:34:50Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"95f7f6d0-4e81-419c-9f88-e390fac9c848\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9d8e47c3-a59c-4c38-8f96-0ecfff97077c\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c0d118c9-42ec-4c1c-836c-8ef3602546bc\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"56992e93-0286-4939-a0e0-6b8e9eea9c7d\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a71deffc-3532-4106-8f8c-e4e5a3212775\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f7525553-d3fe-4e0a-953c-32cf3857f3f3\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"fc70fb18-71b7-4700-b167-7df0cd4d1b14\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"47ce7551-f1c5-4239-b30e-b1695e451170\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"fb11e2da-0551-4a9f-8c85-7d3896886704\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a9c49668-c8d3-4fcc-af41-3063fd3bfc0f\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"182d2536-1d92-4133-b5bd-f5402cb89b63\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"5595763a17f25e08ebfcff2e\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595763940d2f2ca6ffdb237\"}, \"id\": \"5595763917f25e08fb4480dd\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:34:50 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/25ebe487-5b7c-4eab-8250-d5fe6e7fb140/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="UYalShBhjie7kdId1784UWjGE8R249ULplYKsRLKms", oauth_signature="EcFnw0ZAyjjaT0vPxGGIWWrZvKU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858546", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:35:46 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/25ebe487-5b7c-4eab-8250-d5fe6e7fb140/\", \"task_id\": \"25ebe487-5b7c-4eab-8250-d5fe6e7fb140\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595767240d2f2ca6ffdb240\"}, \"id\": \"5595767217f25e4ab6c14511\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:35:46 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/25ebe487-5b7c-4eab-8250-d5fe6e7fb140/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="VMxyp3zaUh8ahnHGm0oBGpvNsrWS1uooaBKpKdXBiTA", oauth_signature="Z%2FR7jKB584ZSwpG9mVXz8q0qShw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858547", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:35:47 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/25ebe487-5b7c-4eab-8250-d5fe6e7fb140/\", \"task_id\": \"25ebe487-5b7c-4eab-8250-d5fe6e7fb140\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T17:35:46Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:35:46Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595767240d2f2ca6ffdb240\"}, \"id\": \"5595767217f25e08fb4480e4\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:35:47 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/ed8c968c-55e3-426a-9fb3-7b69ca9188f6/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="gYhTB0TkTKvBogVf2d5ieZzNbf3TY036a2hR68rv5LA", oauth_signature="RXotqS95W0Ui8gMHW7J2VnBDRLw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858727", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:38:47 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/ed8c968c-55e3-426a-9fb3-7b69ca9188f6/\", \"task_id\": \"ed8c968c-55e3-426a-9fb3-7b69ca9188f6\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595772740d2f2ca6ffdb244\"}, \"id\": \"5595772717f25e4ab6c14528\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:38:47 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/ed8c968c-55e3-426a-9fb3-7b69ca9188f6/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="DNHpJbFnccDvsowGPUA6iNCsMeBjiYPw09DWfYRTvHg", oauth_signature="xSkJa9rwxEwe9ZWNC9LdBoKMnsc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858728", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:38:48 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/ed8c968c-55e3-426a-9fb3-7b69ca9188f6/\", \"task_id\": \"ed8c968c-55e3-426a-9fb3-7b69ca9188f6\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T17:38:48Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:38:48Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/56f02071-a1c1-423c-b8aa-50f8dff2770a/\", \"task_id\": \"56f02071-a1c1-423c-b8aa-50f8dff2770a\"}, {\"_href\": \"/pulp/api/v2/tasks/a9aba7e8-6c9f-4c9c-8f6b-b178ab34bf00/\", \"task_id\": \"a9aba7e8-6c9f-4c9c-8f6b-b178ab34bf00\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T17:38:48Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T17:38:48Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5595772817f25e08ebfcff41\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595772740d2f2ca6ffdb244\"}, \"id\": \"5595772817f25e08fb4480eb\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:38:48 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/56f02071-a1c1-423c-b8aa-50f8dff2770a/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="s2oOrc0f96ijx4PbhoZJN6pK2l54IvyO9djBm3RmoRk", oauth_signature="llGoj4VyggF5m15lX7NqJ%2BSsbdg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858728", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:38:48 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/56f02071-a1c1-423c-b8aa-50f8dff2770a/\", \"task_id\": \"56f02071-a1c1-423c-b8aa-50f8dff2770a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:38:48Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:38:48Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:38:48Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:38:48Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"5595772817f25e08ebfcff44\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595772840d2f2ca6ffdb246\"}, \"id\": \"5595772817f25e08fb4480f2\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:38:48 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/a9aba7e8-6c9f-4c9c-8f6b-b178ab34bf00/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="AqfFJeWpHSttscJUOZnPuMmm04lhHrf5zVApjsI2Q", oauth_signature="p07KYNbFMbaCjM9frTtctY6yvEU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858728", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:38:48 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "640" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/a9aba7e8-6c9f-4c9c-8f6b-b178ab34bf00/\", \"task_id\": \"a9aba7e8-6c9f-4c9c-8f6b-b178ab34bf00\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595772840d2f2ca6ffdb247\"}, \"id\": \"5595772817f25e08fb4480f6\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:38:48 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/ed8c968c-55e3-426a-9fb3-7b69ca9188f6/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="OqedPjuJERWVIh10W2VH0r46j3t4js37Q6WdqOihhCE", oauth_signature="QZ36cQzgKMewdiEPHR2JtxEBiAg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858729", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:38:49 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/ed8c968c-55e3-426a-9fb3-7b69ca9188f6/\", \"task_id\": \"ed8c968c-55e3-426a-9fb3-7b69ca9188f6\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T17:38:48Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:38:48Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/56f02071-a1c1-423c-b8aa-50f8dff2770a/\", \"task_id\": \"56f02071-a1c1-423c-b8aa-50f8dff2770a\"}, {\"_href\": \"/pulp/api/v2/tasks/a9aba7e8-6c9f-4c9c-8f6b-b178ab34bf00/\", \"task_id\": \"a9aba7e8-6c9f-4c9c-8f6b-b178ab34bf00\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T17:38:48Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T17:38:48Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5595772817f25e08ebfcff41\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595772740d2f2ca6ffdb244\"}, \"id\": \"5595772817f25e08fb4480eb\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:38:49 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/56f02071-a1c1-423c-b8aa-50f8dff2770a/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Q4iR6UEgY37CDF5op594UlLM9WYfGKMuSPtif7b0", oauth_signature="RqjN2br4h2d7VyLJZ3qhKyBqpmY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858729", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:38:49 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/56f02071-a1c1-423c-b8aa-50f8dff2770a/\", \"task_id\": \"56f02071-a1c1-423c-b8aa-50f8dff2770a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:38:48Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:38:48Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:38:48Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:38:48Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"5595772817f25e08ebfcff44\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595772840d2f2ca6ffdb246\"}, \"id\": \"5595772817f25e08fb4480f2\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:38:49 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/a9aba7e8-6c9f-4c9c-8f6b-b178ab34bf00/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="JmC8wUR40n1jffAg2CuJPwUo3P9gKFtq7ay5g3zE5k", oauth_signature="zvSB4ZA8mkR706gjwCuCCrQMZQk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858729", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:38:49 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/a9aba7e8-6c9f-4c9c-8f6b-b178ab34bf00/\", \"task_id\": \"a9aba7e8-6c9f-4c9c-8f6b-b178ab34bf00\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:38:48Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:38:48Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d4c28ed6-d2dd-4131-a9aa-f7d0b91b3854\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"057c18c9-907a-4b8f-bd0e-1856f7d56a06\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"04f36ebf-2c50-4952-8a8c-5c0c18ec8f69\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a0a01dc2-26dd-43a2-a842-70b7e53d4eb1\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"06e82618-f5ff-4fec-a2e7-87d156ba6e09\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6e14453b-feea-488f-8c86-6b12e1bdb980\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"bba545a4-a200-4956-88fd-380e626a00f8\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9fee1732-3531-4e24-b9f3-7c59e454fc9b\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"256ff164-b142-480d-b622-ed6813193c6d\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"80672257-0536-4570-a646-b7ee2007a861\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"11633609-23b1-4e96-80e2-df74a8569618\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:38:48Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:38:48Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d4c28ed6-d2dd-4131-a9aa-f7d0b91b3854\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"057c18c9-907a-4b8f-bd0e-1856f7d56a06\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"04f36ebf-2c50-4952-8a8c-5c0c18ec8f69\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a0a01dc2-26dd-43a2-a842-70b7e53d4eb1\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"06e82618-f5ff-4fec-a2e7-87d156ba6e09\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6e14453b-feea-488f-8c86-6b12e1bdb980\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"bba545a4-a200-4956-88fd-380e626a00f8\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9fee1732-3531-4e24-b9f3-7c59e454fc9b\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"256ff164-b142-480d-b622-ed6813193c6d\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"80672257-0536-4570-a646-b7ee2007a861\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"11633609-23b1-4e96-80e2-df74a8569618\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"5595772817f25e08ebfcff4c\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595772840d2f2ca6ffdb247\"}, \"id\": \"5595772817f25e08fb4480f6\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:38:49 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/044e3ff8-cd26-47f3-880c-94487da4a5d9/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="bpP2Hi8Ddcd0u8KdATQ4ohtTOVzSCCFql0mg9bqT6UQ", oauth_signature="BBTP6lISZoON6nH%2BRQKtPwg92Io%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858729", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:38:49 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/044e3ff8-cd26-47f3-880c-94487da4a5d9/\", \"task_id\": \"044e3ff8-cd26-47f3-880c-94487da4a5d9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595772940d2f2ca6ffdb250\"}, \"id\": \"5595772917f25e4ab6c1453d\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:38:49 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/044e3ff8-cd26-47f3-880c-94487da4a5d9/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="iV5VzCtwk7DW1wX7C19dq1depGklnFiYUlYCIaUfPA", oauth_signature="Ewd6b8ATcU8YcNmUHAYFcoNgw%2B4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858730", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:38:50 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/044e3ff8-cd26-47f3-880c-94487da4a5d9/\", \"task_id\": \"044e3ff8-cd26-47f3-880c-94487da4a5d9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T17:38:49Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:38:49Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595772940d2f2ca6ffdb250\"}, \"id\": \"5595772917f25e08fb4480fd\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:38:50 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/ebbc6938-0a8a-49c1-81ee-22df4fbb9242/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="jUthx1LihaX1Msef129x6MFJb1bnoVzvBtn0fBh6mu0", oauth_signature="D%2BdJ7st2r6JKa6mn%2BDY6KsYMCio%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858732", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:38:52 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/ebbc6938-0a8a-49c1-81ee-22df4fbb9242/\", \"task_id\": \"ebbc6938-0a8a-49c1-81ee-22df4fbb9242\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595772c40d2f2ca6ffdb254\"}, \"id\": \"5595772c17f25e4ab6c14554\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:38:52 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/ebbc6938-0a8a-49c1-81ee-22df4fbb9242/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="vbO1GF4kZfV92gnQGyTt1uq3PbKNyeyZpREeylGn4", oauth_signature="U1m43wmVETf%2FbOJlHDnWOnHe4sQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858733", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:38:53 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/ebbc6938-0a8a-49c1-81ee-22df4fbb9242/\", \"task_id\": \"ebbc6938-0a8a-49c1-81ee-22df4fbb9242\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T17:38:52Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:38:52Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/556d094e-53f9-4df1-9bdb-04ddcd2b0b1f/\", \"task_id\": \"556d094e-53f9-4df1-9bdb-04ddcd2b0b1f\"}, {\"_href\": \"/pulp/api/v2/tasks/09d68346-f9cb-4b74-84c1-82f979526a8c/\", \"task_id\": \"09d68346-f9cb-4b74-84c1-82f979526a8c\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T17:38:52Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T17:38:52Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5595772c17f25e08ebfcff5f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595772c40d2f2ca6ffdb254\"}, \"id\": \"5595772c17f25e08fb448104\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:38:53 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/556d094e-53f9-4df1-9bdb-04ddcd2b0b1f/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="BzAZj7SiFF4taxhNckmxcoopjnfcq5yVJKHgqrPJ9g", oauth_signature="5QmL0d%2BXLf3Fa69MGi7MCSryJk4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858733", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:38:53 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/556d094e-53f9-4df1-9bdb-04ddcd2b0b1f/\", \"task_id\": \"556d094e-53f9-4df1-9bdb-04ddcd2b0b1f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:38:52Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:38:52Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:38:52Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:38:52Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"5595772c17f25e08ebfcff62\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595772c40d2f2ca6ffdb256\"}, \"id\": \"5595772c17f25e08fb44810b\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:38:53 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/09d68346-f9cb-4b74-84c1-82f979526a8c/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="uYFWL024MhKVrHh7NAmzhDht2fZClWSegow0SKWUwY", oauth_signature="84wtVVFvPlODymV8ruzDYSl3V5c%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858733", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:38:53 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/09d68346-f9cb-4b74-84c1-82f979526a8c/\", \"task_id\": \"09d68346-f9cb-4b74-84c1-82f979526a8c\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:38:52Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:38:52Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6cf84acd-fa37-4834-aad0-d6a616775a6b\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3c6c296a-7cb3-49a5-b687-0ec5b52e342f\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"5d039193-802b-4fa1-bcb4-d15b1ed66295\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8d3176cd-e2da-4649-ba04-ce71a49a5d46\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"322e2184-861e-4beb-bbae-ab41524df96a\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a0c78e60-11e0-47ef-b661-b5fbc4fcc60a\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"cda8ab7a-75eb-4052-8f10-859a653ddc83\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0df90f3c-3da9-434a-a8d0-eef10bda540e\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"315e02e1-d202-486b-bb82-2c78e3b676f5\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"42bceb66-c321-40e7-9488-a05995a8c439\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"604415df-9700-47a4-af12-79880f7baaf6\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:38:52Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:38:52Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6cf84acd-fa37-4834-aad0-d6a616775a6b\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3c6c296a-7cb3-49a5-b687-0ec5b52e342f\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"5d039193-802b-4fa1-bcb4-d15b1ed66295\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8d3176cd-e2da-4649-ba04-ce71a49a5d46\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"322e2184-861e-4beb-bbae-ab41524df96a\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a0c78e60-11e0-47ef-b661-b5fbc4fcc60a\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"cda8ab7a-75eb-4052-8f10-859a653ddc83\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0df90f3c-3da9-434a-a8d0-eef10bda540e\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"315e02e1-d202-486b-bb82-2c78e3b676f5\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"42bceb66-c321-40e7-9488-a05995a8c439\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"604415df-9700-47a4-af12-79880f7baaf6\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"5595772c17f25e08ebfcff6a\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595772c40d2f2ca6ffdb257\"}, \"id\": \"5595772c17f25e08fb44810f\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:38:53 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/53f8baa6-5a4f-417b-9576-4d5bb5ec7902/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="me0Mb6KgLK2Mcekwo8ker1BkUiJvoDs7HexCGV8XbY", oauth_signature="IqJWeZbNPfhQtdHq9%2BPRfvgheTg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858733", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:38:53 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/53f8baa6-5a4f-417b-9576-4d5bb5ec7902/\", \"task_id\": \"53f8baa6-5a4f-417b-9576-4d5bb5ec7902\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595772d40d2f2ca6ffdb260\"}, \"id\": \"5595772d17f25e4ab6c14567\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:38:53 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/53f8baa6-5a4f-417b-9576-4d5bb5ec7902/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="aI8yFdf29qGm4mlEPDQmyWJwviLMMp8jcaBUXgnA", oauth_signature="nIgGSDDd%2BN9PMXXR4DwKjdzPG7A%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858734", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:38:54 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/53f8baa6-5a4f-417b-9576-4d5bb5ec7902/\", \"task_id\": \"53f8baa6-5a4f-417b-9576-4d5bb5ec7902\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T17:38:53Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:38:53Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595772d40d2f2ca6ffdb260\"}, \"id\": \"5595772d17f25e08fb448116\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:38:54 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/700da13f-1662-4865-b6ef-8f0165ae2774/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="aCtZIzLSBoLSUDHfdLcORondAK1M3xAmxxGqHX5liw", oauth_signature="aBjzanW3FTKSXS1tDmTCliZYL5A%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858984", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:43:04 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/700da13f-1662-4865-b6ef-8f0165ae2774/\", \"task_id\": \"700da13f-1662-4865-b6ef-8f0165ae2774\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595782840d2f2ca6ffdb264\"}, \"id\": \"5595782817f25e4ab6c1457e\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:43:04 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/700da13f-1662-4865-b6ef-8f0165ae2774/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="WmPltb3XgzYgtWUcAKyJE3ETUyQ6MElVA6K829uk", oauth_signature="ahGKl63beQXp2aiY%2BT0mF8lNB6s%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858985", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:43:05 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/700da13f-1662-4865-b6ef-8f0165ae2774/\", \"task_id\": \"700da13f-1662-4865-b6ef-8f0165ae2774\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T17:43:05Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:43:04Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/80a7bf14-b891-4555-b0b7-02ea261cefe4/\", \"task_id\": \"80a7bf14-b891-4555-b0b7-02ea261cefe4\"}, {\"_href\": \"/pulp/api/v2/tasks/c35fff1e-25d0-4d29-9410-029d43ed6907/\", \"task_id\": \"c35fff1e-25d0-4d29-9410-029d43ed6907\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T17:43:04Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T17:43:05Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5595782917f25e08ebfcff7d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595782840d2f2ca6ffdb264\"}, \"id\": \"5595782817f25e08fb44811d\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:43:05 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/80a7bf14-b891-4555-b0b7-02ea261cefe4/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="mAVPFyLFPbQjyRkmWaU6mfBB2iyvAktHjusARqJQ", oauth_signature="36uxT9RCttXkqsTlh31947oZvb0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858985", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:43:05 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/80a7bf14-b891-4555-b0b7-02ea261cefe4/\", \"task_id\": \"80a7bf14-b891-4555-b0b7-02ea261cefe4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:43:05Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:43:05Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:43:05Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:43:05Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"5595782917f25e08ebfcff80\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595782940d2f2ca6ffdb266\"}, \"id\": \"5595782917f25e08fb448124\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:43:05 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/c35fff1e-25d0-4d29-9410-029d43ed6907/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="eMU4H6AD5lBEwcqJU34KCXSEG97ivYhdO085irY1LT0", oauth_signature="FLeviJsW46RorbIuKqbZ90S%2Bjh0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858985", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:43:05 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "3522" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/c35fff1e-25d0-4d29-9410-029d43ed6907/\", \"task_id\": \"c35fff1e-25d0-4d29-9410-029d43ed6907\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": null, \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:43:05Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6b243c49-c027-4639-a6e1-784c119e12fa\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"IN_PROGRESS\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3d39732f-1a91-4000-ac98-09b68b54a611\", \"num_processed\": 0}, {\"num_success\": 0, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 1, \"state\": \"NOT_STARTED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"df64ec8b-8d0d-4a18-8b5f-f314f0bc5776\", \"num_processed\": 0}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"NOT_STARTED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"97ee4844-ab51-4299-adcd-79add61fd947\", \"num_processed\": 0}, {\"num_success\": 0, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 1, \"state\": \"NOT_STARTED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b596b8e8-b711-44f3-b287-466430ccac7b\", \"num_processed\": 0}, {\"num_success\": 0, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 1, \"state\": \"NOT_STARTED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6071d3fd-e6c2-4f67-a12f-457a48a6bfab\", \"num_processed\": 0}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 1, \"state\": \"NOT_STARTED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"228f84f8-1ed2-4aff-89e9-8f3582ad2625\", \"num_processed\": 0}, {\"num_success\": 0, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"NOT_STARTED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8cb10dca-733f-4939-a1a0-a04a54bd35e9\", \"num_processed\": 0}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"NOT_STARTED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"2b5feec5-6d87-4b29-9c9b-b27e40e21b0b\", \"num_processed\": 0}, {\"num_success\": 0, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"NOT_STARTED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"68417bbb-f599-41cd-97d2-07d5fed5a64b\", \"num_processed\": 0}, {\"num_success\": 0, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"NOT_STARTED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d42c0234-0f89-4c47-a41b-2b68e0a50c25\", \"num_processed\": 0}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"running\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595782940d2f2ca6ffdb267\"}, \"id\": \"5595782917f25e08fb448128\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:43:05 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/700da13f-1662-4865-b6ef-8f0165ae2774/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="YXwBTRJ7W0ckytnzfsVBR2CJHv9ukZTST5dmHQuk4", oauth_signature="1KW7jhY8b8tnzGBK68gqWB62F44%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858986", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:43:06 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/700da13f-1662-4865-b6ef-8f0165ae2774/\", \"task_id\": \"700da13f-1662-4865-b6ef-8f0165ae2774\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T17:43:05Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:43:04Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/80a7bf14-b891-4555-b0b7-02ea261cefe4/\", \"task_id\": \"80a7bf14-b891-4555-b0b7-02ea261cefe4\"}, {\"_href\": \"/pulp/api/v2/tasks/c35fff1e-25d0-4d29-9410-029d43ed6907/\", \"task_id\": \"c35fff1e-25d0-4d29-9410-029d43ed6907\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T17:43:04Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T17:43:05Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5595782917f25e08ebfcff7d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595782840d2f2ca6ffdb264\"}, \"id\": \"5595782817f25e08fb44811d\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:43:06 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/80a7bf14-b891-4555-b0b7-02ea261cefe4/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="wHRN2FDhOY9WZIFkIoYTtAV2ZBIzWMk39d2Kdn0ghc", oauth_signature="W%2BT5OaNGKH1mqNvDJuLvGKbHzXA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858986", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:43:06 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/80a7bf14-b891-4555-b0b7-02ea261cefe4/\", \"task_id\": \"80a7bf14-b891-4555-b0b7-02ea261cefe4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:43:05Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:43:05Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:43:05Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:43:05Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"5595782917f25e08ebfcff80\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595782940d2f2ca6ffdb266\"}, \"id\": \"5595782917f25e08fb448124\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:43:06 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/c35fff1e-25d0-4d29-9410-029d43ed6907/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="OK9O9gwK64VkEEBot1kR4QfG2R9D332TOkj00oYzjWI", oauth_signature="AiK9R%2FzG%2Fzj8ideDqSb061Y54No%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858986", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:43:06 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/c35fff1e-25d0-4d29-9410-029d43ed6907/\", \"task_id\": \"c35fff1e-25d0-4d29-9410-029d43ed6907\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:43:05Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:43:05Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6b243c49-c027-4639-a6e1-784c119e12fa\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3d39732f-1a91-4000-ac98-09b68b54a611\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"df64ec8b-8d0d-4a18-8b5f-f314f0bc5776\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"97ee4844-ab51-4299-adcd-79add61fd947\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b596b8e8-b711-44f3-b287-466430ccac7b\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6071d3fd-e6c2-4f67-a12f-457a48a6bfab\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"228f84f8-1ed2-4aff-89e9-8f3582ad2625\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8cb10dca-733f-4939-a1a0-a04a54bd35e9\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"2b5feec5-6d87-4b29-9c9b-b27e40e21b0b\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"68417bbb-f599-41cd-97d2-07d5fed5a64b\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d42c0234-0f89-4c47-a41b-2b68e0a50c25\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:43:05Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:43:05Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6b243c49-c027-4639-a6e1-784c119e12fa\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3d39732f-1a91-4000-ac98-09b68b54a611\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"df64ec8b-8d0d-4a18-8b5f-f314f0bc5776\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"97ee4844-ab51-4299-adcd-79add61fd947\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b596b8e8-b711-44f3-b287-466430ccac7b\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6071d3fd-e6c2-4f67-a12f-457a48a6bfab\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"228f84f8-1ed2-4aff-89e9-8f3582ad2625\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8cb10dca-733f-4939-a1a0-a04a54bd35e9\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"2b5feec5-6d87-4b29-9c9b-b27e40e21b0b\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"68417bbb-f599-41cd-97d2-07d5fed5a64b\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d42c0234-0f89-4c47-a41b-2b68e0a50c25\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"5595782917f25e08ebfcff88\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595782940d2f2ca6ffdb267\"}, \"id\": \"5595782917f25e08fb448128\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:43:06 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/8c6f830b-1cf6-43bf-b5d2-a7ca28c1c8df/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="L2Vmx8eSe4ngHYTxrd6mxUpmOfV7NGsuDwR5MnmEMVc", oauth_signature="ht9Zx5g%2FhUVFpJDpwjJDp0TlJj4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858986", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:43:06 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/8c6f830b-1cf6-43bf-b5d2-a7ca28c1c8df/\", \"task_id\": \"8c6f830b-1cf6-43bf-b5d2-a7ca28c1c8df\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595782a40d2f2ca6ffdb270\"}, \"id\": \"5595782a17f25e4ab6c14593\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:43:06 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/8c6f830b-1cf6-43bf-b5d2-a7ca28c1c8df/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="QQmD4pg2AaGVRVRlgOEhAxxTTyRFHHdpp5wXs4gyu4", oauth_signature="e7ycw%2BsVnvVqQFfiYFzTxamo1bw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858987", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:43:07 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/8c6f830b-1cf6-43bf-b5d2-a7ca28c1c8df/\", \"task_id\": \"8c6f830b-1cf6-43bf-b5d2-a7ca28c1c8df\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T17:43:06Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:43:06Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595782a40d2f2ca6ffdb270\"}, \"id\": \"5595782a17f25e08fb44812f\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:43:07 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/9c128eda-18d4-49cc-b14d-5e7fab531759/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="7tOOr9cb9TsljTiRQm8iB6gyjS5NMx2dDt8MZCA", oauth_signature="RCOLQCVAL4yKPcQ2lJ%2FR6MzfbB0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858989", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:43:09 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "631" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/9c128eda-18d4-49cc-b14d-5e7fab531759/\", \"task_id\": \"9c128eda-18d4-49cc-b14d-5e7fab531759\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595782d40d2f2ca6ffdb274\"}, \"id\": \"5595782d17f25e08fb448136\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:43:09 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/9c128eda-18d4-49cc-b14d-5e7fab531759/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="GOlokQBtox6HrGIublrUeRrhfOM3GmuyFroC4tP9E", oauth_signature="fz3wM%2BsCey05qrMYFZw3MhL%2BpPk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858989", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:43:10 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/9c128eda-18d4-49cc-b14d-5e7fab531759/\", \"task_id\": \"9c128eda-18d4-49cc-b14d-5e7fab531759\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T17:43:09Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:43:09Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/180c56f9-137e-4e33-8d64-fd087609f7a9/\", \"task_id\": \"180c56f9-137e-4e33-8d64-fd087609f7a9\"}, {\"_href\": \"/pulp/api/v2/tasks/c586951d-6134-4e45-a543-4756755c5d18/\", \"task_id\": \"c586951d-6134-4e45-a543-4756755c5d18\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T17:43:09Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T17:43:09Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5595782d17f25e08ebfcff9b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595782d40d2f2ca6ffdb274\"}, \"id\": \"5595782d17f25e08fb448136\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:43:10 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/180c56f9-137e-4e33-8d64-fd087609f7a9/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="L155FqalQUwXmd3EZBLkTG5ADpmOn1Mwm3b4NKwGHwo", oauth_signature="b65O9dSpYFncaD54%2B1%2FOEqt9q9A%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858990", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:43:10 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/180c56f9-137e-4e33-8d64-fd087609f7a9/\", \"task_id\": \"180c56f9-137e-4e33-8d64-fd087609f7a9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:43:09Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:43:09Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:43:09Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:43:09Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"5595782d17f25e08ebfcff9e\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595782d40d2f2ca6ffdb276\"}, \"id\": \"5595782d17f25e08fb44813a\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:43:10 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/c586951d-6134-4e45-a543-4756755c5d18/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="cjO0FeXXgUErLPshMBnNAfJmFV9A5t4TwczPYJGclA", oauth_signature="qoIXJnJlGfK1RsM%2FBnEvf8D1AJA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858990", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:43:10 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/c586951d-6134-4e45-a543-4756755c5d18/\", \"task_id\": \"c586951d-6134-4e45-a543-4756755c5d18\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:43:09Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:43:09Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1d59e1d3-536e-4c97-960d-d8da7abf0f3d\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8d1daffb-4b1e-4521-bfa5-fdc8426b9190\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"33f90e34-0113-4f94-9f86-cee678a6c4ad\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d0682529-ca8e-4dd8-9142-3d677c04dba4\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"59b07ba0-1d29-4c5c-aaac-19b9bd414c3d\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b614e14b-0e98-4a55-8fb7-5f99f28f4551\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9bada46c-eb3c-4fb4-aa80-7b8ef51c430e\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"91d79b42-c1a9-4026-8ba2-76c970f0e1ca\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"4e04b22c-bbaa-498a-b44b-d7b0258f064f\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c17f0f5a-3040-4b38-9dcc-0cc2c15a8758\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e202bfcb-4f5b-47cf-b170-71f3feedf369\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:43:09Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:43:09Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1d59e1d3-536e-4c97-960d-d8da7abf0f3d\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8d1daffb-4b1e-4521-bfa5-fdc8426b9190\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"33f90e34-0113-4f94-9f86-cee678a6c4ad\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d0682529-ca8e-4dd8-9142-3d677c04dba4\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"59b07ba0-1d29-4c5c-aaac-19b9bd414c3d\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b614e14b-0e98-4a55-8fb7-5f99f28f4551\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9bada46c-eb3c-4fb4-aa80-7b8ef51c430e\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"91d79b42-c1a9-4026-8ba2-76c970f0e1ca\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"4e04b22c-bbaa-498a-b44b-d7b0258f064f\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c17f0f5a-3040-4b38-9dcc-0cc2c15a8758\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e202bfcb-4f5b-47cf-b170-71f3feedf369\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"5595782d17f25e08ebfcffa6\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595782d40d2f2ca6ffdb278\"}, \"id\": \"5595782d17f25e08fb44813e\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:43:10 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/ee597b2c-6c95-4f3e-9fb2-5b3658e675cb/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="5Bp9keHbzVVf9S1H6HVBbG2liDZhTC1F8pSIxDmxkEw", oauth_signature="XGpeUeu0HfF8TVR239NvfXNHO48%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858990", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:43:10 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "633" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/ee597b2c-6c95-4f3e-9fb2-5b3658e675cb/\", \"task_id\": \"ee597b2c-6c95-4f3e-9fb2-5b3658e675cb\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595782e40d2f2ca6ffdb280\"}, \"id\": \"5595782e17f25e08fb448145\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:43:10 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/ee597b2c-6c95-4f3e-9fb2-5b3658e675cb/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="RquljYEdn5RdYKHYYdOcbW9A11pcr3J4l8bnu6nI", oauth_signature="bvoYTjj0TsTYVnhmgaxfGTH8g6g%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435858991", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:43:11 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/ee597b2c-6c95-4f3e-9fb2-5b3658e675cb/\", \"task_id\": \"ee597b2c-6c95-4f3e-9fb2-5b3658e675cb\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T17:43:10Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:43:10Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595782e40d2f2ca6ffdb280\"}, \"id\": \"5595782e17f25e08fb448145\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:43:11 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/578fe8cd-6a2c-4796-a7c4-94a1615eb7c5/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Bg979QeoncXZOani8D2S9frL6uyyqcoR8rZynavGNo", oauth_signature="AiiPJ5suxIDr6gUwHCOrqcmDAX0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859091", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:44:51 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "631" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/578fe8cd-6a2c-4796-a7c4-94a1615eb7c5/\", \"task_id\": \"578fe8cd-6a2c-4796-a7c4-94a1615eb7c5\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595789340d2f2ca6ffdb284\"}, \"id\": \"5595789317f25e08fb44814c\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:44:51 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/578fe8cd-6a2c-4796-a7c4-94a1615eb7c5/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="xwrZVVKgUWJ0e2EJ2ViA1CT966nLmfhisMZzFcIMM", oauth_signature="CYGR%2FDqt8%2FZ9ty%2FDrxCcMzTB5b8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859092", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:44:52 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/578fe8cd-6a2c-4796-a7c4-94a1615eb7c5/\", \"task_id\": \"578fe8cd-6a2c-4796-a7c4-94a1615eb7c5\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T17:44:52Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:44:51Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/d4cc79d7-88d6-469c-8c61-ce2df707ee84/\", \"task_id\": \"d4cc79d7-88d6-469c-8c61-ce2df707ee84\"}, {\"_href\": \"/pulp/api/v2/tasks/3aa6df11-db2e-4093-938d-48695dae0154/\", \"task_id\": \"3aa6df11-db2e-4093-938d-48695dae0154\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T17:44:51Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T17:44:52Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5595789417f25e08ebfcffb9\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595789340d2f2ca6ffdb284\"}, \"id\": \"5595789317f25e08fb44814c\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:44:52 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/d4cc79d7-88d6-469c-8c61-ce2df707ee84/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="M6fWujeIKodB2WlyCKWxK1aBPpiG0qcZWMZhb6Ug", oauth_signature="1dKC4GH6FP1Sqvjn4q%2FsmD1yKTI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859092", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:44:52 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/d4cc79d7-88d6-469c-8c61-ce2df707ee84/\", \"task_id\": \"d4cc79d7-88d6-469c-8c61-ce2df707ee84\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:44:52Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:44:52Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:44:52Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:44:52Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"5595789417f25e08ebfcffbc\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595789440d2f2ca6ffdb286\"}, \"id\": \"5595789417f25e08fb448153\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:44:52 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/3aa6df11-db2e-4093-938d-48695dae0154/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="cbTTQe5wCy91g53McmgIARCYP3t99GPPYTaAYj9ILm8", oauth_signature="jPf%2FvOyhh7KyyAXf%2Fu1JtKSio6g%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859092", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:44:52 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/3aa6df11-db2e-4093-938d-48695dae0154/\", \"task_id\": \"3aa6df11-db2e-4093-938d-48695dae0154\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:44:52Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:44:52Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3d5f2fe1-9996-46f3-9a0d-a623c5ec1049\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"70712d2f-3cc8-4810-b7ed-7767adc499b0\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"483d2831-71dd-4cdd-92e3-8b1179407d68\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"39d34f0e-88c8-4dab-8dec-c4026f486ae5\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"ce31b51c-8432-4957-bf2e-3a8aed2c1f8d\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"cc51380d-7b6e-4e93-a7b1-a1f82a06baa0\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"4f90ccc8-14be-4831-be1e-bf0d5f15dc9b\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"13c6aba1-ad13-447d-a1de-6d5bc6265a02\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"99886b40-4518-4b3d-b4e3-fcb27b749efb\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"955e0f91-cb46-4608-b163-1a50c7e42125\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"db0c119e-2030-43bd-b8d7-0220a9ccb03d\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:44:52Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:44:52Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3d5f2fe1-9996-46f3-9a0d-a623c5ec1049\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"70712d2f-3cc8-4810-b7ed-7767adc499b0\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"483d2831-71dd-4cdd-92e3-8b1179407d68\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"39d34f0e-88c8-4dab-8dec-c4026f486ae5\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"ce31b51c-8432-4957-bf2e-3a8aed2c1f8d\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"cc51380d-7b6e-4e93-a7b1-a1f82a06baa0\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"4f90ccc8-14be-4831-be1e-bf0d5f15dc9b\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"13c6aba1-ad13-447d-a1de-6d5bc6265a02\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"99886b40-4518-4b3d-b4e3-fcb27b749efb\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"955e0f91-cb46-4608-b163-1a50c7e42125\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"db0c119e-2030-43bd-b8d7-0220a9ccb03d\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"5595789417f25e08ebfcffc4\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595789440d2f2ca6ffdb287\"}, \"id\": \"5595789417f25e08fb448157\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:44:52 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/71aad0cd-c2ab-4960-8e7c-ea5f368b2215/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="AuZBvlYkSuknhbFr06IdaSqBvGnebFjJnYlq2toU", oauth_signature="FdzJz%2Fm8IeNQ5hyBkD%2B0De8gzCg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859093", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:44:53 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "633" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/71aad0cd-c2ab-4960-8e7c-ea5f368b2215/\", \"task_id\": \"71aad0cd-c2ab-4960-8e7c-ea5f368b2215\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595789540d2f2ca6ffdb290\"}, \"id\": \"5595789517f25e08fb44815e\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:44:53 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/71aad0cd-c2ab-4960-8e7c-ea5f368b2215/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="LVzPxTk5lVPHVz4hlO8kX1arZ7vlTbdy70lg3PV0", oauth_signature="9pSv7dMzp4hyAxl6axmRK%2BU4ghE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859093", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:44:53 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/71aad0cd-c2ab-4960-8e7c-ea5f368b2215/\", \"task_id\": \"71aad0cd-c2ab-4960-8e7c-ea5f368b2215\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T17:44:53Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:44:53Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595789540d2f2ca6ffdb290\"}, \"id\": \"5595789517f25e08fb44815e\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:44:53 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/4f303a99-b41f-4153-9243-94a2e9cdc5a6/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Qnh9ftFr63ivUjsGxGnbWwBCkLgm4261PtpyFhgoA", oauth_signature="8Rlw%2FZvzXknrEv7i0Gs4T7bJr0I%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859095", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:44:55 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/4f303a99-b41f-4153-9243-94a2e9cdc5a6/\", \"task_id\": \"4f303a99-b41f-4153-9243-94a2e9cdc5a6\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595789740d2f2ca6ffdb294\"}, \"id\": \"5595789717f25e4ab6c145fa\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:44:55 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/4f303a99-b41f-4153-9243-94a2e9cdc5a6/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="91ndXN4vXFcs0h37M0kCk1qsBbZYLripbUi6OfYApJ8", oauth_signature="l39MBpJdZQchRXrM9o%2BuDRkuKMM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859096", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:44:56 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/4f303a99-b41f-4153-9243-94a2e9cdc5a6/\", \"task_id\": \"4f303a99-b41f-4153-9243-94a2e9cdc5a6\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T17:44:56Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:44:55Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/4b744f9b-cb0c-4937-84c7-54b9fad79a0a/\", \"task_id\": \"4b744f9b-cb0c-4937-84c7-54b9fad79a0a\"}, {\"_href\": \"/pulp/api/v2/tasks/6089a43d-f325-490d-ad5d-19af39efa567/\", \"task_id\": \"6089a43d-f325-490d-ad5d-19af39efa567\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T17:44:55Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T17:44:56Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5595789817f25e08ebfcffd7\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595789740d2f2ca6ffdb294\"}, \"id\": \"5595789717f25e08fb448165\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:44:56 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/4b744f9b-cb0c-4937-84c7-54b9fad79a0a/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Vq01EX7i9YdXIM3WrOT5dkVuSSvNKBREg45u1t0nXQg", oauth_signature="lBpsfR1PweaixbLy6J0urIU7c%2FU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859096", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:44:56 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/4b744f9b-cb0c-4937-84c7-54b9fad79a0a/\", \"task_id\": \"4b744f9b-cb0c-4937-84c7-54b9fad79a0a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:44:56Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:44:56Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:44:56Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:44:56Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"5595789817f25e08ebfcffda\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595789840d2f2ca6ffdb296\"}, \"id\": \"5595789817f25e08fb448169\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:44:56 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/6089a43d-f325-490d-ad5d-19af39efa567/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="bLC4OCcXmOt3G32Nyu4mS7kkKGUkYGdXau69fhXVqyw", oauth_signature="Ntg5bAgd2y13PCElCc1fkls97RE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859096", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:44:56 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/6089a43d-f325-490d-ad5d-19af39efa567/\", \"task_id\": \"6089a43d-f325-490d-ad5d-19af39efa567\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:44:56Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:44:56Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6427bcf6-3e67-42a5-bce9-72ab21edae57\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"498a5aef-baa8-4033-a6fe-21a86dcaef45\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"2de1860e-d029-40e1-803b-ecbd7625b42c\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"7f45acbf-c6bf-420e-b886-96eb19bf6a60\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c03da612-c1e0-4177-82f7-ece546f94621\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"930e1dd8-b51a-4d64-b685-db911aad271b\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b85acf8f-20dc-4244-851c-0423067e72e6\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d6b41044-38c9-44a0-b7d8-926adc728907\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"77323ab8-d930-421a-8fb3-a48063b99323\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"ecb81741-262e-4178-9e21-ed32b77f9870\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"902591a9-25a6-4e41-a321-f8280c982d45\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:44:56Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:44:56Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6427bcf6-3e67-42a5-bce9-72ab21edae57\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"498a5aef-baa8-4033-a6fe-21a86dcaef45\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"2de1860e-d029-40e1-803b-ecbd7625b42c\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"7f45acbf-c6bf-420e-b886-96eb19bf6a60\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c03da612-c1e0-4177-82f7-ece546f94621\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"930e1dd8-b51a-4d64-b685-db911aad271b\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b85acf8f-20dc-4244-851c-0423067e72e6\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d6b41044-38c9-44a0-b7d8-926adc728907\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"77323ab8-d930-421a-8fb3-a48063b99323\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"ecb81741-262e-4178-9e21-ed32b77f9870\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"902591a9-25a6-4e41-a321-f8280c982d45\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"5595789817f25e08ebfcffe2\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595789840d2f2ca6ffdb297\"}, \"id\": \"5595789817f25e08fb44816d\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:44:56 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/e0f66fe1-d1bd-40b2-b78f-d1bdb606021b/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="hgL3LzA6bEhY2JjlLHEYQOKh1UQrjLZhyeHziiZYddA", oauth_signature="%2FeVDyo3uFMxK28XseASTv0XsS94%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859456", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:50:56 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/e0f66fe1-d1bd-40b2-b78f-d1bdb606021b/\", \"task_id\": \"e0f66fe1-d1bd-40b2-b78f-d1bdb606021b\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957a0040d2f2ca6ffdb2a0\"}, \"id\": \"55957a0017f25e4ab6c14610\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:50:56 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/e0f66fe1-d1bd-40b2-b78f-d1bdb606021b/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="drvOzqltGXIX47QLiEkXDd0IAvIIyN059kjUTHGw", oauth_signature="G9r8sYswsX8WtJ2V%2FCHONqpf2oU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859456", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:50:56 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/e0f66fe1-d1bd-40b2-b78f-d1bdb606021b/\", \"task_id\": \"e0f66fe1-d1bd-40b2-b78f-d1bdb606021b\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T17:50:56Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:50:56Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957a0040d2f2ca6ffdb2a0\"}, \"id\": \"55957a0017f25e08fb448174\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:50:56 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/e100450d-fce6-4cec-809c-3ba0084f5719/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="9V9UMRakqTosx4tKo6ca7hpgM7cjbVHfvAO42uvEEE", oauth_signature="fnmxWYh6vbeyc%2BFde6yeZ49Poxs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859543", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:52:23 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/e100450d-fce6-4cec-809c-3ba0084f5719/\", \"task_id\": \"e100450d-fce6-4cec-809c-3ba0084f5719\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957a5740d2f2ca6ffdb2a4\"}, \"id\": \"55957a5717f25e4ab6c14627\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:52:23 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/e100450d-fce6-4cec-809c-3ba0084f5719/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="EeEwsboMBBXj8vvkFbevQ9Kn7gSKtuWzoqByV8B54", oauth_signature="5wefBpbw%2FGCw0wxnKRcwLIKog1c%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859544", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:52:24 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/e100450d-fce6-4cec-809c-3ba0084f5719/\", \"task_id\": \"e100450d-fce6-4cec-809c-3ba0084f5719\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T17:52:24Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:52:24Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/dccebd64-ec02-414a-aee0-cfde1338bf57/\", \"task_id\": \"dccebd64-ec02-414a-aee0-cfde1338bf57\"}, {\"_href\": \"/pulp/api/v2/tasks/5dd5df34-bd45-47d1-a07a-a22255c2c349/\", \"task_id\": \"5dd5df34-bd45-47d1-a07a-a22255c2c349\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T17:52:24Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T17:52:24Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55957a5817f25e08ebfcfff5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957a5740d2f2ca6ffdb2a4\"}, \"id\": \"55957a5717f25e08fb44817b\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:52:24 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/dccebd64-ec02-414a-aee0-cfde1338bf57/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="4Q3fnwQwRMfeAyUdgkWZnH423vt6nCCbSh7j6ITcVwA", oauth_signature="Cr2I18UPx3yiG1ERBJrpxQ2NIl4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859544", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:52:24 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "658" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/dccebd64-ec02-414a-aee0-cfde1338bf57/\", \"task_id\": \"dccebd64-ec02-414a-aee0-cfde1338bf57\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": null, \"start_time\": \"2015-07-02T17:52:24Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"running\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957a5840d2f2ca6ffdb2a6\"}, \"id\": \"55957a5817f25e08fb44817f\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:52:24 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/5dd5df34-bd45-47d1-a07a-a22255c2c349/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Rlpg5pEl7SjU2u1zxqs3oZsGgWE6shmwzFpxFnNp9c", oauth_signature="GpfrlGxZQVtztf5NcGQzcarv3Tk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859544", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:52:24 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "640" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/5dd5df34-bd45-47d1-a07a-a22255c2c349/\", \"task_id\": \"5dd5df34-bd45-47d1-a07a-a22255c2c349\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957a5840d2f2ca6ffdb2a7\"}, \"id\": \"55957a5817f25e08fb448183\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:52:24 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/e100450d-fce6-4cec-809c-3ba0084f5719/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="jhRjEzhmqpHnL4ate0H7y8eVCW1XOgwVJ94FG3ZcQ", oauth_signature="Tk0bVC5W7TNrczhHvIG%2F%2F9blltY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859545", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:52:25 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/e100450d-fce6-4cec-809c-3ba0084f5719/\", \"task_id\": \"e100450d-fce6-4cec-809c-3ba0084f5719\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T17:52:24Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:52:24Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/dccebd64-ec02-414a-aee0-cfde1338bf57/\", \"task_id\": \"dccebd64-ec02-414a-aee0-cfde1338bf57\"}, {\"_href\": \"/pulp/api/v2/tasks/5dd5df34-bd45-47d1-a07a-a22255c2c349/\", \"task_id\": \"5dd5df34-bd45-47d1-a07a-a22255c2c349\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T17:52:24Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T17:52:24Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55957a5817f25e08ebfcfff5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957a5740d2f2ca6ffdb2a4\"}, \"id\": \"55957a5717f25e08fb44817b\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:52:25 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/dccebd64-ec02-414a-aee0-cfde1338bf57/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="dgyKhdpdlanRZtTDNjaGGITzpPC1XXqUqrS5GiFk", oauth_signature="kspygb1A%2F9aSw8W5XUd9Vw17dJI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859545", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:52:25 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/dccebd64-ec02-414a-aee0-cfde1338bf57/\", \"task_id\": \"dccebd64-ec02-414a-aee0-cfde1338bf57\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:52:24Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:52:24Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:52:24Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:52:24Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55957a5817f25e08ebfcfff8\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957a5840d2f2ca6ffdb2a6\"}, \"id\": \"55957a5817f25e08fb44817f\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:52:25 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/5dd5df34-bd45-47d1-a07a-a22255c2c349/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="4ERidrJ7ko3V9HAhjRUamBgAOsgcd2EtfVgldXERto", oauth_signature="%2Fr8ZQQ35Nm6NDjPNBKa7lqrpBIE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859545", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:52:25 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/5dd5df34-bd45-47d1-a07a-a22255c2c349/\", \"task_id\": \"5dd5df34-bd45-47d1-a07a-a22255c2c349\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:52:24Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:52:24Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b315f1a0-8a81-4fd8-9328-0f158a83ab5b\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c7132588-6680-4d22-adf4-acc611995c85\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3c79e2f9-9a36-444c-8497-79636b045507\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"79ac6906-104a-49ea-a70c-92dc7ae6101a\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"51bacce2-c1f4-47df-a2a3-cfdb0e09e69a\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"5257653a-e095-4505-9601-60507723b3f7\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"74996d1a-41fc-45a4-b140-2ccc68c3079d\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c9167784-95d2-4b65-8515-20608474ba95\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a46c35b9-5ada-47bf-93b5-fe502e70f173\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"354a9cd5-9dd0-455d-9e04-fc1081e50860\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1520f249-c8d3-4c41-b129-e8144a1879a3\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:52:24Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:52:24Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b315f1a0-8a81-4fd8-9328-0f158a83ab5b\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c7132588-6680-4d22-adf4-acc611995c85\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3c79e2f9-9a36-444c-8497-79636b045507\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"79ac6906-104a-49ea-a70c-92dc7ae6101a\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"51bacce2-c1f4-47df-a2a3-cfdb0e09e69a\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"5257653a-e095-4505-9601-60507723b3f7\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"74996d1a-41fc-45a4-b140-2ccc68c3079d\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c9167784-95d2-4b65-8515-20608474ba95\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a46c35b9-5ada-47bf-93b5-fe502e70f173\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"354a9cd5-9dd0-455d-9e04-fc1081e50860\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1520f249-c8d3-4c41-b129-e8144a1879a3\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"55957a5817f25e08ebfd0000\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957a5840d2f2ca6ffdb2a7\"}, \"id\": \"55957a5817f25e08fb448183\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:52:25 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/b7c87f97-4ef8-4527-a10b-58ed79b40f03/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="n3DbUqwFivEQgqP8wHoPnItKpEGR63UBfNUAVsPU", oauth_signature="9RYawAstmhYZdLL5tyJgvpdbA1g%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859545", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:52:25 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "633" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/b7c87f97-4ef8-4527-a10b-58ed79b40f03/\", \"task_id\": \"b7c87f97-4ef8-4527-a10b-58ed79b40f03\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957a5940d2f2ca6ffdb2b0\"}, \"id\": \"55957a5917f25e08fb44818a\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:52:25 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/b7c87f97-4ef8-4527-a10b-58ed79b40f03/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="c7dzHGdPkNhe6ivLnhCiYa5s4FmGnawMaoj5ttTct7s", oauth_signature="mza%2FQluQG4R5XS5%2F9RGY1lOq76E%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859546", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:52:26 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/b7c87f97-4ef8-4527-a10b-58ed79b40f03/\", \"task_id\": \"b7c87f97-4ef8-4527-a10b-58ed79b40f03\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T17:52:25Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:52:25Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957a5940d2f2ca6ffdb2b0\"}, \"id\": \"55957a5917f25e08fb44818a\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:52:26 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/ca3b489d-4623-4a32-b2a9-7cf5a0e69003/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="YJA1rhBzmeZOVxSmJMaiJcw4OtYJKE8fiycRxes", oauth_signature="tAGFpvxxWta2BbnG32%2FI2W70x6Q%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859548", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:52:28 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/ca3b489d-4623-4a32-b2a9-7cf5a0e69003/\", \"task_id\": \"ca3b489d-4623-4a32-b2a9-7cf5a0e69003\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957a5c40d2f2ca6ffdb2b4\"}, \"id\": \"55957a5c17f25e4ab6c14653\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:52:28 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/ca3b489d-4623-4a32-b2a9-7cf5a0e69003/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Xvjon9ATsndnrHOjJG5maidgc3RSCntkHZC6dt030", oauth_signature="27G0MxBbK%2F0rmvWZdZ3oMve8QU4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859549", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:52:29 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/ca3b489d-4623-4a32-b2a9-7cf5a0e69003/\", \"task_id\": \"ca3b489d-4623-4a32-b2a9-7cf5a0e69003\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T17:52:29Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:52:28Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/b206ade9-be0c-4541-99c1-55a69c083851/\", \"task_id\": \"b206ade9-be0c-4541-99c1-55a69c083851\"}, {\"_href\": \"/pulp/api/v2/tasks/1fa476bf-1ab4-4e2f-87c6-c0accd2685ae/\", \"task_id\": \"1fa476bf-1ab4-4e2f-87c6-c0accd2685ae\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T17:52:28Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T17:52:29Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55957a5d17f25e08ebfd0013\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957a5c40d2f2ca6ffdb2b4\"}, \"id\": \"55957a5c17f25e08fb448191\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:52:29 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/b206ade9-be0c-4541-99c1-55a69c083851/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="MoXEqbwCpVlJLeUgjPPMKOUpBBKw5Eop7yHhDQoU", oauth_signature="EuqlcwlVsrP%2Bb1icX6a6i4Ez9%2B0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859549", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:52:29 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/b206ade9-be0c-4541-99c1-55a69c083851/\", \"task_id\": \"b206ade9-be0c-4541-99c1-55a69c083851\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:52:29Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:52:29Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:52:29Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:52:29Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55957a5d17f25e08ebfd0016\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957a5d40d2f2ca6ffdb2b6\"}, \"id\": \"55957a5d17f25e08fb448195\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:52:29 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/1fa476bf-1ab4-4e2f-87c6-c0accd2685ae/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="q40W3nzKUAPcBlw4YpUCETNkXZDLirZd31nys5l9XMk", oauth_signature="CmHQXAXUq%2FJ9gRdAqJS0hAq9Vs4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859549", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:52:29 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/1fa476bf-1ab4-4e2f-87c6-c0accd2685ae/\", \"task_id\": \"1fa476bf-1ab4-4e2f-87c6-c0accd2685ae\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:52:29Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:52:29Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b31729bb-ec9d-4e6a-9ac0-cdbdf2153081\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"bb8e52df-ae44-49e4-8842-3d397d3cb07d\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9cc7d1ed-99c6-4b2a-b5c9-9b17ffb90d56\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3a739c77-7a5f-4f9c-b7ca-6810d0bdc7df\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"efa201ed-21d1-42cf-89fc-3a47168a61f9\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"63cc38b3-0841-4dae-ac73-5f51a0376391\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b405d00d-32c2-4f32-a218-b87d7a4a9d9c\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9ce684af-099e-4212-a208-e3c2e9c80690\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f839eb60-3913-4062-89b7-034b7ee433ba\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f6ec9e3c-1f1c-4800-8ec2-1e6625fcb228\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"15de0af6-eedc-4322-9320-01674802827a\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:52:29Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:52:29Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b31729bb-ec9d-4e6a-9ac0-cdbdf2153081\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"bb8e52df-ae44-49e4-8842-3d397d3cb07d\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9cc7d1ed-99c6-4b2a-b5c9-9b17ffb90d56\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3a739c77-7a5f-4f9c-b7ca-6810d0bdc7df\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"efa201ed-21d1-42cf-89fc-3a47168a61f9\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"63cc38b3-0841-4dae-ac73-5f51a0376391\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b405d00d-32c2-4f32-a218-b87d7a4a9d9c\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9ce684af-099e-4212-a208-e3c2e9c80690\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f839eb60-3913-4062-89b7-034b7ee433ba\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f6ec9e3c-1f1c-4800-8ec2-1e6625fcb228\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"15de0af6-eedc-4322-9320-01674802827a\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"55957a5d17f25e08ebfd001e\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957a5d40d2f2ca6ffdb2b7\"}, \"id\": \"55957a5d17f25e08fb448199\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:52:29 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/85a61e8a-6773-4b75-9b52-6b28c8c4cc54/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="o6LMDwbUxC0Uo9iccqE8AbwOJi3xjf8AX203pTeM", oauth_signature="7fofrXZFaVNQG8PbseOJWhL4Qq4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859550", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:52:30 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/85a61e8a-6773-4b75-9b52-6b28c8c4cc54/\", \"task_id\": \"85a61e8a-6773-4b75-9b52-6b28c8c4cc54\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957a5e40d2f2ca6ffdb2c0\"}, \"id\": \"55957a5e17f25e4ab6c1466d\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:52:30 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/85a61e8a-6773-4b75-9b52-6b28c8c4cc54/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="NVEyAOaiSiIRUEUp9ycCKKNpdVgpjEYM6fKxbS7aHiY", oauth_signature="qN0bRkKjzeym0unTZpOVA8mUj2I%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859550", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:52:30 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/85a61e8a-6773-4b75-9b52-6b28c8c4cc54/\", \"task_id\": \"85a61e8a-6773-4b75-9b52-6b28c8c4cc54\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T17:52:30Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:52:30Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957a5e40d2f2ca6ffdb2c0\"}, \"id\": \"55957a5e17f25e08fb4481a0\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:52:30 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/6b04ff38-81c4-4e8a-95c2-f7e8905bd5a9/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Os29tVi0tJCxbFzfRIK2w2Z5JXexA7gtd8tWBUiZPdQ", oauth_signature="or8oNGlz%2FjJXAucPh6b9ph4xagY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859709", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:55:09 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/6b04ff38-81c4-4e8a-95c2-f7e8905bd5a9/\", \"task_id\": \"6b04ff38-81c4-4e8a-95c2-f7e8905bd5a9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957afd40d2f2ca6ffdb2c4\"}, \"id\": \"55957afd17f25e4ab6c14684\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:55:09 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/6b04ff38-81c4-4e8a-95c2-f7e8905bd5a9/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="EGZ8zG1RYJoHv7b0WM9REn360Ysb0tEfmf7orOuiBo", oauth_signature="JMgUytss2ZL0Z1Gfs27w%2FMobN6I%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859709", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:55:10 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/6b04ff38-81c4-4e8a-95c2-f7e8905bd5a9/\", \"task_id\": \"6b04ff38-81c4-4e8a-95c2-f7e8905bd5a9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T17:55:09Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:55:09Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/3eb6a789-c7e0-45a6-9fec-09df340de9a9/\", \"task_id\": \"3eb6a789-c7e0-45a6-9fec-09df340de9a9\"}, {\"_href\": \"/pulp/api/v2/tasks/13c326d0-7717-4cb8-89f3-d3c1c80f8982/\", \"task_id\": \"13c326d0-7717-4cb8-89f3-d3c1c80f8982\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T17:55:09Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T17:55:09Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55957afd17f25e08ebfd0031\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957afd40d2f2ca6ffdb2c4\"}, \"id\": \"55957afd17f25e08fb4481a7\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:55:10 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/3eb6a789-c7e0-45a6-9fec-09df340de9a9/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="MQZNJPwcGFZJMGsu4kEOaGHW8Y1LvUx1i2sfFi6yY", oauth_signature="2Fqn0MDXazv7Vux3oaAWxk5%2Bg%2B8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859710", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:55:10 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/3eb6a789-c7e0-45a6-9fec-09df340de9a9/\", \"task_id\": \"3eb6a789-c7e0-45a6-9fec-09df340de9a9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:55:09Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:55:09Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:55:09Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:55:09Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55957afd17f25e08ebfd0034\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957afd40d2f2ca6ffdb2c6\"}, \"id\": \"55957afd17f25e08fb4481ae\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:55:10 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/13c326d0-7717-4cb8-89f3-d3c1c80f8982/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="lHc3KVdSvGvjUrc5tcdlfDBkxsgM5U7hYm7hJJmKx6w", oauth_signature="Igjoom7aF4DNEFGEAhx6Pt1JT%2Fw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859710", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:55:10 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/13c326d0-7717-4cb8-89f3-d3c1c80f8982/\", \"task_id\": \"13c326d0-7717-4cb8-89f3-d3c1c80f8982\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:55:09Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:55:09Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"19318c0b-036e-4344-b7d0-5b4095f7f0aa\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"ce79cb43-26b4-4312-9b29-7f94274e0e1d\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"94745da5-ee46-4c29-94f2-75f3d0332feb\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"664cfc2a-3177-47ab-8003-b2e05bd60661\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0185900b-4260-459d-bdd6-163fb6fbbd62\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3dff5e3c-8ef5-4ea8-9d59-b2c082ca535e\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"64397f0b-e264-4d47-afdf-940e29c0456b\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"fc4cdc12-64b8-4025-b8e6-a5002047536b\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"7864028d-beee-4472-b2b3-4ea8598c2c82\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9b48c5e2-ae63-4fcc-8110-a3a08a5f51e2\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"97063afe-018d-409a-98e6-48dc7413c756\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:55:09Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:55:09Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"19318c0b-036e-4344-b7d0-5b4095f7f0aa\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"ce79cb43-26b4-4312-9b29-7f94274e0e1d\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"94745da5-ee46-4c29-94f2-75f3d0332feb\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"664cfc2a-3177-47ab-8003-b2e05bd60661\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0185900b-4260-459d-bdd6-163fb6fbbd62\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3dff5e3c-8ef5-4ea8-9d59-b2c082ca535e\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"64397f0b-e264-4d47-afdf-940e29c0456b\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"fc4cdc12-64b8-4025-b8e6-a5002047536b\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"7864028d-beee-4472-b2b3-4ea8598c2c82\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9b48c5e2-ae63-4fcc-8110-a3a08a5f51e2\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"97063afe-018d-409a-98e6-48dc7413c756\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"55957afd17f25e08ebfd003c\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957afd40d2f2ca6ffdb2c7\"}, \"id\": \"55957afd17f25e08fb4481b2\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:55:10 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/bcac670d-bd21-4f1f-b501-221b35c2a99f/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="L4aXmwIRc3pmqMb4qFAvz3XCBa6Fi6Fd6Qmuaj3L70", oauth_signature="uFG2aNzXURNDiftwI5WqxyxUlSs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859710", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:55:10 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/bcac670d-bd21-4f1f-b501-221b35c2a99f/\", \"task_id\": \"bcac670d-bd21-4f1f-b501-221b35c2a99f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957afe40d2f2ca6ffdb2d0\"}, \"id\": \"55957afe17f25e4ab6c14693\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:55:10 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/bcac670d-bd21-4f1f-b501-221b35c2a99f/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="XtaP0d0wn3n7REoyzjseUWxfIO8QkDbSikACIdwTA", oauth_signature="zcbbBE82odbWhrsWxxhjTXIO7QE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859711", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:55:11 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/bcac670d-bd21-4f1f-b501-221b35c2a99f/\", \"task_id\": \"bcac670d-bd21-4f1f-b501-221b35c2a99f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T17:55:10Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:55:10Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957afe40d2f2ca6ffdb2d0\"}, \"id\": \"55957afe17f25e08fb4481b9\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:55:11 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/42bb02b7-3750-4dfb-bcab-c37be69891d7/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="ATCHlsFtEzqyq60OAPkoRgST1BUGK9ujbUVNUxuU", oauth_signature="eceHRiN%2FjitdCaKa8ySdnR3mLV8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859713", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:55:13 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/42bb02b7-3750-4dfb-bcab-c37be69891d7/\", \"task_id\": \"42bb02b7-3750-4dfb-bcab-c37be69891d7\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957b0140d2f2ca6ffdb2d4\"}, \"id\": \"55957b0117f25e4ab6c146aa\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:55:13 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/42bb02b7-3750-4dfb-bcab-c37be69891d7/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="B1dx5hxYV4Uyzj5qjImij6eMIjfuU9BQKvToZ7dCoJU", oauth_signature="RvB7ORJUC7RJt%2BH4FYJQes8tEb0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859714", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:55:14 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/42bb02b7-3750-4dfb-bcab-c37be69891d7/\", \"task_id\": \"42bb02b7-3750-4dfb-bcab-c37be69891d7\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T17:55:14Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:55:13Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/f4d1471d-a68a-4cec-b333-12057e214e25/\", \"task_id\": \"f4d1471d-a68a-4cec-b333-12057e214e25\"}, {\"_href\": \"/pulp/api/v2/tasks/88ff2955-9b07-4d6b-aed9-db69e6c6f370/\", \"task_id\": \"88ff2955-9b07-4d6b-aed9-db69e6c6f370\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T17:55:13Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T17:55:14Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55957b0217f25e08ebfd004f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957b0140d2f2ca6ffdb2d4\"}, \"id\": \"55957b0117f25e08fb4481c0\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:55:14 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/f4d1471d-a68a-4cec-b333-12057e214e25/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="e2gSR7MFFdiGlPHmSqm0CUUNBPm8PXvIK8LWDxog", oauth_signature="8S%2B7iY1gg0OM%2Bom90p%2FTKrA5Y%2FE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859714", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:55:14 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/f4d1471d-a68a-4cec-b333-12057e214e25/\", \"task_id\": \"f4d1471d-a68a-4cec-b333-12057e214e25\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:55:14Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:55:14Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:55:14Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:55:14Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55957b0217f25e08ebfd0052\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957b0240d2f2ca6ffdb2d6\"}, \"id\": \"55957b0217f25e08fb4481c7\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:55:14 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/88ff2955-9b07-4d6b-aed9-db69e6c6f370/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="KpOerLowsrY22sxGFucLGE8vfHQJI21fBC5m0zDE", oauth_signature="QEajQ7gsGlcRSCF9oAz2Xib5zes%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859714", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:55:14 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/88ff2955-9b07-4d6b-aed9-db69e6c6f370/\", \"task_id\": \"88ff2955-9b07-4d6b-aed9-db69e6c6f370\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T17:55:14Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:55:14Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"fe8d31e3-92b0-4420-a76c-05e70cb5eea3\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8b22f71e-915a-4bff-9bda-b9bc8beb8110\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f2585d2e-89ee-44b1-842e-9727d509d89d\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"5f9f8c89-2ae8-431a-9ed7-daf3b330c6d7\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c5df2c01-c373-42e6-9642-f813e1f0b998\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"81365067-bf73-4ca0-a12a-28298b684507\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"aa6792ab-bf5f-4253-95c0-5c5f760bff00\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e8134a1f-a276-4613-953d-9a665b8ff0a9\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"fe902a59-e208-4213-adb6-48f21502c6ce\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"44618b3e-76bb-4a1b-9960-a56337d784e0\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"578dc182-6a80-4081-9ca5-d8b5c3ea0087\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T17:55:14Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T17:55:14Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"fe8d31e3-92b0-4420-a76c-05e70cb5eea3\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8b22f71e-915a-4bff-9bda-b9bc8beb8110\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f2585d2e-89ee-44b1-842e-9727d509d89d\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"5f9f8c89-2ae8-431a-9ed7-daf3b330c6d7\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c5df2c01-c373-42e6-9642-f813e1f0b998\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"81365067-bf73-4ca0-a12a-28298b684507\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"aa6792ab-bf5f-4253-95c0-5c5f760bff00\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e8134a1f-a276-4613-953d-9a665b8ff0a9\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"fe902a59-e208-4213-adb6-48f21502c6ce\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"44618b3e-76bb-4a1b-9960-a56337d784e0\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"578dc182-6a80-4081-9ca5-d8b5c3ea0087\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"55957b0217f25e08ebfd005a\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957b0240d2f2ca6ffdb2d7\"}, \"id\": \"55957b0217f25e08fb4481cb\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:55:14 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/50eea057-bc60-4b5d-86a8-804061882d3e/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="MYWB2nHQ1V6kypKspXKqPyER6pIIvt9q8GPfXsRZs", oauth_signature="mVf6yNbFmALdAHEu8zrNl%2FUqUyk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859715", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:55:15 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "633" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/50eea057-bc60-4b5d-86a8-804061882d3e/\", \"task_id\": \"50eea057-bc60-4b5d-86a8-804061882d3e\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957b0340d2f2ca6ffdb2e0\"}, \"id\": \"55957b0317f25e08fb4481d2\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:55:15 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/50eea057-bc60-4b5d-86a8-804061882d3e/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="FEfcuXvFKLUhZgcb7rJDdboYG11HPlDndcIc5Ti48", oauth_signature="g%2BnA%2F9rqBe0c29nzkMWorSLMlXA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435859716", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 17:55:16 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/50eea057-bc60-4b5d-86a8-804061882d3e/\", \"task_id\": \"50eea057-bc60-4b5d-86a8-804061882d3e\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T17:55:15Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T17:55:15Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957b0340d2f2ca6ffdb2e0\"}, \"id\": \"55957b0317f25e08fb4481d2\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 17:55:16 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/f7b808d0-ff88-4bad-b7bc-8ab0b424f1cf/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="7An5sFwUwhWxCjyCzcaUG7wXlXrQotlITQ4vQWy0c", oauth_signature="C6MDwjPZU0kEnn2g2pTE7oQP018%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860347", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:05:47 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/f7b808d0-ff88-4bad-b7bc-8ab0b424f1cf/\", \"task_id\": \"f7b808d0-ff88-4bad-b7bc-8ab0b424f1cf\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957d7b40d2f2ca6ffdb2e4\"}, \"id\": \"55957d7b17f25e4ab6c146db\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:05:47 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/f7b808d0-ff88-4bad-b7bc-8ab0b424f1cf/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="J4y0FVJABDMEbNAMb06Q5twLuaZZScOulVl81Z18", oauth_signature="ar3rFGbPJdJP1Pzth6aoRoLHUk4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860348", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:05:48 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/f7b808d0-ff88-4bad-b7bc-8ab0b424f1cf/\", \"task_id\": \"f7b808d0-ff88-4bad-b7bc-8ab0b424f1cf\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T18:05:48Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:05:47Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/1338b624-b2f1-464b-9bab-fa37b36bfed0/\", \"task_id\": \"1338b624-b2f1-464b-9bab-fa37b36bfed0\"}, {\"_href\": \"/pulp/api/v2/tasks/6ee14334-1cba-490d-b26c-d9b8f4114573/\", \"task_id\": \"6ee14334-1cba-490d-b26c-d9b8f4114573\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T18:05:47Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T18:05:48Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55957d7c17f25e08ebfd006d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957d7b40d2f2ca6ffdb2e4\"}, \"id\": \"55957d7b17f25e08fb4481d9\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:05:48 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/1338b624-b2f1-464b-9bab-fa37b36bfed0/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="bgtiUoLZ9NyRoGSUWqDMJFcec73abTXR7wjG2WcNnk", oauth_signature="S%2FelopDN6L5lLLFJy2g35aDrLX4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860348", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:05:48 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/1338b624-b2f1-464b-9bab-fa37b36bfed0/\", \"task_id\": \"1338b624-b2f1-464b-9bab-fa37b36bfed0\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T18:05:48Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:05:48Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T18:05:48Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T18:05:48Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55957d7c17f25e08ebfd0070\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957d7c40d2f2ca6ffdb2e6\"}, \"id\": \"55957d7c17f25e08fb4481e0\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:05:48 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/6ee14334-1cba-490d-b26c-d9b8f4114573/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="4ErTEkAeJpe2pk0jkXu4apHlOgAjkdwnEa6axgy0FhQ", oauth_signature="F2sClPoGYRtB1p0aifV2RYAWvOc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860348", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:05:48 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/6ee14334-1cba-490d-b26c-d9b8f4114573/\", \"task_id\": \"6ee14334-1cba-490d-b26c-d9b8f4114573\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T18:05:48Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:05:48Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"2693b869-e3d6-4a8f-b9ac-5b5f6ecb03ab\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8b062dec-c12f-4825-b069-993eabf0e6d8\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"cc1111e7-7b8f-4c1f-8f2e-a27ebbb013b2\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3dbcf3ed-e2ea-4db3-b6f3-6569a5c1711e\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e3f1baae-42d5-40fc-862c-b8827c96beca\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a1d3b064-8677-44db-a574-0c21d56032a2\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1670e03a-439b-43ca-a185-f3414b6f35c9\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c4684cae-46e0-41f2-bd61-f248f72dbe23\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"73abf00e-137d-476d-861e-e514012eb05c\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0cc7b1d1-c07d-4598-86b7-152e59ebb094\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"67fa644f-f215-46df-ad1e-7ac23cfa20e3\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T18:05:48Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T18:05:48Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"2693b869-e3d6-4a8f-b9ac-5b5f6ecb03ab\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8b062dec-c12f-4825-b069-993eabf0e6d8\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"cc1111e7-7b8f-4c1f-8f2e-a27ebbb013b2\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3dbcf3ed-e2ea-4db3-b6f3-6569a5c1711e\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e3f1baae-42d5-40fc-862c-b8827c96beca\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a1d3b064-8677-44db-a574-0c21d56032a2\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1670e03a-439b-43ca-a185-f3414b6f35c9\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c4684cae-46e0-41f2-bd61-f248f72dbe23\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"73abf00e-137d-476d-861e-e514012eb05c\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0cc7b1d1-c07d-4598-86b7-152e59ebb094\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"67fa644f-f215-46df-ad1e-7ac23cfa20e3\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"55957d7c17f25e08ebfd0078\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957d7c40d2f2ca6ffdb2e7\"}, \"id\": \"55957d7c17f25e08fb4481e4\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:05:48 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/f5fa73a1-9d79-4d78-9d83-1f7b7c70d213/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="ZvPTOvp0SfVDpDuKLTC3WgawZiyqyiIX2DS5pZtFdX0", oauth_signature="lzYYcK9MC48dfvViqnmLtrN5Tuk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860349", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:05:49 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "633" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/f5fa73a1-9d79-4d78-9d83-1f7b7c70d213/\", \"task_id\": \"f5fa73a1-9d79-4d78-9d83-1f7b7c70d213\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957d7d40d2f2ca6ffdb2f0\"}, \"id\": \"55957d7d17f25e08fb4481eb\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:05:49 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/f5fa73a1-9d79-4d78-9d83-1f7b7c70d213/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Wl0cs9sSiQsAxD1SB7ms2z1fAqdhZUJ0pkioXFK8rxU", oauth_signature="gy%2Fo1NAyvFX%2BICEefLXz79IWUi0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860349", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:05:49 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/f5fa73a1-9d79-4d78-9d83-1f7b7c70d213/\", \"task_id\": \"f5fa73a1-9d79-4d78-9d83-1f7b7c70d213\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T18:05:49Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:05:49Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957d7d40d2f2ca6ffdb2f0\"}, \"id\": \"55957d7d17f25e08fb4481eb\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:05:49 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/cadb43d1-2e52-431f-be27-fa05cbe92fdb/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="urjaynj9ljf2phXrXmYEYck2fZA0R2wAhfsxXQJPkA", oauth_signature="aVSe8LpT%2Bykg3rmF1cyhYm3%2FE14%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860352", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:05:52 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1097" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/cadb43d1-2e52-431f-be27-fa05cbe92fdb/\", \"task_id\": \"cadb43d1-2e52-431f-be27-fa05cbe92fdb\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:05:52Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"NOT_STARTED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"IN_PROGRESS\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"running\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957d8040d2f2ca6ffdb2f4\"}, \"id\": \"55957d8017f25e08fb4481f2\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:05:52 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/cadb43d1-2e52-431f-be27-fa05cbe92fdb/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="nhwJR3Ef5tFlLdBn0nATzBx8DxticNLjv3ORlgbgnOE", oauth_signature="J6n1ZGfzVlcB6dV855ofuq%2BQ6Bo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860352", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:05:52 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/cadb43d1-2e52-431f-be27-fa05cbe92fdb/\", \"task_id\": \"cadb43d1-2e52-431f-be27-fa05cbe92fdb\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T18:05:52Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:05:52Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/f660c1b4-fec6-4f0e-9785-af8d9f9e4821/\", \"task_id\": \"f660c1b4-fec6-4f0e-9785-af8d9f9e4821\"}, {\"_href\": \"/pulp/api/v2/tasks/ac584e0d-8475-4113-bd97-13e1b1dfbc7c/\", \"task_id\": \"ac584e0d-8475-4113-bd97-13e1b1dfbc7c\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T18:05:52Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T18:05:52Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55957d8017f25e08ebfd008b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957d8040d2f2ca6ffdb2f4\"}, \"id\": \"55957d8017f25e08fb4481f2\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:05:52 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/f660c1b4-fec6-4f0e-9785-af8d9f9e4821/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="x1mc4LwLnh8WDWYaq4oSgJm7YmcKUl8pNIlxpxszk", oauth_signature="llxKL0Tl8JTo0yvhAD15Vpe0K4w%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860352", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:05:52 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/f660c1b4-fec6-4f0e-9785-af8d9f9e4821/\", \"task_id\": \"f660c1b4-fec6-4f0e-9785-af8d9f9e4821\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T18:05:52Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:05:52Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T18:05:52Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T18:05:52Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55957d8017f25e08ebfd008e\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957d8040d2f2ca6ffdb2f6\"}, \"id\": \"55957d8017f25e08fb4481f9\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:05:52 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/ac584e0d-8475-4113-bd97-13e1b1dfbc7c/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="iKdNEsT2dpNvq1VoL2rTCSLCQwIx12Gl7JdO1gsM4", oauth_signature="2eLLDzqrmAFwB1mry3ZG%2FWdryqs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860352", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:05:52 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/ac584e0d-8475-4113-bd97-13e1b1dfbc7c/\", \"task_id\": \"ac584e0d-8475-4113-bd97-13e1b1dfbc7c\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T18:05:52Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:05:52Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9bf6154a-ccd1-4268-b27d-7a384db5dd0a\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"76e05c3d-64d0-4279-b814-d67882b8b1a0\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a2c09775-6d3b-4bdd-acc4-0937e2176e52\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"2e9cb040-1198-4365-b2b1-c96ddeea21da\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"eef5dea2-fc25-472b-9f74-2134803b8987\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"33806dff-dfa5-417d-b15e-6bd539da090f\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0766460a-ac21-4cea-920d-6a0f239a6799\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d33425c7-760d-4ab1-a762-b2571bf4ada8\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"02893408-d06f-4915-a324-9535e4ba8861\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a663bb1e-0bda-4622-a0c3-7cbb3202e098\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"377a56c3-f947-4f55-a799-67c706549826\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T18:05:52Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T18:05:52Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9bf6154a-ccd1-4268-b27d-7a384db5dd0a\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"76e05c3d-64d0-4279-b814-d67882b8b1a0\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a2c09775-6d3b-4bdd-acc4-0937e2176e52\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"2e9cb040-1198-4365-b2b1-c96ddeea21da\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"eef5dea2-fc25-472b-9f74-2134803b8987\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"33806dff-dfa5-417d-b15e-6bd539da090f\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"0766460a-ac21-4cea-920d-6a0f239a6799\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d33425c7-760d-4ab1-a762-b2571bf4ada8\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"02893408-d06f-4915-a324-9535e4ba8861\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a663bb1e-0bda-4622-a0c3-7cbb3202e098\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"377a56c3-f947-4f55-a799-67c706549826\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"55957d8017f25e08ebfd0096\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957d8040d2f2ca6ffdb2f7\"}, \"id\": \"55957d8017f25e08fb4481fd\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:05:52 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/680e34af-54b4-45a2-b654-b3b05bc7bded/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="lOPOdpErZI7ltR1M4g8j3VXhLLX7Cjn3P7dBEvTc", oauth_signature="dJqEam1GYZU%2BrzeiT9tF4g6QDbI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860353", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:05:53 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/680e34af-54b4-45a2-b654-b3b05bc7bded/\", \"task_id\": \"680e34af-54b4-45a2-b654-b3b05bc7bded\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957d8140d2f2ca6ffdb300\"}, \"id\": \"55957d8117f25e4ab6c1471f\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:05:53 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/680e34af-54b4-45a2-b654-b3b05bc7bded/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="kUBO3dBeqW0wjw0jN8e0mhnTqiptsOsp2Uaw8Hg0yz8", oauth_signature="qGSAo6HlhCvlSHuNdgmTXfuIIvY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860354", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:05:54 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/680e34af-54b4-45a2-b654-b3b05bc7bded/\", \"task_id\": \"680e34af-54b4-45a2-b654-b3b05bc7bded\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T18:05:53Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:05:53Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957d8140d2f2ca6ffdb300\"}, \"id\": \"55957d8117f25e08fb448204\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:05:54 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/752c7bca-3544-4cba-9419-fd58aeeabf72/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="brhK7Om3piL39ibRTMmBEMAyDVrj67qtsVgTF8BRU", oauth_signature="JQ2QDQkEwFIt5wwMJ%2BH36FB278Q%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860707", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:11:47 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "631" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/752c7bca-3544-4cba-9419-fd58aeeabf72/\", \"task_id\": \"752c7bca-3544-4cba-9419-fd58aeeabf72\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957ee340d2f2ca6ffdb304\"}, \"id\": \"55957ee317f25e08fb44820b\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:11:47 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/752c7bca-3544-4cba-9419-fd58aeeabf72/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="J2FZcLhuAFhis22ffa9zMwkYnhgPoSgqMwCmru5l2Y", oauth_signature="Iy6FPl%2FeSGPY72V%2Bgtrnvb4h1qM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860708", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:11:48 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/752c7bca-3544-4cba-9419-fd58aeeabf72/\", \"task_id\": \"752c7bca-3544-4cba-9419-fd58aeeabf72\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T18:11:48Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:11:47Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/f57bc556-33be-4946-9f3a-92140f83ac0c/\", \"task_id\": \"f57bc556-33be-4946-9f3a-92140f83ac0c\"}, {\"_href\": \"/pulp/api/v2/tasks/b6594378-78ab-4965-8734-276f0fb15e08/\", \"task_id\": \"b6594378-78ab-4965-8734-276f0fb15e08\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T18:11:47Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T18:11:48Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55957ee417f25e08ebfd00a9\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957ee340d2f2ca6ffdb304\"}, \"id\": \"55957ee317f25e08fb44820b\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:11:48 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/f57bc556-33be-4946-9f3a-92140f83ac0c/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="zb7LFO0OVgnDi8TCOXNWAUkV0D5dDPicyGxn1psZuY", oauth_signature="Kdzlsu7zJT50ggL5GolBHyb7jLE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860708", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:11:48 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/f57bc556-33be-4946-9f3a-92140f83ac0c/\", \"task_id\": \"f57bc556-33be-4946-9f3a-92140f83ac0c\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T18:11:48Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:11:48Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T18:11:48Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T18:11:48Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55957ee417f25e08ebfd00ac\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957ee440d2f2ca6ffdb306\"}, \"id\": \"55957ee417f25e08fb448212\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:11:48 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/b6594378-78ab-4965-8734-276f0fb15e08/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="aCujNLbJ6lIpFW4ThEOstHw4spgy5jkwVQjtouXs", oauth_signature="qDrYHSoPyAIYRieUKMkyrWReKiI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860708", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:11:48 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/b6594378-78ab-4965-8734-276f0fb15e08/\", \"task_id\": \"b6594378-78ab-4965-8734-276f0fb15e08\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T18:11:48Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:11:48Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"86552ec9-a270-4661-9cb5-60443baf63ed\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"bccf402c-d306-4b95-a1de-ba9aacc6ce2a\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"aec9bf75-da1f-4f04-bc26-b712088abb6f\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6637f115-267f-41a3-99f4-b1beb5b30876\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a173427a-5fcf-4a2f-b00f-837843c249de\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"7e5df169-0dd0-44f1-aff4-40eee11d0262\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3aa046e8-e96c-4ecb-a02d-41b81cfc60cc\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e82fbde1-b23f-4c16-9de8-c826f522347c\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"89ad587e-d7d8-4666-91dc-f05ab596ae39\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"4b90bf8e-b4d5-4dfb-83d6-a7a569c51caf\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"08edea44-46bd-4b40-a749-2ca8492d5e03\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T18:11:48Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T18:11:48Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"86552ec9-a270-4661-9cb5-60443baf63ed\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"bccf402c-d306-4b95-a1de-ba9aacc6ce2a\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"aec9bf75-da1f-4f04-bc26-b712088abb6f\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6637f115-267f-41a3-99f4-b1beb5b30876\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a173427a-5fcf-4a2f-b00f-837843c249de\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"7e5df169-0dd0-44f1-aff4-40eee11d0262\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3aa046e8-e96c-4ecb-a02d-41b81cfc60cc\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e82fbde1-b23f-4c16-9de8-c826f522347c\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"89ad587e-d7d8-4666-91dc-f05ab596ae39\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"4b90bf8e-b4d5-4dfb-83d6-a7a569c51caf\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"08edea44-46bd-4b40-a749-2ca8492d5e03\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"55957ee417f25e08ebfd00b4\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957ee440d2f2ca6ffdb307\"}, \"id\": \"55957ee417f25e08fb448216\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:11:48 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/25d88f86-1083-4666-b8cc-e4f00f6fe61a/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="VC0tj1ZD2WMst0SsKwVxi0vYjJqGkKydWsyzJNq3bE0", oauth_signature="eSHjqPEs5LlKSP9YWVLNeh3gX8Q%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860709", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:11:49 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "633" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/25d88f86-1083-4666-b8cc-e4f00f6fe61a/\", \"task_id\": \"25d88f86-1083-4666-b8cc-e4f00f6fe61a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957ee540d2f2ca6ffdb310\"}, \"id\": \"55957ee517f25e08fb44821d\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:11:49 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/25d88f86-1083-4666-b8cc-e4f00f6fe61a/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="czw0Ufn6WbzpfwkBmJ3xswSuHFuV11XuUSUv80I", oauth_signature="lbfWRNc1ruG1Ig6a8ZLO0ns61nI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860709", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:11:49 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/25d88f86-1083-4666-b8cc-e4f00f6fe61a/\", \"task_id\": \"25d88f86-1083-4666-b8cc-e4f00f6fe61a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T18:11:49Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:11:49Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957ee540d2f2ca6ffdb310\"}, \"id\": \"55957ee517f25e08fb44821d\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:11:49 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/991c251d-aad3-4910-8a6c-67383c11bc12/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="m2UDI3qwdcCnZ38013JkY3KLdQk8jC6pXd7g0yoWk", oauth_signature="4UV1atksuZel5XmZw4gOMS73y18%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860712", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:11:52 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/991c251d-aad3-4910-8a6c-67383c11bc12/\", \"task_id\": \"991c251d-aad3-4910-8a6c-67383c11bc12\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957ee840d2f2ca6ffdb314\"}, \"id\": \"55957ee817f25e4ab6c1475c\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:11:52 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/991c251d-aad3-4910-8a6c-67383c11bc12/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="mwN5x1cKss1NdTabVsBnty3oX7O9h1965kLtnyz4", oauth_signature="GJa2xmcX2S9jxf7cJS2NIatLS3s%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860712", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:11:52 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/991c251d-aad3-4910-8a6c-67383c11bc12/\", \"task_id\": \"991c251d-aad3-4910-8a6c-67383c11bc12\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T18:11:52Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:11:52Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/7618625d-f6e7-473b-b217-cb54f24e19bd/\", \"task_id\": \"7618625d-f6e7-473b-b217-cb54f24e19bd\"}, {\"_href\": \"/pulp/api/v2/tasks/43816c33-b251-4d93-9895-87a441325fc5/\", \"task_id\": \"43816c33-b251-4d93-9895-87a441325fc5\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T18:11:52Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T18:11:52Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55957ee817f25e08ebfd00c7\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957ee840d2f2ca6ffdb314\"}, \"id\": \"55957ee817f25e08fb448224\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:11:52 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/7618625d-f6e7-473b-b217-cb54f24e19bd/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="GfbpQs1HKseFr2kFw5qlks1p30oj22AuUCc4t9KgH4", oauth_signature="8DY2FIyQdjxzwp4VzU6paiKv8fU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860712", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:11:52 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/7618625d-f6e7-473b-b217-cb54f24e19bd/\", \"task_id\": \"7618625d-f6e7-473b-b217-cb54f24e19bd\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T18:11:52Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:11:52Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T18:11:52Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T18:11:52Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55957ee817f25e08ebfd00ca\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957ee840d2f2ca6ffdb316\"}, \"id\": \"55957ee817f25e08fb44822b\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:11:52 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/43816c33-b251-4d93-9895-87a441325fc5/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Yib6b3fjrTWkzAHwLZ1oiXnOuTAewESanheSVm3KChY", oauth_signature="48srLty9ebrBt3Rnkrzw6cV%2FYrI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860712", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:11:52 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/43816c33-b251-4d93-9895-87a441325fc5/\", \"task_id\": \"43816c33-b251-4d93-9895-87a441325fc5\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T18:11:52Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:11:52Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1ec576d7-8903-4348-9cd6-1ce60bfef98e\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"4e1ef034-5716-48dc-9f3d-ff90ce2499bd\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"cefec75b-5f04-48e3-a774-0ad5f10e2a52\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d0f8915b-d0fd-485e-9558-9ec003ab1c78\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"bfdc966f-dc9d-42fd-a2af-9ffd595c7664\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c28772d0-14ff-45f2-b6ad-fbdf772c3f2f\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"87f91a1c-95e8-4d5a-880c-c28232d656e3\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8ecd8658-de06-460f-ade8-087e2e5dfe7f\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d8002cf8-d269-46d6-ae77-45183097a628\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d579b5f3-63c9-4b19-8639-015eb7fde8a5\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"65348b3c-517f-4596-baf0-8155670979f9\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T18:11:52Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T18:11:52Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1ec576d7-8903-4348-9cd6-1ce60bfef98e\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"4e1ef034-5716-48dc-9f3d-ff90ce2499bd\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"cefec75b-5f04-48e3-a774-0ad5f10e2a52\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d0f8915b-d0fd-485e-9558-9ec003ab1c78\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"bfdc966f-dc9d-42fd-a2af-9ffd595c7664\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c28772d0-14ff-45f2-b6ad-fbdf772c3f2f\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"87f91a1c-95e8-4d5a-880c-c28232d656e3\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8ecd8658-de06-460f-ade8-087e2e5dfe7f\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d8002cf8-d269-46d6-ae77-45183097a628\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d579b5f3-63c9-4b19-8639-015eb7fde8a5\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"65348b3c-517f-4596-baf0-8155670979f9\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"55957ee817f25e08ebfd00d2\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957ee840d2f2ca6ffdb317\"}, \"id\": \"55957ee817f25e08fb44822f\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:11:52 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/f06f47f1-264b-456a-accc-4b8af2eadf24/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="9Xf4YpgmMz8uMWLmDmjE4P7znU4morCsuguT3QptW8c", oauth_signature="RVVsaKNurlCuE8Nyjmy%2FpmaSA2w%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860713", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:11:53 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/f06f47f1-264b-456a-accc-4b8af2eadf24/\", \"task_id\": \"f06f47f1-264b-456a-accc-4b8af2eadf24\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957ee940d2f2ca6ffdb320\"}, \"id\": \"55957ee917f25e4ab6c1477d\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:11:53 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/f06f47f1-264b-456a-accc-4b8af2eadf24/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="LlG9GcAEkmA9muklZtUWJsnkTkFoaQCks40QkGTtxhc", oauth_signature="05JTTsSQwGEyGWzhV%2BHmmZIaSIc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860714", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:11:54 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/f06f47f1-264b-456a-accc-4b8af2eadf24/\", \"task_id\": \"f06f47f1-264b-456a-accc-4b8af2eadf24\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T18:11:53Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:11:53Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957ee940d2f2ca6ffdb320\"}, \"id\": \"55957ee917f25e08fb448236\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:11:54 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/beacf57b-c834-4534-8091-c0791b22e0c5/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="tZnZJr7FKaEHrtbjctjHEfabEsAukuMxOrvTPXoU", oauth_signature="MPfqT1pP5tFBEv193M0DK%2Bm1tiQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860806", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:13:26 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/beacf57b-c834-4534-8091-c0791b22e0c5/\", \"task_id\": \"beacf57b-c834-4534-8091-c0791b22e0c5\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957f4640d2f2ca6ffdb324\"}, \"id\": \"55957f4617f25e4ab6c14794\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:13:26 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/beacf57b-c834-4534-8091-c0791b22e0c5/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Zv7ETWk5VS3AsqtCTnk9OdiLzqUfhCKsOMM7gQ671C0", oauth_signature="kJDo0tCw7Qfv8HDSKXUDCwaGtG4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860807", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:13:27 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/beacf57b-c834-4534-8091-c0791b22e0c5/\", \"task_id\": \"beacf57b-c834-4534-8091-c0791b22e0c5\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T18:13:27Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:13:27Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/75298299-544e-4e18-97f6-10ef4d2124f4/\", \"task_id\": \"75298299-544e-4e18-97f6-10ef4d2124f4\"}, {\"_href\": \"/pulp/api/v2/tasks/8c743d92-b43c-4da4-9952-62d0107284e5/\", \"task_id\": \"8c743d92-b43c-4da4-9952-62d0107284e5\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T18:13:27Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T18:13:27Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55957f4717f25e08ebfd00e5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957f4640d2f2ca6ffdb324\"}, \"id\": \"55957f4617f25e08fb44823d\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:13:27 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/75298299-544e-4e18-97f6-10ef4d2124f4/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="qQkfUJCsVmnyLX3ccOXYCw4GzxqfdTlheNh20YgMNXQ", oauth_signature="cVQhf6x6Bv9N5Um1LD97RPTfl3Q%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860807", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:13:27 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/75298299-544e-4e18-97f6-10ef4d2124f4/\", \"task_id\": \"75298299-544e-4e18-97f6-10ef4d2124f4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T18:13:27Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:13:27Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T18:13:27Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T18:13:27Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55957f4717f25e08ebfd00e8\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957f4740d2f2ca6ffdb326\"}, \"id\": \"55957f4717f25e08fb448241\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:13:27 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/8c743d92-b43c-4da4-9952-62d0107284e5/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="tqgQyBK5bxkYxiJVdEq9KvGzB0qV9CMW1lS0ecjooY", oauth_signature="RppBHTttWx4hZOXRvy8Qfo%2BjcXU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860807", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:13:27 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/8c743d92-b43c-4da4-9952-62d0107284e5/\", \"task_id\": \"8c743d92-b43c-4da4-9952-62d0107284e5\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T18:13:27Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:13:27Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"245e2675-b4cd-437b-9ea1-45d1804ee385\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6043dcc0-844e-43cc-9e4c-4e29215db43b\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"82af638a-228b-48f1-8e5e-b68e43a09555\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9c742b3f-e202-4da1-9a70-de1ddf1a2424\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"41f07e50-ea16-4904-864e-440c9529a856\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f97606da-e1bd-47df-b198-7ab86cee9d5e\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d813b2b9-0558-4c76-b38a-78f46c45764c\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"ba12ab8e-71ed-49e4-b1c6-1b1b3debe708\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"31a0401a-7268-47ae-abbe-7d04bcf2c8c5\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b39754b1-a4d6-462e-b39b-9cfc3cfc7a96\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"ab9d5ece-05ab-4c0d-9606-61fe430a30ce\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T18:13:27Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T18:13:27Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"245e2675-b4cd-437b-9ea1-45d1804ee385\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"6043dcc0-844e-43cc-9e4c-4e29215db43b\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"82af638a-228b-48f1-8e5e-b68e43a09555\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9c742b3f-e202-4da1-9a70-de1ddf1a2424\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"41f07e50-ea16-4904-864e-440c9529a856\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f97606da-e1bd-47df-b198-7ab86cee9d5e\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d813b2b9-0558-4c76-b38a-78f46c45764c\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"ba12ab8e-71ed-49e4-b1c6-1b1b3debe708\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"31a0401a-7268-47ae-abbe-7d04bcf2c8c5\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"b39754b1-a4d6-462e-b39b-9cfc3cfc7a96\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"ab9d5ece-05ab-4c0d-9606-61fe430a30ce\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"55957f4717f25e08ebfd00f0\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957f4740d2f2ca6ffdb327\"}, \"id\": \"55957f4717f25e08fb448245\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:13:27 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/8a507c0c-ce22-4862-b880-2763d45b4394/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Y5fBiYwdko2HbzOENVWqaKIA09ua4UAzJhysWT4gRq8", oauth_signature="2zNQPQcY4780%2F%2Bh34NwLruPJVtg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860808", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:13:28 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/8a507c0c-ce22-4862-b880-2763d45b4394/\", \"task_id\": \"8a507c0c-ce22-4862-b880-2763d45b4394\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957f4840d2f2ca6ffdb330\"}, \"id\": \"55957f4817f25e4ab6c147a3\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:13:28 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/8a507c0c-ce22-4862-b880-2763d45b4394/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="7fsVg3udluSE9RGLmbAuPCVfHLWVWtSfW19sCYEQi6k", oauth_signature="TPgARPNTt7NkWmSe%2Fr78oe7PHp4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860808", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:13:28 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/8a507c0c-ce22-4862-b880-2763d45b4394/\", \"task_id\": \"8a507c0c-ce22-4862-b880-2763d45b4394\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T18:13:28Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:13:28Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957f4840d2f2ca6ffdb330\"}, \"id\": \"55957f4817f25e08fb44824c\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:13:28 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/afa5048e-4d4f-484a-a1d1-bab4a25568e8/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="LVycq1lV63k5Jg0KLsTwxpZ7yI2KC3n0cmyCbYgGAFw", oauth_signature="l88Qu%2FGt1TKxXlKTePvDVNFGbIo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860811", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:13:31 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "631" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/afa5048e-4d4f-484a-a1d1-bab4a25568e8/\", \"task_id\": \"afa5048e-4d4f-484a-a1d1-bab4a25568e8\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55957f4b40d2f2ca6ffdb334\"}, \"id\": \"55957f4b17f25e08fb448253\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:13:31 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/afa5048e-4d4f-484a-a1d1-bab4a25568e8/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="nMQbBWQrRarlT7gBUNoEnj8FHzx8EpzOj2y89U8N6Zg", oauth_signature="jU7awbV8unsUO7cRwWcCWu1JvfM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860812", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:13:32 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/afa5048e-4d4f-484a-a1d1-bab4a25568e8/\", \"task_id\": \"afa5048e-4d4f-484a-a1d1-bab4a25568e8\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T18:13:31Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:13:31Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/f4017bc4-72d4-47a8-8938-377fcf03321b/\", \"task_id\": \"f4017bc4-72d4-47a8-8938-377fcf03321b\"}, {\"_href\": \"/pulp/api/v2/tasks/6eac0b2f-cb6a-4f9e-be66-b6f647b9a7be/\", \"task_id\": \"6eac0b2f-cb6a-4f9e-be66-b6f647b9a7be\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T18:13:31Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T18:13:31Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55957f4b17f25e08ebfd0103\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957f4b40d2f2ca6ffdb334\"}, \"id\": \"55957f4b17f25e08fb448253\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:13:32 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/f4017bc4-72d4-47a8-8938-377fcf03321b/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="wSMFagI80qW7MbTBVzCsHgfMgZ9ldFuwAEV3Xa0", oauth_signature="HYGi7gQGeKfLpapHgrE65rtxmnE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860812", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:13:32 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/f4017bc4-72d4-47a8-8938-377fcf03321b/\", \"task_id\": \"f4017bc4-72d4-47a8-8938-377fcf03321b\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T18:13:31Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:13:31Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T18:13:31Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T18:13:31Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"55957f4b17f25e08ebfd0106\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957f4b40d2f2ca6ffdb336\"}, \"id\": \"55957f4b17f25e08fb44825a\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:13:32 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/6eac0b2f-cb6a-4f9e-be66-b6f647b9a7be/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="hlsaG4T1BgfPqCIoNWo4TDsxNCpigUs3cpMEm5hhLKw", oauth_signature="EOnBt%2BySCH9KNTxiETEC15Txxlk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435860812", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:13:32 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/6eac0b2f-cb6a-4f9e-be66-b6f647b9a7be/\", \"task_id\": \"6eac0b2f-cb6a-4f9e-be66-b6f647b9a7be\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T18:13:31Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:13:31Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"97157b10-eea2-4000-80cd-017ffbcf10ed\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3c04859d-aa2d-415b-a089-b8e29917c97d\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e63b672a-5371-4198-a199-c7b49c998f94\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"296b8ab8-1d6e-46bc-95a7-cea55b5fedb9\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c17c3c81-b852-4674-83a2-4ffcdb8ba832\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"5342b685-0e1e-4d82-ad61-d79a80909125\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d5098580-0093-4b89-b25b-d161e2226b25\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d1b3d6b0-d965-465a-b876-ba7c5a4789f8\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1b0a158a-699d-4b43-b477-baa6149b0686\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9d4d3841-d1dc-436f-b90a-3141d48fd9b8\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"622b4556-05c5-44bc-8341-65e44c524b37\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T18:13:31Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T18:13:31Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"97157b10-eea2-4000-80cd-017ffbcf10ed\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"3c04859d-aa2d-415b-a089-b8e29917c97d\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"e63b672a-5371-4198-a199-c7b49c998f94\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"296b8ab8-1d6e-46bc-95a7-cea55b5fedb9\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c17c3c81-b852-4674-83a2-4ffcdb8ba832\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"5342b685-0e1e-4d82-ad61-d79a80909125\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d5098580-0093-4b89-b25b-d161e2226b25\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d1b3d6b0-d965-465a-b876-ba7c5a4789f8\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1b0a158a-699d-4b43-b477-baa6149b0686\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9d4d3841-d1dc-436f-b90a-3141d48fd9b8\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"622b4556-05c5-44bc-8341-65e44c524b37\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"55957f4b17f25e08ebfd010e\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55957f4b40d2f2ca6ffdb337\"}, \"id\": \"55957f4b17f25e08fb44825e\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:13:32 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/f4ddba7f-a936-48bc-bdea-1324a3914230/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="psjb01Q52LIumrfa69qIeIaFU2VPLeG2etrnJqHsQ", oauth_signature="Wy2r2i5Vf%2BacHhnIrmaccslUrfw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861009", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:16:49 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/f4ddba7f-a936-48bc-bdea-1324a3914230/\", \"task_id\": \"f4ddba7f-a936-48bc-bdea-1324a3914230\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595801140d2f2ca6ffdb340\"}, \"id\": \"5595801117f25e4ab6c147db\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:16:49 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/f4ddba7f-a936-48bc-bdea-1324a3914230/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="3wDST6WIQFyKDNks3pyFyjZf1FAVzLoIOCQuHMLXG8", oauth_signature="1lxlZwh9Jdrm4KXz7Z9uS1uahp8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861009", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:16:49 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/f4ddba7f-a936-48bc-bdea-1324a3914230/\", \"task_id\": \"f4ddba7f-a936-48bc-bdea-1324a3914230\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T18:16:49Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:16:49Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595801140d2f2ca6ffdb340\"}, \"id\": \"5595801117f25e08fb448265\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:16:49 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/aa4fe0a5-6d30-48c5-8d10-25c8752d98f4/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Bc38aVeJruicvq2rWyZUrm0al0uO6wrP2NOtMXOGdk", oauth_signature="bzgvrRALXmlXD842PyqjGJ0eBD0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861092", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:12 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/aa4fe0a5-6d30-48c5-8d10-25c8752d98f4/\", \"task_id\": \"aa4fe0a5-6d30-48c5-8d10-25c8752d98f4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595806440d2f2ca6ffdb344\"}, \"id\": \"5595806417f25e4ab6c147f2\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:12 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/aa4fe0a5-6d30-48c5-8d10-25c8752d98f4/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="2fimHabzSNCCMjNXN6mow57oRA9nHvO6G3JIWqPYXGA", oauth_signature="dtZCIH006h3PabcFNVFj98r1cS0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861092", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:13 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/aa4fe0a5-6d30-48c5-8d10-25c8752d98f4/\", \"task_id\": \"aa4fe0a5-6d30-48c5-8d10-25c8752d98f4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T18:18:12Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:18:12Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/1f88ad06-94bb-414f-bb56-8d04f3255067/\", \"task_id\": \"1f88ad06-94bb-414f-bb56-8d04f3255067\"}, {\"_href\": \"/pulp/api/v2/tasks/f00f41be-e84a-46fb-91f8-73e3e09ae4b7/\", \"task_id\": \"f00f41be-e84a-46fb-91f8-73e3e09ae4b7\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T18:18:12Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T18:18:12Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5595806417f25e08ebfd0121\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595806440d2f2ca6ffdb344\"}, \"id\": \"5595806417f25e08fb44826c\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:13 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/1f88ad06-94bb-414f-bb56-8d04f3255067/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="4qKRaMF0dPR5lczaxJ2KQpdjxWgLkqJLoJptIGjAUM", oauth_signature="O9rJJfnQ0o0ylAwG2h9J2o%2F5pI0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861093", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:13 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/1f88ad06-94bb-414f-bb56-8d04f3255067/\", \"task_id\": \"1f88ad06-94bb-414f-bb56-8d04f3255067\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T18:18:12Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:18:12Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T18:18:12Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T18:18:12Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"5595806417f25e08ebfd0124\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595806440d2f2ca6ffdb346\"}, \"id\": \"5595806417f25e08fb448273\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:13 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/f00f41be-e84a-46fb-91f8-73e3e09ae4b7/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="GcwhA3PwzcQ2Zvsv7j0siWoga0yD3rWcoaEup6MPE", oauth_signature="PnRkQAaxQw7ei5ZM22j1XKR5xeQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861093", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:13 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/f00f41be-e84a-46fb-91f8-73e3e09ae4b7/\", \"task_id\": \"f00f41be-e84a-46fb-91f8-73e3e09ae4b7\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T18:18:12Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:18:12Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"fa93092a-30df-4b95-b3c1-7daf21817576\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"195df9de-991d-4cc8-adc1-986cd9e30ce9\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"896ef09f-f47f-4f1a-a450-aa7436e40d0f\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c195151e-fc6e-441a-b0ad-95d2377c091e\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1645d441-70e4-472a-93bc-3d9dddda62b2\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d9d0b114-ba0c-49c6-a79e-373978d63792\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a341ed3f-0aa2-4b50-bab8-0e113c2d7ae4\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"be1d58a5-f925-4874-bef1-b4864ca259f5\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1450fd3f-4a03-4799-b1a2-6bc946f83bcb\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d400be87-0b06-44a4-a653-e721de3e9460\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"37b0a115-f52a-46ae-b95a-ed32441c1d64\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T18:18:12Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T18:18:12Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"fa93092a-30df-4b95-b3c1-7daf21817576\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"195df9de-991d-4cc8-adc1-986cd9e30ce9\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"896ef09f-f47f-4f1a-a450-aa7436e40d0f\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"c195151e-fc6e-441a-b0ad-95d2377c091e\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1645d441-70e4-472a-93bc-3d9dddda62b2\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d9d0b114-ba0c-49c6-a79e-373978d63792\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a341ed3f-0aa2-4b50-bab8-0e113c2d7ae4\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"be1d58a5-f925-4874-bef1-b4864ca259f5\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"1450fd3f-4a03-4799-b1a2-6bc946f83bcb\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"d400be87-0b06-44a4-a653-e721de3e9460\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"37b0a115-f52a-46ae-b95a-ed32441c1d64\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"5595806417f25e08ebfd012c\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595806440d2f2ca6ffdb347\"}, \"id\": \"5595806417f25e08fb448277\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:13 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/a8e4543c-2f9a-4aea-9331-5fd2a9cf565e/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="zMBGf8ma3RRzSZAXriGchfFi2iRy0Ob4vZ9jvj31ENo", oauth_signature="dFOEtBuV%2BhtC7UxiT9p8CiIRn%2FM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861093", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:13 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/a8e4543c-2f9a-4aea-9331-5fd2a9cf565e/\", \"task_id\": \"a8e4543c-2f9a-4aea-9331-5fd2a9cf565e\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595806540d2f2ca6ffdb350\"}, \"id\": \"5595806517f25e4ab6c14801\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:13 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/a8e4543c-2f9a-4aea-9331-5fd2a9cf565e/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="q9GDqgZiyJIjg0Omq66A2x1edOmZq61nrjMgFtXLi0", oauth_signature="KQa9ioIihf%2Fk%2F4%2BLCDyBK6AjuxA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861094", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:14 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/a8e4543c-2f9a-4aea-9331-5fd2a9cf565e/\", \"task_id\": \"a8e4543c-2f9a-4aea-9331-5fd2a9cf565e\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T18:18:13Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:18:13Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595806540d2f2ca6ffdb350\"}, \"id\": \"5595806517f25e08fb44827e\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:14 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2//status/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - "*/*; q=0.5, application/xml" + Accept-Encoding: + - gzip, deflate + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:16 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "608" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"known_workers\": [{\"last_heartbeat\": \"2015-07-02T18:18:15Z\", \"name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\"}, {\"last_heartbeat\": \"2015-07-02T18:18:15Z\", \"name\": \"reserved_resource_worker-0@katello-centos7-devel.example.com\"}, {\"last_heartbeat\": \"2015-07-02T18:18:15Z\", \"name\": \"resource_manager@katello-centos7-devel.example.com\"}, {\"last_heartbeat\": \"2015-07-02T18:17:33Z\", \"name\": \"scheduler@katello-centos7-devel.example.com\"}], \"messaging_connection\": {\"connected\": true}, \"database_connection\": {\"connected\": true}, \"api_version\": \"2\", \"versions\": {\"platform_version\": \"2.6.0\"}}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:16 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/users/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="btrwUQXQyxNEK4CR7ga25LbS4SZCW7YPydXbU5T7zBY", oauth_signature="VsRK6Ur%2FA5AJqtLU%2FUKxu2YogK4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861096", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:16 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "162" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "[{\"_id\": {\"$oid\": \"559291a117f25e6857499a71\"}, \"name\": \"admin\", \"roles\": [\"super-users\"], \"_ns\": \"users\", \"login\": \"admin\", \"_href\": \"/pulp/api/v2/users/admin/\"}]" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:16 GMT +- request: + method: post + uri: https://katello-centos7-devel.example.com/pulp/api/v2/repositories/ + body: + encoding: US-ASCII + string: "{\"id\":\"1\",\"display_name\":\"Fedora 17 x86_64\",\"importer_type_id\":\"yum_importer\",\"importer_config\":{\"feed\":\"file:///var/www/test_repos/zoo\",\"ssl_ca_cert\":null,\"ssl_client_cert\":null,\"ssl_client_key\":null},\"notes\":{\"_repo-type\":\"rpm-repo\"},\"distributors\":[{\"distributor_type_id\":\"yum_distributor\",\"distributor_config\":{\"relative_url\":\"/test_path/\",\"http\":false,\"https\":true,\"protected\":true},\"auto_publish\":true,\"distributor_id\":\"1\"},{\"distributor_type_id\":\"yum_clone_distributor\",\"distributor_config\":{\"destination_distributor_id\":\"1\"},\"auto_publish\":false,\"distributor_id\":\"1_clone\"},{\"distributor_type_id\":\"nodes_http_distributor\",\"distributor_config\":{},\"auto_publish\":true,\"distributor_id\":\"1_nodes\"}]}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="VE2ucM8EcdnSFV2FvKz33hVj8UEx8jSRZ6PtVLAY", oauth_signature="6GnMA9eoqmmIBaOBdlpn%2BPcVYxI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861096", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "703" + User-Agent: + - Ruby + response: + status: + code: 201 + message: Created + headers: + Date: + - Thu, 02 Jul 2015 18:18:16 GMT + Server: + - Apache/2.4.6 (CentOS) + Location: + - "1" + Content-Length: + - "304" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"last_unit_added\": null, \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"last_unit_removed\": null, \"content_unit_counts\": {}, \"_ns\": \"repos\", \"_id\": {\"$oid\": \"5595806817f25e4ab6c1480c\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:16 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2//status/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - "*/*; q=0.5, application/xml" + Accept-Encoding: + - gzip, deflate + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:16 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "608" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"known_workers\": [{\"last_heartbeat\": \"2015-07-02T18:18:15Z\", \"name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\"}, {\"last_heartbeat\": \"2015-07-02T18:18:15Z\", \"name\": \"reserved_resource_worker-0@katello-centos7-devel.example.com\"}, {\"last_heartbeat\": \"2015-07-02T18:18:15Z\", \"name\": \"resource_manager@katello-centos7-devel.example.com\"}, {\"last_heartbeat\": \"2015-07-02T18:17:33Z\", \"name\": \"scheduler@katello-centos7-devel.example.com\"}], \"messaging_connection\": {\"connected\": true}, \"database_connection\": {\"connected\": true}, \"api_version\": \"2\", \"versions\": {\"platform_version\": \"2.6.0\"}}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:16 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/users/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="ZEYBQcLShfYo3i8S57M3KAaAtVBYCdx9LPHKjyCbRwo", oauth_signature="uJXTj3ybfOY1A1vfA%2BkzfS8gRzQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861096", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:16 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "162" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "[{\"_id\": {\"$oid\": \"559291a117f25e6857499a71\"}, \"name\": \"admin\", \"roles\": [\"super-users\"], \"_ns\": \"users\", \"login\": \"admin\", \"_href\": \"/pulp/api/v2/users/admin/\"}]" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:16 GMT +- request: + method: post + uri: https://katello-centos7-devel.example.com/pulp/api/v2/repositories/1/actions/sync/ + body: + encoding: US-ASCII + string: "{\"override_config\":{\"num_threads\":4,\"validate\":true}}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Gx5Vr0YaY3JC0bvJwAB2jOBA2VsKb1c2RYWewCU0g", oauth_signature="c5RWeHkJ0QkrTZpBLs4PEud3If4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861096", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "53" + User-Agent: + - Ruby + response: + status: + code: 202 + message: Accepted + headers: + Date: + - Thu, 02 Jul 2015 18:18:16 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Encoding: + - utf-8 + Content-Length: + - "172" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a5ab0b08-c9e1-4064-a7b6-5994b47a2345/\", \"task_id\": \"a5ab0b08-c9e1-4064-a7b6-5994b47a2345\"}], \"result\": null, \"error\": null}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:16 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/a5ab0b08-c9e1-4064-a7b6-5994b47a2345/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="ZVDKlB9SMI8QShHKLKKq9s33isjmq0EovHZjsFzeM54", oauth_signature="yPyOh0wb%2FeboTwp4M9emjc8efHw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861096", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:16 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/a5ab0b08-c9e1-4064-a7b6-5994b47a2345/\", \"task_id\": \"a5ab0b08-c9e1-4064-a7b6-5994b47a2345\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595806840d2f2ca6ffdb354\"}, \"id\": \"5595806817f25e4ab6c14818\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:16 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/a5ab0b08-c9e1-4064-a7b6-5994b47a2345/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="FHPrbtrmNJOcYnQFtRrj1I7ItkE8QZhaDGJq6FBFqWk", oauth_signature="hS9%2F%2F0Q5%2FzARmeWYubZT%2B%2Bk84wQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861097", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:17 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2291" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/a5ab0b08-c9e1-4064-a7b6-5994b47a2345/\", \"task_id\": \"a5ab0b08-c9e1-4064-a7b6-5994b47a2345\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-07-02T18:18:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:18:17Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/337bff9f-b05f-4aa6-8cee-c87df2d31c17/\", \"task_id\": \"337bff9f-b05f-4aa6-8cee-c87df2d31c17\"}, {\"_href\": \"/pulp/api/v2/tasks/1cb9eb10-f5a9-46bf-80f3-8e3c61da96f3/\", \"task_id\": \"1cb9eb10-f5a9-46bf-80f3-8e3c61da96f3\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-07-02T18:18:17Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-07-02T18:18:17Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5595806917f25e08ebfd013f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595806840d2f2ca6ffdb354\"}, \"id\": \"5595806917f25e08fb448285\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:17 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/337bff9f-b05f-4aa6-8cee-c87df2d31c17/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="mjcDkTx7a5vPobIgUhAgVwclGgCrPN3PHRCW65Yyq0", oauth_signature="fVg8BOLBjL4uT0Vy4x3H1nISKs8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861097", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:17 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1063" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/337bff9f-b05f-4aa6-8cee-c87df2d31c17/\", \"task_id\": \"337bff9f-b05f-4aa6-8cee-c87df2d31c17\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T18:18:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:18:17Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T18:18:17Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T18:18:17Z\", \"traceback\": null, \"distributor_type_id\": \"nodes_http_distributor\", \"summary\": \"succeeded\", \"error_message\": null, \"details\": {\"unit_count\": 15}, \"distributor_id\": \"1_nodes\", \"id\": \"5595806917f25e08ebfd0142\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595806940d2f2ca6ffdb356\"}, \"id\": \"5595806917f25e08fb44828c\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:17 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/1cb9eb10-f5a9-46bf-80f3-8e3c61da96f3/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="mfd0hYfNqHrWwVZgE8gwaTN525x2cYXaquyBmCRZaY", oauth_signature="xAzCAvtMd5LlQ5DXXVqX6G36tBA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861097", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:17 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "6909" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.publish.publish\", \"_href\": \"/pulp/api/v2/tasks/1cb9eb10-f5a9-46bf-80f3-8e3c61da96f3/\", \"task_id\": \"1cb9eb10-f5a9-46bf-80f3-8e3c61da96f3\", \"tags\": [\"pulp:repository:1\", \"pulp:action:publish\"], \"finish_time\": \"2015-07-02T18:18:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:18:17Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"1\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"07eb5677-08f1-447f-917e-7e600ae5397d\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"82ab2604-9b81-45b1-bf77-997394319adf\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"78595e8a-c397-4a3d-bd99-c7d9da124f70\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8a77be97-c77a-465b-abe5-f3cd5938ee03\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"aecc6519-3c53-4a54-844d-9bd82ec98e5e\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"86893f03-abb3-4541-b3f3-5a5e6b891e09\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"df2982ca-fafd-4cea-ba03-851b72e6f4c0\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f61d7503-c632-44bf-953a-de8ea38f949f\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9d7dcdda-7b04-4dda-9bb6-7dd9fe4bf76f\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a50d19cf-f2c0-42eb-94b7-13f1a28d8b75\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f705f9d5-811c-491a-a879-5d1d1a7af25b\", \"num_processed\": 1}]}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": {\"exception\": null, \"repo_id\": \"1\", \"started\": \"2015-07-02T18:18:17Z\", \"_ns\": \"repo_publish_results\", \"completed\": \"2015-07-02T18:18:17Z\", \"traceback\": null, \"distributor_type_id\": \"yum_distributor\", \"summary\": {\"generate sqlite\": \"SKIPPED\", \"initialize_repo_metadata\": \"FINISHED\", \"rpms\": \"FINISHED\", \"close_repo_metadata\": \"FINISHED\", \"drpms\": \"SKIPPED\", \"comps\": \"FINISHED\", \"distribution\": \"FINISHED\", \"publish_directory\": \"FINISHED\", \"errata\": \"FINISHED\", \"metadata\": \"FINISHED\"}, \"error_message\": null, \"details\": [{\"num_success\": 1, \"description\": \"Initializing repo metadata\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"07eb5677-08f1-447f-917e-7e600ae5397d\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Publishing Distribution files\", \"step_type\": \"distribution\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"82ab2604-9b81-45b1-bf77-997394319adf\", \"num_processed\": 1}, {\"num_success\": 8, \"description\": \"Publishing RPMs\", \"step_type\": \"rpms\", \"items_total\": 8, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"78595e8a-c397-4a3d-bd99-c7d9da124f70\", \"num_processed\": 8}, {\"num_success\": 0, \"description\": \"Publishing Delta RPMs\", \"step_type\": \"drpms\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"8a77be97-c77a-465b-abe5-f3cd5938ee03\", \"num_processed\": 0}, {\"num_success\": 3, \"description\": \"Publishing Errata\", \"step_type\": \"errata\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"aecc6519-3c53-4a54-844d-9bd82ec98e5e\", \"num_processed\": 3}, {\"num_success\": 3, \"description\": \"Publishing Comps file\", \"step_type\": \"comps\", \"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"86893f03-abb3-4541-b3f3-5a5e6b891e09\", \"num_processed\": 3}, {\"num_success\": 0, \"description\": \"Publishing Metadata.\", \"step_type\": \"metadata\", \"items_total\": 0, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"df2982ca-fafd-4cea-ba03-851b72e6f4c0\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Closing repo metadata\", \"step_type\": \"close_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f61d7503-c632-44bf-953a-de8ea38f949f\", \"num_processed\": 1}, {\"num_success\": 0, \"description\": \"Generating sqlite files\", \"step_type\": \"generate sqlite\", \"items_total\": 1, \"state\": \"SKIPPED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"9d7dcdda-7b04-4dda-9bb6-7dd9fe4bf76f\", \"num_processed\": 0}, {\"num_success\": 1, \"description\": \"Publishing files to web\", \"step_type\": \"publish_directory\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"a50d19cf-f2c0-42eb-94b7-13f1a28d8b75\", \"num_processed\": 1}, {\"num_success\": 1, \"description\": \"Writing Listings File\", \"step_type\": \"initialize_repo_metadata\", \"items_total\": 1, \"state\": \"FINISHED\", \"error_details\": [], \"details\": \"\", \"num_failures\": 0, \"step_id\": \"f705f9d5-811c-491a-a879-5d1d1a7af25b\", \"num_processed\": 1}], \"distributor_id\": \"1\", \"id\": \"5595806917f25e08ebfd014a\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5595806940d2f2ca6ffdb358\"}, \"id\": \"5595806917f25e08fb448290\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:17 GMT +- request: + method: post + uri: https://katello-centos7-devel.example.com/pulp/api/v2/repositories/1/search/units/ + body: + encoding: US-ASCII + string: "{\"criteria\":{\"type_ids\":[\"package_group\"]}}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="uVMTTZI31iSb3tIPVXfKn7gQPT8S4EgLuQhP7RNWQo", oauth_signature="bgESBtWaX%2BX8ah%2Bp7mAkR7o88q8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861097", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "43" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:17 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1760" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "[{\"updated\": \"2015-07-02T18:18:17Z\", \"repo_id\": \"1\", \"created\": \"2015-07-02T18:18:17Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"910ea7a7-67f9-4a5f-9b45-4afb8b7605f0\", \"metadata\": {\"_storage_path\": null, \"mandatory_package_names\": [\"penguin\"], \"repo_id\": \"1\", \"description\": null, \"user_visible\": true, \"default\": true, \"_ns\": \"units_package_group\", \"_last_updated\": 1435861097, \"display_order\": 1024, \"optional_package_names\": [], \"translated_name\": {}, \"translated_description\": {}, \"conditional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"langonly\": null, \"_id\": \"910ea7a7-67f9-4a5f-9b45-4afb8b7605f0\", \"id\": \"bird\", \"name\": \"bird\"}, \"unit_type_id\": \"package_group\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5595806917f25e08ebfd013c\"}, \"id\": \"5595806917f25e08ebfd013c\", \"owner_id\": \"yum_importer\"}, {\"updated\": \"2015-07-02T18:18:17Z\", \"repo_id\": \"1\", \"created\": \"2015-07-02T18:18:17Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"7e27def2-a681-434d-b29c-e4dbd69036ae\", \"metadata\": {\"_storage_path\": null, \"mandatory_package_names\": [\"elephant,giraffe,cheetah,lion,monkey,penguin,squirrel,walrus\", \"penguin\"], \"repo_id\": \"1\", \"description\": null, \"user_visible\": true, \"default\": true, \"_ns\": \"units_package_group\", \"_last_updated\": 1435861097, \"display_order\": 1024, \"optional_package_names\": [], \"translated_name\": {}, \"translated_description\": {}, \"conditional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"langonly\": null, \"_id\": \"7e27def2-a681-434d-b29c-e4dbd69036ae\", \"id\": \"mammal\", \"name\": \"mammal\"}, \"unit_type_id\": \"package_group\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5595806917f25e08ebfd013d\"}, \"id\": \"5595806917f25e08ebfd013d\", \"owner_id\": \"yum_importer\"}]" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:17 GMT +- request: + method: post + uri: https://katello-centos7-devel.example.com/pulp/api/v2/repositories/1/search/units/ + body: + encoding: US-ASCII + string: "{\"criteria\":{\"type_ids\":[\"package_group\"]}}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="oYhqlIiZsODQYBhoL78lugo36pLd7mSUdW7pjejfo8c", oauth_signature="l7cstWozR0kB2sgSK1bdfA9XQLQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861097", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "43" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:17 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1760" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "[{\"updated\": \"2015-07-02T18:18:17Z\", \"repo_id\": \"1\", \"created\": \"2015-07-02T18:18:17Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"910ea7a7-67f9-4a5f-9b45-4afb8b7605f0\", \"metadata\": {\"_storage_path\": null, \"mandatory_package_names\": [\"penguin\"], \"repo_id\": \"1\", \"description\": null, \"user_visible\": true, \"default\": true, \"_ns\": \"units_package_group\", \"_last_updated\": 1435861097, \"display_order\": 1024, \"optional_package_names\": [], \"translated_name\": {}, \"translated_description\": {}, \"conditional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"langonly\": null, \"_id\": \"910ea7a7-67f9-4a5f-9b45-4afb8b7605f0\", \"id\": \"bird\", \"name\": \"bird\"}, \"unit_type_id\": \"package_group\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5595806917f25e08ebfd013c\"}, \"id\": \"5595806917f25e08ebfd013c\", \"owner_id\": \"yum_importer\"}, {\"updated\": \"2015-07-02T18:18:17Z\", \"repo_id\": \"1\", \"created\": \"2015-07-02T18:18:17Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"7e27def2-a681-434d-b29c-e4dbd69036ae\", \"metadata\": {\"_storage_path\": null, \"mandatory_package_names\": [\"elephant,giraffe,cheetah,lion,monkey,penguin,squirrel,walrus\", \"penguin\"], \"repo_id\": \"1\", \"description\": null, \"user_visible\": true, \"default\": true, \"_ns\": \"units_package_group\", \"_last_updated\": 1435861097, \"display_order\": 1024, \"optional_package_names\": [], \"translated_name\": {}, \"translated_description\": {}, \"conditional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"langonly\": null, \"_id\": \"7e27def2-a681-434d-b29c-e4dbd69036ae\", \"id\": \"mammal\", \"name\": \"mammal\"}, \"unit_type_id\": \"package_group\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5595806917f25e08ebfd013d\"}, \"id\": \"5595806917f25e08ebfd013d\", \"owner_id\": \"yum_importer\"}]" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:17 GMT +- request: + method: post + uri: https://katello-centos7-devel.example.com/pulp/api/v2/content/units/package_group/search/ + body: + encoding: US-ASCII + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"910ea7a7-67f9-4a5f-9b45-4afb8b7605f0\"]}}},\"include_repos\":true}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="0XKvTVnpIoNQXEbZ9CfejnwYAYMWjbjOtpmZ7g7rg", oauth_signature="hzN8p8WFCXJWlf46nqIlbsb2hyg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861097", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "102" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:17 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "622" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "[{\"_href\": \"/pulp/api/v2/content/units/package_group/910ea7a7-67f9-4a5f-9b45-4afb8b7605f0/\", \"optional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"id\": \"bird\", \"children\": {}, \"mandatory_package_names\": [\"penguin\"], \"repo_id\": \"1\", \"user_visible\": true, \"translated_name\": {}, \"repository_memberships\": [\"1\"], \"description\": null, \"_last_updated\": \"2015-07-02T18:18:17Z\", \"_storage_path\": null, \"name\": \"bird\", \"default\": true, \"display_order\": 1024, \"translated_description\": {}, \"langonly\": null, \"_id\": \"910ea7a7-67f9-4a5f-9b45-4afb8b7605f0\", \"conditional_package_names\": []}]" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:18 GMT +- request: + method: post + uri: https://katello-centos7-devel.example.com/pulp/api/v2/repositories/1/search/units/ + body: + encoding: US-ASCII + string: "{\"criteria\":{\"type_ids\":[\"package_group\"]}}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="CIFYz7fXB636cyw6QY9NUDrCSbhzZvCpxcOB9yfsCY", oauth_signature="Xhx%2FG7YJFTH%2FskTKKxkRHnCGyDs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861098", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "43" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:18 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1760" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "[{\"updated\": \"2015-07-02T18:18:17Z\", \"repo_id\": \"1\", \"created\": \"2015-07-02T18:18:17Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"910ea7a7-67f9-4a5f-9b45-4afb8b7605f0\", \"metadata\": {\"_storage_path\": null, \"mandatory_package_names\": [\"penguin\"], \"repo_id\": \"1\", \"description\": null, \"user_visible\": true, \"default\": true, \"_ns\": \"units_package_group\", \"_last_updated\": 1435861097, \"display_order\": 1024, \"optional_package_names\": [], \"translated_name\": {}, \"translated_description\": {}, \"conditional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"langonly\": null, \"_id\": \"910ea7a7-67f9-4a5f-9b45-4afb8b7605f0\", \"id\": \"bird\", \"name\": \"bird\"}, \"unit_type_id\": \"package_group\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5595806917f25e08ebfd013c\"}, \"id\": \"5595806917f25e08ebfd013c\", \"owner_id\": \"yum_importer\"}, {\"updated\": \"2015-07-02T18:18:17Z\", \"repo_id\": \"1\", \"created\": \"2015-07-02T18:18:17Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"7e27def2-a681-434d-b29c-e4dbd69036ae\", \"metadata\": {\"_storage_path\": null, \"mandatory_package_names\": [\"elephant,giraffe,cheetah,lion,monkey,penguin,squirrel,walrus\", \"penguin\"], \"repo_id\": \"1\", \"description\": null, \"user_visible\": true, \"default\": true, \"_ns\": \"units_package_group\", \"_last_updated\": 1435861097, \"display_order\": 1024, \"optional_package_names\": [], \"translated_name\": {}, \"translated_description\": {}, \"conditional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"langonly\": null, \"_id\": \"7e27def2-a681-434d-b29c-e4dbd69036ae\", \"id\": \"mammal\", \"name\": \"mammal\"}, \"unit_type_id\": \"package_group\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5595806917f25e08ebfd013d\"}, \"id\": \"5595806917f25e08ebfd013d\", \"owner_id\": \"yum_importer\"}]" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:18 GMT +- request: + method: post + uri: https://katello-centos7-devel.example.com/pulp/api/v2/repositories/1/search/units/ + body: + encoding: US-ASCII + string: "{\"criteria\":{\"type_ids\":[\"package_group\"]}}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="bINRLKd2C4uj06jiJh5iOM2JP1fDz6wqi4Jaqi06Xg", oauth_signature="oI%2FBJzi4dtxnloK8EIdhT0apX5M%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861098", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "43" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:18 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1760" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "[{\"updated\": \"2015-07-02T18:18:17Z\", \"repo_id\": \"1\", \"created\": \"2015-07-02T18:18:17Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"910ea7a7-67f9-4a5f-9b45-4afb8b7605f0\", \"metadata\": {\"_storage_path\": null, \"mandatory_package_names\": [\"penguin\"], \"repo_id\": \"1\", \"description\": null, \"user_visible\": true, \"default\": true, \"_ns\": \"units_package_group\", \"_last_updated\": 1435861097, \"display_order\": 1024, \"optional_package_names\": [], \"translated_name\": {}, \"translated_description\": {}, \"conditional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"langonly\": null, \"_id\": \"910ea7a7-67f9-4a5f-9b45-4afb8b7605f0\", \"id\": \"bird\", \"name\": \"bird\"}, \"unit_type_id\": \"package_group\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5595806917f25e08ebfd013c\"}, \"id\": \"5595806917f25e08ebfd013c\", \"owner_id\": \"yum_importer\"}, {\"updated\": \"2015-07-02T18:18:17Z\", \"repo_id\": \"1\", \"created\": \"2015-07-02T18:18:17Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"7e27def2-a681-434d-b29c-e4dbd69036ae\", \"metadata\": {\"_storage_path\": null, \"mandatory_package_names\": [\"elephant,giraffe,cheetah,lion,monkey,penguin,squirrel,walrus\", \"penguin\"], \"repo_id\": \"1\", \"description\": null, \"user_visible\": true, \"default\": true, \"_ns\": \"units_package_group\", \"_last_updated\": 1435861097, \"display_order\": 1024, \"optional_package_names\": [], \"translated_name\": {}, \"translated_description\": {}, \"conditional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"langonly\": null, \"_id\": \"7e27def2-a681-434d-b29c-e4dbd69036ae\", \"id\": \"mammal\", \"name\": \"mammal\"}, \"unit_type_id\": \"package_group\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5595806917f25e08ebfd013d\"}, \"id\": \"5595806917f25e08ebfd013d\", \"owner_id\": \"yum_importer\"}]" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:18 GMT +- request: + method: post + uri: https://katello-centos7-devel.example.com/pulp/api/v2/repositories/1/search/units/ + body: + encoding: US-ASCII + string: "{\"criteria\":{\"type_ids\":[\"package_group\"]}}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="mi5bdwQUl1mqaBZIjrEWud6rerggAH1y07nmRUTrck", oauth_signature="iSncTmC4kkrgL54kTYmUwamJZlM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861098", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "43" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:18 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1760" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "[{\"updated\": \"2015-07-02T18:18:17Z\", \"repo_id\": \"1\", \"created\": \"2015-07-02T18:18:17Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"910ea7a7-67f9-4a5f-9b45-4afb8b7605f0\", \"metadata\": {\"_storage_path\": null, \"mandatory_package_names\": [\"penguin\"], \"repo_id\": \"1\", \"description\": null, \"user_visible\": true, \"default\": true, \"_ns\": \"units_package_group\", \"_last_updated\": 1435861097, \"display_order\": 1024, \"optional_package_names\": [], \"translated_name\": {}, \"translated_description\": {}, \"conditional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"langonly\": null, \"_id\": \"910ea7a7-67f9-4a5f-9b45-4afb8b7605f0\", \"id\": \"bird\", \"name\": \"bird\"}, \"unit_type_id\": \"package_group\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5595806917f25e08ebfd013c\"}, \"id\": \"5595806917f25e08ebfd013c\", \"owner_id\": \"yum_importer\"}, {\"updated\": \"2015-07-02T18:18:17Z\", \"repo_id\": \"1\", \"created\": \"2015-07-02T18:18:17Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"7e27def2-a681-434d-b29c-e4dbd69036ae\", \"metadata\": {\"_storage_path\": null, \"mandatory_package_names\": [\"elephant,giraffe,cheetah,lion,monkey,penguin,squirrel,walrus\", \"penguin\"], \"repo_id\": \"1\", \"description\": null, \"user_visible\": true, \"default\": true, \"_ns\": \"units_package_group\", \"_last_updated\": 1435861097, \"display_order\": 1024, \"optional_package_names\": [], \"translated_name\": {}, \"translated_description\": {}, \"conditional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"langonly\": null, \"_id\": \"7e27def2-a681-434d-b29c-e4dbd69036ae\", \"id\": \"mammal\", \"name\": \"mammal\"}, \"unit_type_id\": \"package_group\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5595806917f25e08ebfd013d\"}, \"id\": \"5595806917f25e08ebfd013d\", \"owner_id\": \"yum_importer\"}]" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:18 GMT +- request: + method: post + uri: https://katello-centos7-devel.example.com/pulp/api/v2/repositories/1/search/units/ + body: + encoding: US-ASCII + string: "{\"criteria\":{\"type_ids\":[\"package_group\"]}}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="E05jNKyPM3z3TbwL9WmbFtPQwfh7Eul15NqEe9zOOrs", oauth_signature="ripNdnCP9A9ByJ%2B5kLLLtx2Cef8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861098", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "43" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:18 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1760" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "[{\"updated\": \"2015-07-02T18:18:17Z\", \"repo_id\": \"1\", \"created\": \"2015-07-02T18:18:17Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"910ea7a7-67f9-4a5f-9b45-4afb8b7605f0\", \"metadata\": {\"_storage_path\": null, \"mandatory_package_names\": [\"penguin\"], \"repo_id\": \"1\", \"description\": null, \"user_visible\": true, \"default\": true, \"_ns\": \"units_package_group\", \"_last_updated\": 1435861097, \"display_order\": 1024, \"optional_package_names\": [], \"translated_name\": {}, \"translated_description\": {}, \"conditional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"langonly\": null, \"_id\": \"910ea7a7-67f9-4a5f-9b45-4afb8b7605f0\", \"id\": \"bird\", \"name\": \"bird\"}, \"unit_type_id\": \"package_group\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5595806917f25e08ebfd013c\"}, \"id\": \"5595806917f25e08ebfd013c\", \"owner_id\": \"yum_importer\"}, {\"updated\": \"2015-07-02T18:18:17Z\", \"repo_id\": \"1\", \"created\": \"2015-07-02T18:18:17Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"7e27def2-a681-434d-b29c-e4dbd69036ae\", \"metadata\": {\"_storage_path\": null, \"mandatory_package_names\": [\"elephant,giraffe,cheetah,lion,monkey,penguin,squirrel,walrus\", \"penguin\"], \"repo_id\": \"1\", \"description\": null, \"user_visible\": true, \"default\": true, \"_ns\": \"units_package_group\", \"_last_updated\": 1435861097, \"display_order\": 1024, \"optional_package_names\": [], \"translated_name\": {}, \"translated_description\": {}, \"conditional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"langonly\": null, \"_id\": \"7e27def2-a681-434d-b29c-e4dbd69036ae\", \"id\": \"mammal\", \"name\": \"mammal\"}, \"unit_type_id\": \"package_group\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5595806917f25e08ebfd013d\"}, \"id\": \"5595806917f25e08ebfd013d\", \"owner_id\": \"yum_importer\"}]" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:18 GMT +- request: + method: post + uri: https://katello-centos7-devel.example.com/pulp/api/v2/content/units/package_group/search/ + body: + encoding: US-ASCII + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"910ea7a7-67f9-4a5f-9b45-4afb8b7605f0\"]}}},\"include_repos\":true}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="w7pI6Z71mjjhjpQJqBk4Lb1BhjHeYEDt7Xr0i33o8", oauth_signature="luhqy29AlrYFoHbHx3dNec%2FKm0A%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861098", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "102" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:18 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "622" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "[{\"_href\": \"/pulp/api/v2/content/units/package_group/910ea7a7-67f9-4a5f-9b45-4afb8b7605f0/\", \"optional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"id\": \"bird\", \"children\": {}, \"mandatory_package_names\": [\"penguin\"], \"repo_id\": \"1\", \"user_visible\": true, \"translated_name\": {}, \"repository_memberships\": [\"1\"], \"description\": null, \"_last_updated\": \"2015-07-02T18:18:17Z\", \"_storage_path\": null, \"name\": \"bird\", \"default\": true, \"display_order\": 1024, \"translated_description\": {}, \"langonly\": null, \"_id\": \"910ea7a7-67f9-4a5f-9b45-4afb8b7605f0\", \"conditional_package_names\": []}]" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:18 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2//status/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - "*/*; q=0.5, application/xml" + Accept-Encoding: + - gzip, deflate + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:18 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "608" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"known_workers\": [{\"last_heartbeat\": \"2015-07-02T18:18:17Z\", \"name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\"}, {\"last_heartbeat\": \"2015-07-02T18:18:17Z\", \"name\": \"reserved_resource_worker-0@katello-centos7-devel.example.com\"}, {\"last_heartbeat\": \"2015-07-02T18:18:17Z\", \"name\": \"resource_manager@katello-centos7-devel.example.com\"}, {\"last_heartbeat\": \"2015-07-02T18:17:33Z\", \"name\": \"scheduler@katello-centos7-devel.example.com\"}], \"messaging_connection\": {\"connected\": true}, \"database_connection\": {\"connected\": true}, \"api_version\": \"2\", \"versions\": {\"platform_version\": \"2.6.0\"}}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:18 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/users/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="3vFNmmAU3E3faYyfvFZZ7sSDAo05v7Zr1EGgXbo", oauth_signature="nddnGr8pe8MRZ6QLYBgfIhHUkkM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861098", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:18 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "162" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "[{\"_id\": {\"$oid\": \"559291a117f25e6857499a71\"}, \"name\": \"admin\", \"roles\": [\"super-users\"], \"_ns\": \"users\", \"login\": \"admin\", \"_href\": \"/pulp/api/v2/users/admin/\"}]" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:18 GMT +- request: + method: delete + uri: https://katello-centos7-devel.example.com/pulp/api/v2/repositories/1/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="Qs6hxp511OXWQPOlkxs1owsBNAH4fKEmrpfEYmRQr0", oauth_signature="8UV8GPLE6dGkfWOnMy%2FOkzBr%2FPg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861098", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 202 + message: Accepted + headers: + Date: + - Thu, 02 Jul 2015 18:18:18 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Encoding: + - utf-8 + Content-Length: + - "172" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/5ff59d42-f89b-46c6-a886-467b59b22a85/\", \"task_id\": \"5ff59d42-f89b-46c6-a886-467b59b22a85\"}], \"result\": null, \"error\": null}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:18 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/5ff59d42-f89b-46c6-a886-467b59b22a85/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="8Ism3O4ka1gTpVabQdA11muFMHYybcXbznqwIYk4U", oauth_signature="4XWinPj78On%2B6KYaRdYssJu3p7s%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861098", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:18 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "519" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/5ff59d42-f89b-46c6-a886-467b59b22a85/\", \"task_id\": \"5ff59d42-f89b-46c6-a886-467b59b22a85\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595806a40d2f2ca6ffdb360\"}, \"id\": \"5595806a17f25e4ab6c14839\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:18 GMT +- request: + method: get + uri: https://katello-centos7-devel.example.com/pulp/api/v2/tasks/5ff59d42-f89b-46c6-a886-467b59b22a85/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="oWyfvKzjrENJdKNkfUgsztaVsqvmxgi5", oauth_nonce="MHud9oV9o6Yirwbl2ELKNi2otLiSuaL2sITfSB6qYuo", oauth_signature="k7gFSp0%2B4tSLS%2BXTvFN1D2SK%2Fz8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1435861099", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 02 Jul 2015 18:18:19 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "692" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/5ff59d42-f89b-46c6-a886-467b59b22a85/\", \"task_id\": \"5ff59d42-f89b-46c6-a886-467b59b22a85\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-07-02T18:18:18Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-07-02T18:18:18Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-1@katello-centos7-devel.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-1@katello-centos7-devel.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5595806a40d2f2ca6ffdb360\"}, \"id\": \"5595806a17f25e08fb448297\"}" + http_version: + recorded_at: Thu, 02 Jul 2015 18:18:19 GMT +recorded_with: VCR 2.9.3 diff --git a/test/fixtures/vcr_cassettes/pulp/repository/after_sync.yml b/test/fixtures/vcr_cassettes/pulp/repository/after_sync.yml index ca373736792..35ea6d0b67b 100644 --- a/test/fixtures/vcr_cassettes/pulp/repository/after_sync.yml +++ b/test/fixtures/vcr_cassettes/pulp/repository/after_sync.yml @@ -1,8 +1,49 @@ --- http_interactions: +- request: + method: get + uri: https://localhost/pulp/api/v2/tasks/709d1eef-da78-49b0-aa52-f32116d9a4fe/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="HkB4DmJrPqhM9HFOoK2alZxvnbzqo3LVHDiSv0qgVc", oauth_signature="xWivB1IIry3vQFodCYY4wdDnPCQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687791", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:16:31 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "603" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/709d1eef-da78-49b0-aa52-f32116d9a4fe/\", \"task_id\": \"709d1eef-da78-49b0-aa52-f32116d9a4fe\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2014-10-07T13:16:31Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:31Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7af33a7d3a2e73bef51\"}, \"id\": \"5433e7af5ca0134a6f27941f\"}" + http_version: + recorded_at: Tue, 07 Oct 2014 13:16:31 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/ body: encoding: US-ASCII string: "{\"id\":\"1\",\"display_name\":\"Fedora 17 x86_64\",\"importer_type_id\":\"yum_importer\",\"importer_config\":{\"feed\":\"file:///var/www/test_repos/zoo\",\"ssl_ca_cert\":null,\"ssl_client_cert\":null,\"ssl_client_key\":null},\"notes\":{\"_repo-type\":\"rpm-repo\"},\"distributors\":[{\"distributor_type_id\":\"yum_distributor\",\"distributor_config\":{\"relative_url\":\"/test_path/\",\"http\":false,\"https\":true,\"protected\":true},\"auto_publish\":true,\"distributor_id\":\"1\"},{\"distributor_type_id\":\"yum_clone_distributor\",\"distributor_config\":{\"destination_distributor_id\":\"1\"},\"auto_publish\":false,\"distributor_id\":\"1_clone\"},{\"distributor_type_id\":\"nodes_http_distributor\",\"distributor_config\":{},\"auto_publish\":true,\"distributor_id\":\"1_nodes\"}]}" @@ -14,7 +55,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="SefwwX10yCNXZgZpkhkFlK9oDGPJaMUoexLd878eas", oauth_signature="qad78fyD9VU4R%2BgDD%2BI4cnfUdGg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687790", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="Zu1DenU8vmfYPSgQeAaB8ORoT3GI3SzHF5JZVeNfQVQ", oauth_signature="PSg7GkllPO4bgB8iGgcJDVqCuCM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804758", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -27,27 +68,25 @@ http_interactions: message: Created headers: Date: - - Tue, 07 Oct 2014 13:16:30 GMT + - Wed, 05 Aug 2015 19:59:18 GMT Server: - - Apache/2.2.15 (Red Hat) + - Apache/2.4.6 (CentOS) Location: - "1" - Vary: - - Accept-Encoding Content-Length: - - "252" + - "304" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"5433e7ae5ca0134a6f279419\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" + encoding: US-ASCII + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"last_unit_added\": null, \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"last_unit_removed\": null, \"content_unit_counts\": {}, \"_ns\": \"repos\", \"_id\": {\"$oid\": \"55c26b1611513843aeb570f8\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:30 GMT + recorded_at: Wed, 05 Aug 2015 19:59:18 GMT - request: method: delete - uri: https://localhost/pulp/api/v2/repositories/1/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/ body: encoding: US-ASCII string: "" @@ -59,7 +98,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="4KKwfstPDZfA5k6S9xqwqv5OBPtsIVfTFL1BbnQr4", oauth_signature="08a0XJHTXS5wjZf3nyEjd9UDOX0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687790", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="khTMBH7h43vNq1scBAxYbhePHG3hZN8P3iVPxzw8LjA", oauth_signature="lVEq%2FRJyio7Frao7QJC%2FVBUz6cg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804759", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -70,9 +109,9 @@ http_interactions: message: Accepted headers: Date: - - Tue, 07 Oct 2014 13:16:30 GMT + - Wed, 05 Aug 2015 19:59:19 GMT Server: - - Apache/2.2.15 (Red Hat) + - Apache/2.4.6 (CentOS) Content-Encoding: - utf-8 Content-Length: @@ -83,12 +122,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/709d1eef-da78-49b0-aa52-f32116d9a4fe/\", \"task_id\": \"709d1eef-da78-49b0-aa52-f32116d9a4fe\"}], \"result\": null, \"error\": null}" + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/34130d07-b7ed-47eb-a3c9-5716de95d258/\", \"task_id\": \"34130d07-b7ed-47eb-a3c9-5716de95d258\"}], \"result\": null, \"error\": null}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:31 GMT + recorded_at: Wed, 05 Aug 2015 19:59:19 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/709d1eef-da78-49b0-aa52-f32116d9a4fe/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/34130d07-b7ed-47eb-a3c9-5716de95d258/ body: encoding: US-ASCII string: "" @@ -100,7 +139,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="HkB4DmJrPqhM9HFOoK2alZxvnbzqo3LVHDiSv0qgVc", oauth_signature="xWivB1IIry3vQFodCYY4wdDnPCQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687791", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="CiKdkURiKS0rZKo0QgBOKCkufZ4tSMsdhpMVS31g", oauth_signature="IsJG02wSGgsHBHBjTXKnbiqxQJA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804759", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -111,20 +150,57 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:31 GMT + - Wed, 05 Aug 2015 19:59:19 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "603" + - "519" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/709d1eef-da78-49b0-aa52-f32116d9a4fe/\", \"task_id\": \"709d1eef-da78-49b0-aa52-f32116d9a4fe\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2014-10-07T13:16:31Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:31Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7af33a7d3a2e73bef51\"}, \"id\": \"5433e7af5ca0134a6f27941f\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/34130d07-b7ed-47eb-a3c9-5716de95d258/\", \"task_id\": \"34130d07-b7ed-47eb-a3c9-5716de95d258\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b177164df9aa32ab319\"}, \"id\": \"55c26b1711513843aeb570fe\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:31 GMT + recorded_at: Wed, 05 Aug 2015 19:59:19 GMT +- request: + method: get + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/34130d07-b7ed-47eb-a3c9-5716de95d258/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="w1VKnW0Xp3fHRzZgF8qUBqHKeV2cUN5MjE3x8D2OsQ", oauth_signature="PX2YY2nr%2BeRFnF148ZX0iByvIAA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804759", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Wed, 05 Aug 2015 19:59:19 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "678" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/34130d07-b7ed-47eb-a3c9-5716de95d258/\", \"task_id\": \"34130d07-b7ed-47eb-a3c9-5716de95d258\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-08-05T19:59:19Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:19Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b177164df9aa32ab319\"}, \"id\": \"55c26b171151384439db7156\"}" + http_version: + recorded_at: Wed, 05 Aug 2015 19:59:19 GMT recorded_with: VCR 2.9.3 diff --git a/test/fixtures/vcr_cassettes/pulp/repository/contents.yml b/test/fixtures/vcr_cassettes/pulp/repository/contents.yml index 6562f88ea10..c2ddb28cefe 100644 --- a/test/fixtures/vcr_cassettes/pulp/repository/contents.yml +++ b/test/fixtures/vcr_cassettes/pulp/repository/contents.yml @@ -1,11 +1,11 @@ --- http_interactions: - request: - method: post - uri: https://localhost/pulp/api/v2/repositories/ + method: get + uri: https://localhost/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/ body: encoding: US-ASCII - string: "{\"id\":\"1\",\"display_name\":\"Fedora 17 x86_64\",\"importer_type_id\":\"yum_importer\",\"importer_config\":{\"feed\":\"file:///var/www/test_repos/zoo\",\"ssl_ca_cert\":null,\"ssl_client_cert\":null,\"ssl_client_key\":null},\"notes\":{\"_repo-type\":\"rpm-repo\"},\"distributors\":[{\"distributor_type_id\":\"yum_distributor\",\"distributor_config\":{\"relative_url\":\"/test_path/\",\"http\":false,\"https\":true,\"protected\":true,\"checksum_type\":null},\"auto_publish\":true,\"distributor_id\":\"1\"},{\"distributor_type_id\":\"yum_clone_distributor\",\"distributor_config\":{\"destination_distributor_id\":\"1\"},\"auto_publish\":false,\"distributor_id\":\"1_clone\"},{\"distributor_type_id\":\"nodes_http_distributor\",\"distributor_config\":{},\"auto_publish\":true,\"distributor_id\":\"1_nodes\"}]}" + string: "" headers: Accept: - application/json @@ -14,43 +14,39 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="3PEC33Lq7CvFLqEqAJ8JJseYuBnbAmTovlzd4I", oauth_signature="mIT8jTxcx7bh5%2F0TXxoR3udw3sk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687792", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="t8qGKR2hNTF9ddqRWNJ2KpSwcM06s6AB8BAqscnmU", oauth_signature="0ck7LPR6m3tQU1QmekGTv58ixd4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687792", oauth_version="1.0" Pulp-User: - admin - Content-Length: - - "724" User-Agent: - Ruby response: status: - code: 201 - message: Created + code: 200 + message: OK headers: Date: - Tue, 07 Oct 2014 13:16:32 GMT Server: - Apache/2.2.15 (Red Hat) - Location: - - "1" Vary: - Accept-Encoding Content-Length: - - "252" + - "1021" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"5433e7b05ca0134a6f279421\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/\", \"task_id\": \"96da0f16-4ba1-49d4-b38e-5fe435e0afac\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:32Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"IN_PROGRESS\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"running\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7b033a7d3a2e73bef52\"}, \"id\": \"5433e7b05ca0134a6f279427\"}" http_version: recorded_at: Tue, 07 Oct 2014 13:16:32 GMT - request: - method: post - uri: https://localhost/pulp/api/v2/repositories/1/actions/sync/ + method: get + uri: https://localhost/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/ body: encoding: US-ASCII - string: "{\"override_config\":{\"num_threads\":4}}" + string: "" headers: Accept: - application/json @@ -59,35 +55,33 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="4YDIG45VAaR0TWJqjhXWfCkYs9aFV00gkimFUTz0U", oauth_signature="CQ%2FW9fxbCWHQ%2B1lIRZUinEYqNZ8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687792", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="I0ck9fBAxZFXMYU5qsnkebTpiYy1deoG6V8VgD1rk8", oauth_signature="5E2jSNLuMcQl7Qxh3jmRd0B1RD8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687793", oauth_version="1.0" Pulp-User: - admin - Content-Length: - - "37" User-Agent: - Ruby response: status: - code: 202 - message: Accepted + code: 200 + message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:32 GMT + - Tue, 07 Oct 2014 13:16:33 GMT Server: - Apache/2.2.15 (Red Hat) - Content-Encoding: - - utf-8 + Vary: + - Accept-Encoding Content-Length: - - "172" + - "1009" Connection: - close Content-Type: - application/json body: - encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/\", \"task_id\": \"96da0f16-4ba1-49d4-b38e-5fe435e0afac\"}], \"result\": null, \"error\": null}" + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/\", \"task_id\": \"96da0f16-4ba1-49d4-b38e-5fe435e0afac\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:33Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"running\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7b033a7d3a2e73bef52\"}, \"id\": \"5433e7b05ca0134a6f279427\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:32 GMT + recorded_at: Tue, 07 Oct 2014 13:16:33 GMT - request: method: get uri: https://localhost/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/ @@ -102,7 +96,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="t8qGKR2hNTF9ddqRWNJ2KpSwcM06s6AB8BAqscnmU", oauth_signature="0ck7LPR6m3tQU1QmekGTv58ixd4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687792", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="ZurWWEPpK0n0LrqN6MFtGBX3XBVnLzDAoQbv8l3894", oauth_signature="3fgf2P6he9xOWioex34jzL93MDw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687794", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -113,22 +107,22 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:32 GMT + - Tue, 07 Oct 2014 13:16:34 GMT Server: - Apache/2.2.15 (Red Hat) Vary: - Accept-Encoding Content-Length: - - "1021" + - "1009" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/\", \"task_id\": \"96da0f16-4ba1-49d4-b38e-5fe435e0afac\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:32Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"IN_PROGRESS\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"running\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7b033a7d3a2e73bef52\"}, \"id\": \"5433e7b05ca0134a6f279427\"}" + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/\", \"task_id\": \"96da0f16-4ba1-49d4-b38e-5fe435e0afac\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:33Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"running\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7b033a7d3a2e73bef52\"}, \"id\": \"5433e7b05ca0134a6f279427\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:32 GMT + recorded_at: Tue, 07 Oct 2014 13:16:34 GMT - request: method: get uri: https://localhost/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/ @@ -143,7 +137,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="I0ck9fBAxZFXMYU5qsnkebTpiYy1deoG6V8VgD1rk8", oauth_signature="5E2jSNLuMcQl7Qxh3jmRd0B1RD8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687793", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="UlRRVBxWwaV0AVqpft8fvuGUB6Nsyi1tvOA58zLEKYw", oauth_signature="t558I7V4%2F6kOQCnOhHp9tNBXQ4k%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687795", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -154,28 +148,28 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:33 GMT + - Tue, 07 Oct 2014 13:16:35 GMT Server: - Apache/2.2.15 (Red Hat) Vary: - Accept-Encoding Content-Length: - - "1009" + - "2228" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/\", \"task_id\": \"96da0f16-4ba1-49d4-b38e-5fe435e0afac\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:33Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"running\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7b033a7d3a2e73bef52\"}, \"id\": \"5433e7b05ca0134a6f279427\"}" + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/\", \"task_id\": \"96da0f16-4ba1-49d4-b38e-5fe435e0afac\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:16:34Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:33Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/82317804-bbf7-4b95-94ad-ce6f8c9ddf83/\", \"task_id\": \"82317804-bbf7-4b95-94ad-ce6f8c9ddf83\"}, {\"_href\": \"/pulp/api/v2/tasks/ad4132ba-5b47-4462-955a-2ddc767405d7/\", \"task_id\": \"ad4132ba-5b47-4462-955a-2ddc767405d7\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:16:32-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:16:33-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e7b15ca013067bd775a9\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e7b033a7d3a2e73bef52\"}, \"id\": \"5433e7b05ca0134a6f279427\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:33 GMT + recorded_at: Tue, 07 Oct 2014 13:16:35 GMT - request: - method: get - uri: https://localhost/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/ + method: post + uri: https://localhost/pulp/api/v2/content/units/distribution/search/ body: encoding: US-ASCII - string: "" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"e26ab79e-e5be-41a4-973a-4e1cfe781272\"]}}},\"include_repos\":true}" headers: Accept: - application/json @@ -184,9 +178,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="ZurWWEPpK0n0LrqN6MFtGBX3XBVnLzDAoQbv8l3894", oauth_signature="3fgf2P6he9xOWioex34jzL93MDw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687794", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="PjouhC0XtgxP4nEbrebOi4uc7lHallRF9mhb205AGc", oauth_signature="ie4dONGDMecmihd8yqS6d%2FDdM6k%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687796", oauth_version="1.0" Pulp-User: - admin + Content-Length: + - "102" User-Agent: - Ruby response: @@ -195,28 +191,28 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:34 GMT + - Tue, 07 Oct 2014 13:16:36 GMT Server: - Apache/2.2.15 (Red Hat) Vary: - Accept-Encoding Content-Length: - - "1009" + - "2025" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/\", \"task_id\": \"96da0f16-4ba1-49d4-b38e-5fe435e0afac\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:33Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"running\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7b033a7d3a2e73bef52\"}, \"id\": \"5433e7b05ca0134a6f279427\"}" + string: "[{\"files\": [{\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"test2.img\", \"downloadurl\": \"file:///var/www/test_repos/zoo/images/test2.img\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmpSXxQNP/tmpwxBbXI/images/test2.img\", \"relativepath\": \"images/test2.img\", \"filename\": \"test2.img\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/images\", \"size\": null}, {\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"empty.iso\", \"downloadurl\": \"file:///var/www/test_repos/zoo/empty.iso\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmpSXxQNP/tmpwxBbXI/empty.iso\", \"relativepath\": \"empty.iso\", \"filename\": \"empty.iso\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/\", \"size\": null}, {\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"test1.img\", \"downloadurl\": \"file:///var/www/test_repos/zoo/images/test1.img\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmpSXxQNP/tmpwxBbXI/images/test1.img\", \"relativepath\": \"images/test1.img\", \"filename\": \"test1.img\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/images\", \"size\": null}], \"_storage_path\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64\", \"_href\": \"/pulp/api/v2/content/units/distribution/e26ab79e-e5be-41a4-973a-4e1cfe781272/\", \"family\": \"Test Family\", \"_last_updated\": \"2014-10-07T13:16:33Z\", \"packagedir\": \"\", \"variant\": \"TestVariant\", \"repository_memberships\": [\"1\"], \"children\": {}, \"version\": \"16\", \"version_sort_index\": \"02-16\", \"_content_type_id\": \"distribution\", \"_id\": \"e26ab79e-e5be-41a4-973a-4e1cfe781272\", \"arch\": \"x86_64\", \"id\": \"ks-Test Family-TestVariant-16-x86_64\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:34 GMT + recorded_at: Tue, 07 Oct 2014 13:16:36 GMT - request: - method: get - uri: https://localhost/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/ + method: post + uri: https://localhost/pulp/api/v2/content/units/erratum/search/ body: encoding: US-ASCII - string: "" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"c9263100-a07f-47c5-93b6-bc4b61df0d07\",\"c1d19db2-9317-4851-97e6-e406341867ed\",\"5c627ea3-7555-45a1-bb90-61daf932d4b4\"]}}},\"include_repos\":true}" headers: Accept: - application/json @@ -225,9 +221,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="UlRRVBxWwaV0AVqpft8fvuGUB6Nsyi1tvOA58zLEKYw", oauth_signature="t558I7V4%2F6kOQCnOhHp9tNBXQ4k%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687795", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="crhT7BjznRuBq6UvC9yiCIdogqJGpRmW1GJPOuWcGA", oauth_signature="Z6V1kJySxL2n4KMMBbgbLrWOjsc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687796", oauth_version="1.0" Pulp-User: - admin + Content-Length: + - "180" User-Agent: - Ruby response: @@ -236,28 +234,28 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:35 GMT + - Tue, 07 Oct 2014 13:16:36 GMT Server: - Apache/2.2.15 (Red Hat) Vary: - Accept-Encoding Content-Length: - - "2228" + - "4701" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/\", \"task_id\": \"96da0f16-4ba1-49d4-b38e-5fe435e0afac\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:16:34Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:33Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/82317804-bbf7-4b95-94ad-ce6f8c9ddf83/\", \"task_id\": \"82317804-bbf7-4b95-94ad-ce6f8c9ddf83\"}, {\"_href\": \"/pulp/api/v2/tasks/ad4132ba-5b47-4462-955a-2ddc767405d7/\", \"task_id\": \"ad4132ba-5b47-4462-955a-2ddc767405d7\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:16:32-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:16:33-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e7b15ca013067bd775a9\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e7b033a7d3a2e73bef52\"}, \"id\": \"5433e7b05ca0134a6f279427\"}" + string: "[{\"repository_memberships\": [\"1\", \"Default_Organization-el6-el6_2\"], \"_href\": \"/pulp/api/v2/content/units/erratum/5c627ea3-7555-45a1-bb90-61daf932d4b4/\", \"issued\": \"2010-11-10 00:00:00\", \"references\": [{\"href\": \"https://rhn.redhat.com/errata/RHSA-2010-0858.html\", \"type\": \"self\", \"id\": null, \"title\": null}, {\"href\": \"https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=627882\", \"type\": \"bugzilla\", \"id\": \"627882\", \"title\": null}, {\"href\": \"https://www.redhat.com/security/data/cve/CVE-2010-0405.html\", \"type\": \"cve\", \"id\": \"CVE-2010-0405\", \"title\": null}, {\"href\": \"http://www.redhat.com/security/updates/classification/#important\", \"type\": \"other\", \"id\": null, \"title\": null}], \"_content_type_id\": \"erratum\", \"id\": \"RHSA-2010:0858\", \"from\": \"security@redhat.com\", \"severity\": \"Important\", \"title\": \"Important: bzip2 security update\", \"children\": {}, \"version\": \"3\", \"reboot_suggested\": false, \"type\": \"security\", \"pkglist\": [{\"packages\": [{\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-devel\", \"sum\": [\"sha256\", \"ea67c664da1ff96a6dc94d33009b73d8fab31b59824183fb45e9ba2ebf82d583\"], \"filename\": \"bzip2-devel-1.0.5-7.el6_0.i686.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"i686\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-libs\", \"sum\": [\"sha256\", \"c9f064a6862573fb9f2a6aff7c3621f1940b492df2edfc2ebbdc0b8305f51147\"], \"filename\": \"bzip2-libs-1.0.5-7.el6_0.i686.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"i686\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2\", \"sum\": [\"sha256\", \"b8a3f72bc2b0d89ba737099ac98bf8d2af4bea02d31884c02db97f7f66c3d5c2\"], \"filename\": \"bzip2-1.0.5-7.el6_0.x86_64.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"x86_64\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-devel\", \"sum\": [\"sha256\", \"7f63124e4655b7c92d23ec4c38226f5d3746568853dff750fc85e058e74b5cf6\"], \"filename\": \"bzip2-devel-1.0.5-7.el6_0.x86_64.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"x86_64\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-libs\", \"sum\": [\"sha256\", \"802f4399dbdd01476e254c3b32c40aff59cf5d23a45fa488c6917ce8904d6b4d\"], \"filename\": \"bzip2-libs-1.0.5-7.el6_0.x86_64.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"x86_64\"}], \"name\": \"Red Hat Enterprise Linux Server (v. 6 for 64-bit x86_64)\", \"short\": \"rhel-x86_64-server-6\"}], \"status\": \"final\", \"updated\": \"2010-11-10 00:00:00\", \"description\": \"bzip2 is a freely available, high-quality data compressor. It provides both\\nlibbz2 library must be restarted for the update to take effect.\", \"_last_updated\": \"2014-10-07T13:16:33Z\", \"pushcount\": \"\", \"_storage_path\": null, \"rights\": \"Copyright 2010 Red Hat Inc\", \"solution\": \"Before applying this update, make sure all previously-released errata\\nrelevant to your system have been applied.\\n\\nThis update is available via the Red Hat Network. Details on how to\\nuse the Red Hat Network to apply this update are available at\\nhttp://kbase.redhat.com/faq/docs/DOC-11259\", \"summary\": \"Updated bzip2 packages that fix one security issue\", \"release\": \"\", \"_id\": \"5c627ea3-7555-45a1-bb90-61daf932d4b4\"}, {\"repository_memberships\": [\"1\"], \"_href\": \"/pulp/api/v2/content/units/erratum/c1d19db2-9317-4851-97e6-e406341867ed/\", \"issued\": \"2010-01-01 01:01:01\", \"references\": [], \"_content_type_id\": \"erratum\", \"id\": \"RHEA-2010:0002\", \"from\": \"lzap+pub@redhat.com\", \"severity\": \"\", \"title\": \"One package errata\", \"children\": {}, \"version\": \"1\", \"reboot_suggested\": false, \"type\": \"security\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"status\": \"stable\", \"updated\": \"\", \"description\": \"One package errata\", \"_last_updated\": \"2014-10-07T13:16:33Z\", \"pushcount\": \"\", \"_storage_path\": null, \"rights\": \"\", \"solution\": \"\", \"summary\": \"\", \"release\": \"1\", \"_id\": \"c1d19db2-9317-4851-97e6-e406341867ed\"}, {\"repository_memberships\": [\"1\"], \"_href\": \"/pulp/api/v2/content/units/erratum/c9263100-a07f-47c5-93b6-bc4b61df0d07/\", \"issued\": \"2010-01-01 01:01:01\", \"references\": [], \"_content_type_id\": \"erratum\", \"id\": \"RHEA-2010:0001\", \"from\": \"lzap+pub@redhat.com\", \"severity\": \"\", \"title\": \"Empty errata\", \"children\": {}, \"version\": \"1\", \"reboot_suggested\": false, \"type\": \"security\", \"pkglist\": [], \"status\": \"stable\", \"updated\": \"\", \"description\": \"Empty errata\", \"_last_updated\": \"2014-10-07T13:16:33Z\", \"pushcount\": \"\", \"_storage_path\": null, \"rights\": \"\", \"solution\": \"\", \"summary\": \"\", \"release\": \"1\", \"_id\": \"c9263100-a07f-47c5-93b6-bc4b61df0d07\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:35 GMT + recorded_at: Tue, 07 Oct 2014 13:16:36 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/1/search/units/ + uri: https://localhost/pulp/api/v2/content/units/rpm/search/ body: encoding: US-ASCII - string: "{\"criteria\":{\"type_ids\":[\"distribution\"]}}" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"a8ffed2b-9bfc-4b4f-a95f-4d896a362632\",\"1516246f-3d84-43f5-8899-433c810fc56e\",\"bb871147-3fbd-414a-8668-86a8e6d11806\",\"496dff85-d163-40ca-9666-31ef4af11b03\",\"6dbc631f-4990-44d6-8848-53d84910f954\",\"a140f324-2eca-476d-9212-4f75856b995c\",\"ac0f92f9-ee29-4ea3-9b77-82db5ca8786d\",\"5d832c81-88e6-463c-9011-9405b1760b5f\"]}},\"fields\":[\"name\",\"version\",\"release\",\"arch\",\"suffix\",\"epoch\",\"download_url\",\"checksum\",\"checksumtype\",\"license\",\"group\",\"children\",\"vendor\",\"filename\",\"relativepath\",\"description\",\"size\",\"buildhost\",\"_id\",\"_content_type_id\",\"_href\",\"_storage_path\",\"_type\",\"_last_updated\"]},\"include_repos\":true}" headers: Accept: - application/json @@ -266,11 +264,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="J1whiNqVnB2F6WYr9f9n3g4VUHwRApSOSytgV1r54Oo", oauth_signature="fapq1GDxbMI0OA0rWXCnGhpqw4M%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687795", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="IweRtAcqaUzOQ3bilumsJDclRZ6BTbFf5gteAdno", oauth_signature="HCcrjr7DQ%2F0sS64lobXwHiME1XI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687796", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "42" + - "648" User-Agent: - Ruby response: @@ -279,28 +277,28 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:35 GMT + - Tue, 07 Oct 2014 13:16:36 GMT Server: - Apache/2.2.15 (Red Hat) Vary: - Accept-Encoding Content-Length: - - "2248" + - "6914" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: "[{\"updated\": \"2014-10-07T13:16:33Z\", \"repo_id\": \"1\", \"created\": \"2014-10-07T13:16:33Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"e26ab79e-e5be-41a4-973a-4e1cfe781272\", \"metadata\": {\"files\": [{\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"test2.img\", \"downloadurl\": \"file:///var/www/test_repos/zoo/images/test2.img\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmpSXxQNP/tmpwxBbXI/images/test2.img\", \"relativepath\": \"images/test2.img\", \"filename\": \"test2.img\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/images\", \"size\": null}, {\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"empty.iso\", \"downloadurl\": \"file:///var/www/test_repos/zoo/empty.iso\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmpSXxQNP/tmpwxBbXI/empty.iso\", \"relativepath\": \"empty.iso\", \"filename\": \"empty.iso\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/\", \"size\": null}, {\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"test1.img\", \"downloadurl\": \"file:///var/www/test_repos/zoo/images/test1.img\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmpSXxQNP/tmpwxBbXI/images/test1.img\", \"relativepath\": \"images/test1.img\", \"filename\": \"test1.img\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/images\", \"size\": null}], \"_storage_path\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64\", \"family\": \"Test Family\", \"_ns\": \"units_distribution\", \"_last_updated\": 1412687793, \"packagedir\": \"\", \"variant\": \"TestVariant\", \"version\": \"16\", \"version_sort_index\": \"02-16\", \"_content_type_id\": \"distribution\", \"_id\": \"e26ab79e-e5be-41a4-973a-4e1cfe781272\", \"arch\": \"x86_64\", \"id\": \"ks-Test Family-TestVariant-16-x86_64\"}, \"unit_type_id\": \"distribution\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5433e7b15ca013067bd775a1\"}, \"id\": \"5433e7b15ca013067bd775a1\", \"owner_id\": \"yum_importer\"}]" + string: "[{\"_href\": \"/pulp/api/v2/content/units/rpm/1516246f-3d84-43f5-8899-433c810fc56e/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2244, \"group\": \"Internet/Applications\", \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of elephant\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"elephant\", \"_storage_path\": \"/var/lib/pulp/content/rpm/elephant/0.3/0.8/noarch/3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3/elephant-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"relativepath\": \"elephant-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"1516246f-3d84-43f5-8899-433c810fc56e\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/496dff85-d163-40ca-9666-31ef4af11b03/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2212, \"group\": \"Internet/Applications\", \"filename\": \"lion-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of lion\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"lion\", \"_storage_path\": \"/var/lib/pulp/content/rpm/lion/0.3/0.8/noarch/12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4/lion-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"relativepath\": \"lion-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"496dff85-d163-40ca-9666-31ef4af11b03\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/5d832c81-88e6-463c-9011-9405b1760b5f/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2236, \"group\": \"Internet/Applications\", \"filename\": \"walrus-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of walrus\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"walrus\", \"_storage_path\": \"/var/lib/pulp/content/rpm/walrus/0.3/0.8/noarch/6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd/walrus-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"relativepath\": \"walrus-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"5d832c81-88e6-463c-9011-9405b1760b5f\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/6dbc631f-4990-44d6-8848-53d84910f954/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2232, \"group\": \"Internet/Applications\", \"filename\": \"monkey-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of monkey\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"monkey\", \"_storage_path\": \"/var/lib/pulp/content/rpm/monkey/0.3/0.8/noarch/0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1/monkey-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"relativepath\": \"monkey-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"6dbc631f-4990-44d6-8848-53d84910f954\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/a140f324-2eca-476d-9212-4f75856b995c/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2232, \"group\": \"Internet/Applications\", \"filename\": \"penguin-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\", \"Default_Organization-el5_product-5Server\"], \"vendor\": null, \"description\": \"A dummy package of penguin\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"penguin\", \"_storage_path\": \"/var/lib/pulp/content/rpm/penguin/0.3/0.8/noarch/3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694/penguin-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"relativepath\": \"penguin-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"a140f324-2eca-476d-9212-4f75856b995c\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/a8ffed2b-9bfc-4b4f-a95f-4d896a362632/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2232, \"group\": \"Internet/Applications\", \"filename\": \"cheetah-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of cheetah\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"cheetah\", \"_storage_path\": \"/var/lib/pulp/content/rpm/cheetah/0.3/0.8/noarch/422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae/cheetah-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"relativepath\": \"cheetah-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"a8ffed2b-9bfc-4b4f-a95f-4d896a362632\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/ac0f92f9-ee29-4ea3-9b77-82db5ca8786d/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2248, \"group\": \"Internet/Applications\", \"filename\": \"squirrel-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of squirrel\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"squirrel\", \"_storage_path\": \"/var/lib/pulp/content/rpm/squirrel/0.3/0.8/noarch/251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2/squirrel-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"relativepath\": \"squirrel-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"ac0f92f9-ee29-4ea3-9b77-82db5ca8786d\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/bb871147-3fbd-414a-8668-86a8e6d11806/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2236, \"group\": \"Internet/Applications\", \"filename\": \"giraffe-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of giraffe\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"giraffe\", \"_storage_path\": \"/var/lib/pulp/content/rpm/giraffe/0.3/0.8/noarch/f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14/giraffe-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"relativepath\": \"giraffe-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"bb871147-3fbd-414a-8668-86a8e6d11806\"}]" http_version: recorded_at: Tue, 07 Oct 2014 13:16:36 GMT - request: method: post - uri: https://localhost/pulp/api/v2/content/units/distribution/search/ + uri: https://localhost/pulp/api/v2/content/units/erratum/search/ body: encoding: US-ASCII - string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"e26ab79e-e5be-41a4-973a-4e1cfe781272\"]}}},\"include_repos\":true}" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"c9263100-a07f-47c5-93b6-bc4b61df0d07\",\"c1d19db2-9317-4851-97e6-e406341867ed\",\"5c627ea3-7555-45a1-bb90-61daf932d4b4\"]}}},\"include_repos\":true}" headers: Accept: - application/json @@ -309,11 +307,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="PjouhC0XtgxP4nEbrebOi4uc7lHallRF9mhb205AGc", oauth_signature="ie4dONGDMecmihd8yqS6d%2FDdM6k%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687796", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="0r3A3474U342rxj3YscxpGpEISNmKj2Q145pwUUXm0", oauth_signature="yTdIvnqPFgy%2FHz3XeZ%2BsAW6r%2FcY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687797", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "102" + - "180" User-Agent: - Ruby response: @@ -322,28 +320,69 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:36 GMT + - Tue, 07 Oct 2014 13:16:37 GMT Server: - Apache/2.2.15 (Red Hat) Vary: - Accept-Encoding Content-Length: - - "2025" + - "4701" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: "[{\"files\": [{\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"test2.img\", \"downloadurl\": \"file:///var/www/test_repos/zoo/images/test2.img\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmpSXxQNP/tmpwxBbXI/images/test2.img\", \"relativepath\": \"images/test2.img\", \"filename\": \"test2.img\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/images\", \"size\": null}, {\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"empty.iso\", \"downloadurl\": \"file:///var/www/test_repos/zoo/empty.iso\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmpSXxQNP/tmpwxBbXI/empty.iso\", \"relativepath\": \"empty.iso\", \"filename\": \"empty.iso\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/\", \"size\": null}, {\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"test1.img\", \"downloadurl\": \"file:///var/www/test_repos/zoo/images/test1.img\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmpSXxQNP/tmpwxBbXI/images/test1.img\", \"relativepath\": \"images/test1.img\", \"filename\": \"test1.img\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/images\", \"size\": null}], \"_storage_path\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64\", \"_href\": \"/pulp/api/v2/content/units/distribution/e26ab79e-e5be-41a4-973a-4e1cfe781272/\", \"family\": \"Test Family\", \"_last_updated\": \"2014-10-07T13:16:33Z\", \"packagedir\": \"\", \"variant\": \"TestVariant\", \"repository_memberships\": [\"1\"], \"children\": {}, \"version\": \"16\", \"version_sort_index\": \"02-16\", \"_content_type_id\": \"distribution\", \"_id\": \"e26ab79e-e5be-41a4-973a-4e1cfe781272\", \"arch\": \"x86_64\", \"id\": \"ks-Test Family-TestVariant-16-x86_64\"}]" + string: "[{\"repository_memberships\": [\"1\", \"Default_Organization-el6-el6_2\"], \"_href\": \"/pulp/api/v2/content/units/erratum/5c627ea3-7555-45a1-bb90-61daf932d4b4/\", \"issued\": \"2010-11-10 00:00:00\", \"references\": [{\"href\": \"https://rhn.redhat.com/errata/RHSA-2010-0858.html\", \"type\": \"self\", \"id\": null, \"title\": null}, {\"href\": \"https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=627882\", \"type\": \"bugzilla\", \"id\": \"627882\", \"title\": null}, {\"href\": \"https://www.redhat.com/security/data/cve/CVE-2010-0405.html\", \"type\": \"cve\", \"id\": \"CVE-2010-0405\", \"title\": null}, {\"href\": \"http://www.redhat.com/security/updates/classification/#important\", \"type\": \"other\", \"id\": null, \"title\": null}], \"_content_type_id\": \"erratum\", \"id\": \"RHSA-2010:0858\", \"from\": \"security@redhat.com\", \"severity\": \"Important\", \"title\": \"Important: bzip2 security update\", \"children\": {}, \"version\": \"3\", \"reboot_suggested\": false, \"type\": \"security\", \"pkglist\": [{\"packages\": [{\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-devel\", \"sum\": [\"sha256\", \"ea67c664da1ff96a6dc94d33009b73d8fab31b59824183fb45e9ba2ebf82d583\"], \"filename\": \"bzip2-devel-1.0.5-7.el6_0.i686.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"i686\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-libs\", \"sum\": [\"sha256\", \"c9f064a6862573fb9f2a6aff7c3621f1940b492df2edfc2ebbdc0b8305f51147\"], \"filename\": \"bzip2-libs-1.0.5-7.el6_0.i686.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"i686\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2\", \"sum\": [\"sha256\", \"b8a3f72bc2b0d89ba737099ac98bf8d2af4bea02d31884c02db97f7f66c3d5c2\"], \"filename\": \"bzip2-1.0.5-7.el6_0.x86_64.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"x86_64\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-devel\", \"sum\": [\"sha256\", \"7f63124e4655b7c92d23ec4c38226f5d3746568853dff750fc85e058e74b5cf6\"], \"filename\": \"bzip2-devel-1.0.5-7.el6_0.x86_64.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"x86_64\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-libs\", \"sum\": [\"sha256\", \"802f4399dbdd01476e254c3b32c40aff59cf5d23a45fa488c6917ce8904d6b4d\"], \"filename\": \"bzip2-libs-1.0.5-7.el6_0.x86_64.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"x86_64\"}], \"name\": \"Red Hat Enterprise Linux Server (v. 6 for 64-bit x86_64)\", \"short\": \"rhel-x86_64-server-6\"}], \"status\": \"final\", \"updated\": \"2010-11-10 00:00:00\", \"description\": \"bzip2 is a freely available, high-quality data compressor. It provides both\\nlibbz2 library must be restarted for the update to take effect.\", \"_last_updated\": \"2014-10-07T13:16:33Z\", \"pushcount\": \"\", \"_storage_path\": null, \"rights\": \"Copyright 2010 Red Hat Inc\", \"solution\": \"Before applying this update, make sure all previously-released errata\\nrelevant to your system have been applied.\\n\\nThis update is available via the Red Hat Network. Details on how to\\nuse the Red Hat Network to apply this update are available at\\nhttp://kbase.redhat.com/faq/docs/DOC-11259\", \"summary\": \"Updated bzip2 packages that fix one security issue\", \"release\": \"\", \"_id\": \"5c627ea3-7555-45a1-bb90-61daf932d4b4\"}, {\"repository_memberships\": [\"1\"], \"_href\": \"/pulp/api/v2/content/units/erratum/c1d19db2-9317-4851-97e6-e406341867ed/\", \"issued\": \"2010-01-01 01:01:01\", \"references\": [], \"_content_type_id\": \"erratum\", \"id\": \"RHEA-2010:0002\", \"from\": \"lzap+pub@redhat.com\", \"severity\": \"\", \"title\": \"One package errata\", \"children\": {}, \"version\": \"1\", \"reboot_suggested\": false, \"type\": \"security\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"status\": \"stable\", \"updated\": \"\", \"description\": \"One package errata\", \"_last_updated\": \"2014-10-07T13:16:33Z\", \"pushcount\": \"\", \"_storage_path\": null, \"rights\": \"\", \"solution\": \"\", \"summary\": \"\", \"release\": \"1\", \"_id\": \"c1d19db2-9317-4851-97e6-e406341867ed\"}, {\"repository_memberships\": [\"1\"], \"_href\": \"/pulp/api/v2/content/units/erratum/c9263100-a07f-47c5-93b6-bc4b61df0d07/\", \"issued\": \"2010-01-01 01:01:01\", \"references\": [], \"_content_type_id\": \"erratum\", \"id\": \"RHEA-2010:0001\", \"from\": \"lzap+pub@redhat.com\", \"severity\": \"\", \"title\": \"Empty errata\", \"children\": {}, \"version\": \"1\", \"reboot_suggested\": false, \"type\": \"security\", \"pkglist\": [], \"status\": \"stable\", \"updated\": \"\", \"description\": \"Empty errata\", \"_last_updated\": \"2014-10-07T13:16:33Z\", \"pushcount\": \"\", \"_storage_path\": null, \"rights\": \"\", \"solution\": \"\", \"summary\": \"\", \"release\": \"1\", \"_id\": \"c9263100-a07f-47c5-93b6-bc4b61df0d07\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:36 GMT + recorded_at: Tue, 07 Oct 2014 13:16:37 GMT +- request: + method: get + uri: https://localhost/pulp/api/v2/repositories/1/?details=true + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="wBrnyWY196M0W9ZGlK3nEfYbS4Zzha18zcPWVtK2Z30", oauth_signature="IoyaJK4YbKWt1kSPQDt4f%2FkEqn4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687797", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:16:37 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "1556" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"scratchpad\": {\"checksum_type\": \"sha256\"}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"distributors\": [{\"repo_id\": \"1\", \"_ns\": \"repo_distributors\", \"last_publish\": \"2014-10-07T09:16:34-04:00\", \"auto_publish\": true, \"scheduled_publishes\": [], \"distributor_type_id\": \"nodes_http_distributor\", \"_id\": {\"$oid\": \"5433e7b05ca0134a6f279425\"}, \"config\": {}, \"id\": \"1_nodes\"}, {\"repo_id\": \"1\", \"_ns\": \"repo_distributors\", \"last_publish\": null, \"auto_publish\": false, \"scheduled_publishes\": [], \"distributor_type_id\": \"yum_clone_distributor\", \"_id\": {\"$oid\": \"5433e7b05ca0134a6f279424\"}, \"config\": {\"destination_distributor_id\": \"1\"}, \"id\": \"1_clone\"}, {\"repo_id\": \"1\", \"_ns\": \"repo_distributors\", \"last_publish\": \"2014-10-07T09:16:34-04:00\", \"auto_publish\": true, \"scheduled_publishes\": [], \"distributor_type_id\": \"yum_distributor\", \"_id\": {\"$oid\": \"5433e7b05ca0134a6f279423\"}, \"config\": {\"checksum_type\": \"sha256\", \"protected\": true, \"http\": false, \"https\": true, \"relative_url\": \"/test_path/\"}, \"id\": \"1\"}], \"_ns\": \"repos\", \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"content_unit_counts\": {\"package_group\": 2, \"distribution\": 1, \"package_category\": 1, \"rpm\": 8, \"erratum\": 3}, \"importers\": [{\"repo_id\": \"1\", \"_ns\": \"repo_importers\", \"importer_type_id\": \"yum_importer\", \"last_sync\": \"2014-10-07T09:16:33-04:00\", \"scheduled_syncs\": [], \"_id\": {\"$oid\": \"5433e7b05ca0134a6f279422\"}, \"config\": {\"feed\": \"file:///var/www/test_repos/zoo\"}, \"id\": \"yum_importer\"}], \"_id\": {\"$oid\": \"5433e7b05ca0134a6f279421\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" + http_version: + recorded_at: Tue, 07 Oct 2014 13:16:37 GMT - request: method: post uri: https://localhost/pulp/api/v2/repositories/1/search/units/ body: encoding: US-ASCII - string: "{\"criteria\":{\"type_ids\":[\"erratum\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]}}}" + string: "{\"criteria\":{\"type_ids\":[\"package_group\"]}}" headers: Accept: - application/json @@ -352,11 +391,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="AYQn9NsK0xXadgXYOzfJ0J309Eg5zl4gY3Md8f0cI", oauth_signature="pj9w2gFRpZDZzp7wT2SHhDoWIA8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687796", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="BgmQVsUqNw0ttbhtqC9L2qqRXo0TMGUGJQzOMTpWBc", oauth_signature="5jyEva%2FREl5Sbv09cK9jUPgKiSY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687797", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "84" + - "43" User-Agent: - Ruby response: @@ -365,28 +404,397 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:36 GMT + - Tue, 07 Oct 2014 13:16:37 GMT Server: - Apache/2.2.15 (Red Hat) Vary: - Accept-Encoding Content-Length: - - "651" + - "1760" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: "[{\"metadata\": {\"_id\": \"c9263100-a07f-47c5-93b6-bc4b61df0d07\", \"_content_type_id\": \"erratum\"}, \"_id\": {\"$oid\": \"5433e7b15ca013067bd775a3\"}, \"unit_id\": \"c9263100-a07f-47c5-93b6-bc4b61df0d07\", \"unit_type_id\": \"erratum\"}, {\"metadata\": {\"_id\": \"c1d19db2-9317-4851-97e6-e406341867ed\", \"_content_type_id\": \"erratum\"}, \"_id\": {\"$oid\": \"5433e7b15ca013067bd775a5\"}, \"unit_id\": \"c1d19db2-9317-4851-97e6-e406341867ed\", \"unit_type_id\": \"erratum\"}, {\"metadata\": {\"_id\": \"5c627ea3-7555-45a1-bb90-61daf932d4b4\", \"_content_type_id\": \"erratum\"}, \"_id\": {\"$oid\": \"5433e7b15ca013067bd775a4\"}, \"unit_id\": \"5c627ea3-7555-45a1-bb90-61daf932d4b4\", \"unit_type_id\": \"erratum\"}]" + string: "[{\"updated\": \"2014-10-07T13:16:33Z\", \"repo_id\": \"1\", \"created\": \"2014-10-07T13:16:33Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"99311aca-f9ad-4d3c-bc86-0db37d83e55d\", \"metadata\": {\"_storage_path\": null, \"mandatory_package_names\": [\"penguin\"], \"repo_id\": \"1\", \"translated_name\": {}, \"description\": null, \"user_visible\": true, \"default\": true, \"_ns\": \"units_package_group\", \"_last_updated\": 1412687793, \"optional_package_names\": [], \"id\": \"bird\", \"translated_description\": {}, \"conditional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"langonly\": null, \"_id\": \"99311aca-f9ad-4d3c-bc86-0db37d83e55d\", \"display_order\": 1024, \"name\": \"bird\"}, \"unit_type_id\": \"package_group\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5433e7b15ca013067bd775a6\"}, \"id\": \"5433e7b15ca013067bd775a6\", \"owner_id\": \"yum_importer\"}, {\"updated\": \"2014-10-07T13:16:33Z\", \"repo_id\": \"1\", \"created\": \"2014-10-07T13:16:33Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"531809c4-6b70-4c3f-80d8-4e3f13a4596e\", \"metadata\": {\"_storage_path\": null, \"mandatory_package_names\": [\"elephant,giraffe,cheetah,lion,monkey,penguin,squirrel,walrus\", \"penguin\"], \"repo_id\": \"1\", \"translated_name\": {}, \"description\": null, \"user_visible\": true, \"default\": true, \"_ns\": \"units_package_group\", \"_last_updated\": 1412687793, \"optional_package_names\": [], \"id\": \"mammal\", \"translated_description\": {}, \"conditional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"langonly\": null, \"_id\": \"531809c4-6b70-4c3f-80d8-4e3f13a4596e\", \"display_order\": 1024, \"name\": \"mammal\"}, \"unit_type_id\": \"package_group\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5433e7b15ca013067bd775a7\"}, \"id\": \"5433e7b15ca013067bd775a7\", \"owner_id\": \"yum_importer\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:36 GMT + recorded_at: Tue, 07 Oct 2014 13:16:37 GMT - request: method: post - uri: https://localhost/pulp/api/v2/content/units/erratum/search/ + uri: https://localhost/pulp/api/v2/content/units/rpm/search/ body: encoding: US-ASCII - string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"c9263100-a07f-47c5-93b6-bc4b61df0d07\",\"c1d19db2-9317-4851-97e6-e406341867ed\",\"5c627ea3-7555-45a1-bb90-61daf932d4b4\"]}}},\"include_repos\":true}" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"a8ffed2b-9bfc-4b4f-a95f-4d896a362632\",\"1516246f-3d84-43f5-8899-433c810fc56e\",\"bb871147-3fbd-414a-8668-86a8e6d11806\",\"496dff85-d163-40ca-9666-31ef4af11b03\",\"6dbc631f-4990-44d6-8848-53d84910f954\",\"a140f324-2eca-476d-9212-4f75856b995c\",\"ac0f92f9-ee29-4ea3-9b77-82db5ca8786d\",\"5d832c81-88e6-463c-9011-9405b1760b5f\"]}},\"fields\":[\"name\",\"version\",\"release\",\"arch\",\"suffix\",\"epoch\",\"download_url\",\"checksum\",\"checksumtype\",\"license\",\"group\",\"children\",\"vendor\",\"filename\",\"relativepath\",\"description\",\"size\",\"buildhost\",\"_id\",\"_content_type_id\",\"_href\",\"_storage_path\",\"_type\",\"_last_updated\"]},\"include_repos\":true}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="ywnSFr8y9dawKb0tBWgW1YaGCC1h4MRjQsiYBRJCdg", oauth_signature="fUJvEuhPs8TusCg5lJs%2FxcC5kOc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687797", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "648" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:16:37 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "6914" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "[{\"_href\": \"/pulp/api/v2/content/units/rpm/1516246f-3d84-43f5-8899-433c810fc56e/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2244, \"group\": \"Internet/Applications\", \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of elephant\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"elephant\", \"_storage_path\": \"/var/lib/pulp/content/rpm/elephant/0.3/0.8/noarch/3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3/elephant-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"relativepath\": \"elephant-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"1516246f-3d84-43f5-8899-433c810fc56e\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/496dff85-d163-40ca-9666-31ef4af11b03/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2212, \"group\": \"Internet/Applications\", \"filename\": \"lion-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of lion\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"lion\", \"_storage_path\": \"/var/lib/pulp/content/rpm/lion/0.3/0.8/noarch/12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4/lion-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"relativepath\": \"lion-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"496dff85-d163-40ca-9666-31ef4af11b03\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/5d832c81-88e6-463c-9011-9405b1760b5f/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2236, \"group\": \"Internet/Applications\", \"filename\": \"walrus-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of walrus\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"walrus\", \"_storage_path\": \"/var/lib/pulp/content/rpm/walrus/0.3/0.8/noarch/6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd/walrus-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"relativepath\": \"walrus-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"5d832c81-88e6-463c-9011-9405b1760b5f\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/6dbc631f-4990-44d6-8848-53d84910f954/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2232, \"group\": \"Internet/Applications\", \"filename\": \"monkey-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of monkey\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"monkey\", \"_storage_path\": \"/var/lib/pulp/content/rpm/monkey/0.3/0.8/noarch/0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1/monkey-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"relativepath\": \"monkey-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"6dbc631f-4990-44d6-8848-53d84910f954\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/a140f324-2eca-476d-9212-4f75856b995c/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2232, \"group\": \"Internet/Applications\", \"filename\": \"penguin-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\", \"Default_Organization-el5_product-5Server\"], \"vendor\": null, \"description\": \"A dummy package of penguin\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"penguin\", \"_storage_path\": \"/var/lib/pulp/content/rpm/penguin/0.3/0.8/noarch/3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694/penguin-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"relativepath\": \"penguin-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"a140f324-2eca-476d-9212-4f75856b995c\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/a8ffed2b-9bfc-4b4f-a95f-4d896a362632/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2232, \"group\": \"Internet/Applications\", \"filename\": \"cheetah-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of cheetah\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"cheetah\", \"_storage_path\": \"/var/lib/pulp/content/rpm/cheetah/0.3/0.8/noarch/422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae/cheetah-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"relativepath\": \"cheetah-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"a8ffed2b-9bfc-4b4f-a95f-4d896a362632\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/ac0f92f9-ee29-4ea3-9b77-82db5ca8786d/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2248, \"group\": \"Internet/Applications\", \"filename\": \"squirrel-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of squirrel\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"squirrel\", \"_storage_path\": \"/var/lib/pulp/content/rpm/squirrel/0.3/0.8/noarch/251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2/squirrel-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"relativepath\": \"squirrel-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"ac0f92f9-ee29-4ea3-9b77-82db5ca8786d\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/bb871147-3fbd-414a-8668-86a8e6d11806/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2236, \"group\": \"Internet/Applications\", \"filename\": \"giraffe-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of giraffe\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"giraffe\", \"_storage_path\": \"/var/lib/pulp/content/rpm/giraffe/0.3/0.8/noarch/f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14/giraffe-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"relativepath\": \"giraffe-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"bb871147-3fbd-414a-8668-86a8e6d11806\"}]" + http_version: + recorded_at: Tue, 07 Oct 2014 13:16:37 GMT +- request: + method: get + uri: https://localhost/pulp/api/v2/tasks/1d63c51e-afd8-4c89-ab9f-cd6cb270d12a/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="ChYgUBnZRDMmUdZtLAlWkskkwiM9CJRFBQIoiGnoI", oauth_signature="UNVkF2%2BWQgS4jNdKjTztl%2FFG97w%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687798", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:16:39 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "603" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/1d63c51e-afd8-4c89-ab9f-cd6cb270d12a/\", \"task_id\": \"1d63c51e-afd8-4c89-ab9f-cd6cb270d12a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2014-10-07T13:16:39Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:38Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7b633a7d3a2e73bef55\"}, \"id\": \"5433e7b65ca0134a6f279460\"}" + http_version: + recorded_at: Tue, 07 Oct 2014 13:16:39 GMT +- request: + method: post + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/ + body: + encoding: US-ASCII + string: "{\"id\":\"1\",\"display_name\":\"Fedora 17 x86_64\",\"importer_type_id\":\"yum_importer\",\"importer_config\":{\"feed\":\"file:///var/www/test_repos/zoo\",\"ssl_ca_cert\":null,\"ssl_client_cert\":null,\"ssl_client_key\":null},\"notes\":{\"_repo-type\":\"rpm-repo\"},\"distributors\":[{\"distributor_type_id\":\"yum_distributor\",\"distributor_config\":{\"relative_url\":\"/test_path/\",\"http\":false,\"https\":true,\"protected\":true,\"checksum_type\":null},\"auto_publish\":true,\"distributor_id\":\"1\"},{\"distributor_type_id\":\"yum_clone_distributor\",\"distributor_config\":{\"destination_distributor_id\":\"1\"},\"auto_publish\":false,\"distributor_id\":\"1_clone\"},{\"distributor_type_id\":\"nodes_http_distributor\",\"distributor_config\":{},\"auto_publish\":true,\"distributor_id\":\"1_nodes\"}]}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="Os73N47ukGKsVSqjS3rcOAbZ24seWnq7n7i1RWoQU", oauth_signature="fNidS1g8q0i9ca00tJlUXQrf5HE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804760", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "724" + User-Agent: + - Ruby + response: + status: + code: 201 + message: Created + headers: + Date: + - Wed, 05 Aug 2015 19:59:20 GMT + Server: + - Apache/2.4.6 (CentOS) + Location: + - "1" + Content-Length: + - "304" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"last_unit_added\": null, \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"last_unit_removed\": null, \"content_unit_counts\": {}, \"_ns\": \"repos\", \"_id\": {\"$oid\": \"55c26b1811513843aeb57103\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" + http_version: + recorded_at: Wed, 05 Aug 2015 19:59:20 GMT +- request: + method: post + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/actions/sync/ + body: + encoding: US-ASCII + string: "{\"override_config\":{\"num_threads\":4}}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="pQZyGo0pQJ0OluzTIAAByPx2YUZXQv6r1Pt0YRNRMQ", oauth_signature="LKHQJybLZ2NXL%2BpYKOy2hwytFJQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804760", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "37" + User-Agent: + - Ruby + response: + status: + code: 202 + message: Accepted + headers: + Date: + - Wed, 05 Aug 2015 19:59:20 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Encoding: + - utf-8 + Content-Length: + - "172" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/e218793a-86e4-4ef6-b04a-86d3fbf8203f/\", \"task_id\": \"e218793a-86e4-4ef6-b04a-86d3fbf8203f\"}], \"result\": null, \"error\": null}" + http_version: + recorded_at: Wed, 05 Aug 2015 19:59:20 GMT +- request: + method: get + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/e218793a-86e4-4ef6-b04a-86d3fbf8203f/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="35xY20AnJN1KxcSjB1UPBDoxKWDsxHHssJaM9eZ3k", oauth_signature="fUDEDrxPRWeq4TLB3IUJw%2FxF4hA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804760", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Wed, 05 Aug 2015 19:59:20 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "517" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/e218793a-86e4-4ef6-b04a-86d3fbf8203f/\", \"task_id\": \"e218793a-86e4-4ef6-b04a-86d3fbf8203f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b187164df9aa32ab31d\"}, \"id\": \"55c26b1811513843aeb57109\"}" + http_version: + recorded_at: Wed, 05 Aug 2015 19:59:20 GMT +- request: + method: get + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/e218793a-86e4-4ef6-b04a-86d3fbf8203f/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="3rhXPoNnhcuXuG0Pdf8j7ZJma0fzvY7lPvHRag8", oauth_signature="k494pxPi%2BYbI08ZXJHMvljMlA%2FU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804760", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Wed, 05 Aug 2015 19:59:20 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "1083" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/e218793a-86e4-4ef6-b04a-86d3fbf8203f/\", \"task_id\": \"e218793a-86e4-4ef6-b04a-86d3fbf8203f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:20Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"NOT_STARTED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"IN_PROGRESS\"}}}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"running\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b187164df9aa32ab31d\"}, \"id\": \"55c26b181151384439db715d\"}" + http_version: + recorded_at: Wed, 05 Aug 2015 19:59:20 GMT +- request: + method: get + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/e218793a-86e4-4ef6-b04a-86d3fbf8203f/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="9xGBRcJhd5esFDcdUM7D1Mgj63zr2cDqJ7WHXSZe6w", oauth_signature="A6weUNJGbfpXQkHixoHuTCvVeFw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804761", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Wed, 05 Aug 2015 19:59:21 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2285" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/e218793a-86e4-4ef6-b04a-86d3fbf8203f/\", \"task_id\": \"e218793a-86e4-4ef6-b04a-86d3fbf8203f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-08-05T19:59:20Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:20Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/b4a64a10-382f-46fa-a69e-6314bb641915/\", \"task_id\": \"b4a64a10-382f-46fa-a69e-6314bb641915\"}, {\"_href\": \"/pulp/api/v2/tasks/34042c35-b752-46a2-8b70-c7a4c0fb55f4/\", \"task_id\": \"34042c35-b752-46a2-8b70-c7a4c0fb55f4\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-08-05T19:59:20Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-08-05T19:59:20Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 15, \"error_message\": null, \"updated_count\": 0, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55c26b18115138443de6e9cb\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55c26b187164df9aa32ab31d\"}, \"id\": \"55c26b181151384439db715d\"}" + http_version: + recorded_at: Wed, 05 Aug 2015 19:59:21 GMT +- request: + method: post + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/search/units/ + body: + encoding: US-ASCII + string: "{\"criteria\":{\"type_ids\":[\"distribution\"]}}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="JpjnfzYBXECKTaZD4nEGU0g2CN06bDhYK7KzdSrbOI", oauth_signature="VttVnbzz7sB%2FXjbu6LAt1TbM43U%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804762", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "42" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Wed, 05 Aug 2015 19:59:22 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2276" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "[{\"updated\": \"2015-08-05T19:59:20Z\", \"repo_id\": \"1\", \"created\": \"2015-08-05T19:59:20Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"063a1ec5-da07-4bb5-8935-c01d75cc8ed2\", \"metadata\": {\"files\": [{\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"test2.img\", \"downloadurl\": \"file:///var/www/test_repos/zoo/images/test2.img\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmpO3vIKL/tmp7wRvmJ/images/test2.img\", \"relativepath\": \"images/test2.img\", \"filename\": \"test2.img\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/images\", \"size\": null}, {\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"empty.iso\", \"downloadurl\": \"file:///var/www/test_repos/zoo/empty.iso\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmpO3vIKL/tmp7wRvmJ/empty.iso\", \"relativepath\": \"empty.iso\", \"filename\": \"empty.iso\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/\", \"size\": null}, {\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"test1.img\", \"downloadurl\": \"file:///var/www/test_repos/zoo/images/test1.img\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmpO3vIKL/tmp7wRvmJ/images/test1.img\", \"relativepath\": \"images/test1.img\", \"filename\": \"test1.img\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/images\", \"size\": null}], \"_storage_path\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64\", \"family\": \"Test Family\", \"timestamp\": 1323112153.09, \"_last_updated\": 1438804760, \"_content_type_id\": \"distribution\", \"variant\": \"TestVariant\", \"id\": \"ks-Test Family-TestVariant-16-x86_64\", \"version\": \"16\", \"version_sort_index\": \"02-16\", \"packagedir\": \"\", \"_id\": \"063a1ec5-da07-4bb5-8935-c01d75cc8ed2\", \"arch\": \"x86_64\", \"_ns\": \"units_distribution\"}, \"unit_type_id\": \"distribution\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"55c26b18115138443de6e9c4\"}, \"id\": \"55c26b18115138443de6e9c4\", \"owner_id\": \"yum_importer\"}]" + http_version: + recorded_at: Wed, 05 Aug 2015 19:59:22 GMT +- request: + method: post + uri: https://katello-devel1.example.com/pulp/api/v2/content/units/distribution/search/ + body: + encoding: US-ASCII + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"063a1ec5-da07-4bb5-8935-c01d75cc8ed2\"]}}},\"include_repos\":true}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="zbpTk69RfQqsWVkcn6G2WuBDzJExpdMvaVE5OKSZs", oauth_signature="jnw128m7qWjZkW1rAgv7kHFp0kM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804762", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "102" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Wed, 05 Aug 2015 19:59:22 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "2053" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "[{\"files\": [{\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"test2.img\", \"downloadurl\": \"file:///var/www/test_repos/zoo/images/test2.img\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmpO3vIKL/tmp7wRvmJ/images/test2.img\", \"relativepath\": \"images/test2.img\", \"filename\": \"test2.img\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/images\", \"size\": null}, {\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"empty.iso\", \"downloadurl\": \"file:///var/www/test_repos/zoo/empty.iso\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmpO3vIKL/tmp7wRvmJ/empty.iso\", \"relativepath\": \"empty.iso\", \"filename\": \"empty.iso\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/\", \"size\": null}, {\"checksumtype\": \"sha256\", \"checksum\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\", \"fileName\": \"test1.img\", \"downloadurl\": \"file:///var/www/test_repos/zoo/images/test1.img\", \"item_type\": \"distribution\", \"savepath\": \"/var/lib/pulp/working/repos/1/importers/yum_importer/tmpO3vIKL/tmp7wRvmJ/images/test1.img\", \"relativepath\": \"images/test1.img\", \"filename\": \"test1.img\", \"pkgpath\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64/images\", \"size\": null}], \"_storage_path\": \"/var/lib/pulp/content/distribution/ks-Test Family-TestVariant-16-x86_64\", \"_href\": \"/pulp/api/v2/content/units/distribution/063a1ec5-da07-4bb5-8935-c01d75cc8ed2/\", \"family\": \"Test Family\", \"timestamp\": 1323112153.09, \"_last_updated\": \"2015-08-05T19:59:20Z\", \"_content_type_id\": \"distribution\", \"variant\": \"TestVariant\", \"repository_memberships\": [\"1\"], \"id\": \"ks-Test Family-TestVariant-16-x86_64\", \"version\": \"16\", \"version_sort_index\": \"02-16\", \"packagedir\": \"\", \"_id\": \"063a1ec5-da07-4bb5-8935-c01d75cc8ed2\", \"arch\": \"x86_64\", \"children\": {}}]" + http_version: + recorded_at: Wed, 05 Aug 2015 19:59:22 GMT +- request: + method: post + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/search/units/ + body: + encoding: US-ASCII + string: "{\"criteria\":{\"type_ids\":[\"erratum\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]}}}" headers: Accept: - application/json @@ -395,11 +803,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="crhT7BjznRuBq6UvC9yiCIdogqJGpRmW1GJPOuWcGA", oauth_signature="Z6V1kJySxL2n4KMMBbgbLrWOjsc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687796", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="tpYeWDJ3holPkXGTxGYOsAFA7G07iJffiPfZJdn0qk", oauth_signature="rHlGdFkjULeevwN%2FCxfgXx1jqJE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804762", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "180" + - "84" User-Agent: - Ruby response: @@ -408,28 +816,26 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:36 GMT + - Wed, 05 Aug 2015 19:59:22 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "4701" + - "651" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "[{\"repository_memberships\": [\"1\", \"Default_Organization-el6-el6_2\"], \"_href\": \"/pulp/api/v2/content/units/erratum/5c627ea3-7555-45a1-bb90-61daf932d4b4/\", \"issued\": \"2010-11-10 00:00:00\", \"references\": [{\"href\": \"https://rhn.redhat.com/errata/RHSA-2010-0858.html\", \"type\": \"self\", \"id\": null, \"title\": null}, {\"href\": \"https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=627882\", \"type\": \"bugzilla\", \"id\": \"627882\", \"title\": null}, {\"href\": \"https://www.redhat.com/security/data/cve/CVE-2010-0405.html\", \"type\": \"cve\", \"id\": \"CVE-2010-0405\", \"title\": null}, {\"href\": \"http://www.redhat.com/security/updates/classification/#important\", \"type\": \"other\", \"id\": null, \"title\": null}], \"_content_type_id\": \"erratum\", \"id\": \"RHSA-2010:0858\", \"from\": \"security@redhat.com\", \"severity\": \"Important\", \"title\": \"Important: bzip2 security update\", \"children\": {}, \"version\": \"3\", \"reboot_suggested\": false, \"type\": \"security\", \"pkglist\": [{\"packages\": [{\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-devel\", \"sum\": [\"sha256\", \"ea67c664da1ff96a6dc94d33009b73d8fab31b59824183fb45e9ba2ebf82d583\"], \"filename\": \"bzip2-devel-1.0.5-7.el6_0.i686.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"i686\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-libs\", \"sum\": [\"sha256\", \"c9f064a6862573fb9f2a6aff7c3621f1940b492df2edfc2ebbdc0b8305f51147\"], \"filename\": \"bzip2-libs-1.0.5-7.el6_0.i686.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"i686\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2\", \"sum\": [\"sha256\", \"b8a3f72bc2b0d89ba737099ac98bf8d2af4bea02d31884c02db97f7f66c3d5c2\"], \"filename\": \"bzip2-1.0.5-7.el6_0.x86_64.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"x86_64\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-devel\", \"sum\": [\"sha256\", \"7f63124e4655b7c92d23ec4c38226f5d3746568853dff750fc85e058e74b5cf6\"], \"filename\": \"bzip2-devel-1.0.5-7.el6_0.x86_64.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"x86_64\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-libs\", \"sum\": [\"sha256\", \"802f4399dbdd01476e254c3b32c40aff59cf5d23a45fa488c6917ce8904d6b4d\"], \"filename\": \"bzip2-libs-1.0.5-7.el6_0.x86_64.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"x86_64\"}], \"name\": \"Red Hat Enterprise Linux Server (v. 6 for 64-bit x86_64)\", \"short\": \"rhel-x86_64-server-6\"}], \"status\": \"final\", \"updated\": \"2010-11-10 00:00:00\", \"description\": \"bzip2 is a freely available, high-quality data compressor. It provides both\\nlibbz2 library must be restarted for the update to take effect.\", \"_last_updated\": \"2014-10-07T13:16:33Z\", \"pushcount\": \"\", \"_storage_path\": null, \"rights\": \"Copyright 2010 Red Hat Inc\", \"solution\": \"Before applying this update, make sure all previously-released errata\\nrelevant to your system have been applied.\\n\\nThis update is available via the Red Hat Network. Details on how to\\nuse the Red Hat Network to apply this update are available at\\nhttp://kbase.redhat.com/faq/docs/DOC-11259\", \"summary\": \"Updated bzip2 packages that fix one security issue\", \"release\": \"\", \"_id\": \"5c627ea3-7555-45a1-bb90-61daf932d4b4\"}, {\"repository_memberships\": [\"1\"], \"_href\": \"/pulp/api/v2/content/units/erratum/c1d19db2-9317-4851-97e6-e406341867ed/\", \"issued\": \"2010-01-01 01:01:01\", \"references\": [], \"_content_type_id\": \"erratum\", \"id\": \"RHEA-2010:0002\", \"from\": \"lzap+pub@redhat.com\", \"severity\": \"\", \"title\": \"One package errata\", \"children\": {}, \"version\": \"1\", \"reboot_suggested\": false, \"type\": \"security\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"status\": \"stable\", \"updated\": \"\", \"description\": \"One package errata\", \"_last_updated\": \"2014-10-07T13:16:33Z\", \"pushcount\": \"\", \"_storage_path\": null, \"rights\": \"\", \"solution\": \"\", \"summary\": \"\", \"release\": \"1\", \"_id\": \"c1d19db2-9317-4851-97e6-e406341867ed\"}, {\"repository_memberships\": [\"1\"], \"_href\": \"/pulp/api/v2/content/units/erratum/c9263100-a07f-47c5-93b6-bc4b61df0d07/\", \"issued\": \"2010-01-01 01:01:01\", \"references\": [], \"_content_type_id\": \"erratum\", \"id\": \"RHEA-2010:0001\", \"from\": \"lzap+pub@redhat.com\", \"severity\": \"\", \"title\": \"Empty errata\", \"children\": {}, \"version\": \"1\", \"reboot_suggested\": false, \"type\": \"security\", \"pkglist\": [], \"status\": \"stable\", \"updated\": \"\", \"description\": \"Empty errata\", \"_last_updated\": \"2014-10-07T13:16:33Z\", \"pushcount\": \"\", \"_storage_path\": null, \"rights\": \"\", \"solution\": \"\", \"summary\": \"\", \"release\": \"1\", \"_id\": \"c9263100-a07f-47c5-93b6-bc4b61df0d07\"}]" + encoding: US-ASCII + string: "[{\"metadata\": {\"_id\": \"2e54bfe9-6eea-446f-aa9a-dfe32f2f4a00\", \"_content_type_id\": \"erratum\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9c5\"}, \"unit_id\": \"2e54bfe9-6eea-446f-aa9a-dfe32f2f4a00\", \"unit_type_id\": \"erratum\"}, {\"metadata\": {\"_id\": \"d0e0125c-63f2-4746-a046-36bffc5bc746\", \"_content_type_id\": \"erratum\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9c7\"}, \"unit_id\": \"d0e0125c-63f2-4746-a046-36bffc5bc746\", \"unit_type_id\": \"erratum\"}, {\"metadata\": {\"_id\": \"0ec5867a-e748-4890-95f0-bc836ff70dbb\", \"_content_type_id\": \"erratum\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9c6\"}, \"unit_id\": \"0ec5867a-e748-4890-95f0-bc836ff70dbb\", \"unit_type_id\": \"erratum\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:36 GMT + recorded_at: Wed, 05 Aug 2015 19:59:22 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/1/search/units/ + uri: https://katello-devel1.example.com/pulp/api/v2/content/units/erratum/search/ body: encoding: US-ASCII - string: "{\"criteria\":{\"type_ids\":[\"rpm\"],\"filters\":{\"unit\":{\"$and\":[{\"name\":\"elephant\"}]}},\"sort\":{\"unit\":[[\"name\",\"ascending\"],[\"version\",\"descending\"]]}}}" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"2e54bfe9-6eea-446f-aa9a-dfe32f2f4a00\",\"d0e0125c-63f2-4746-a046-36bffc5bc746\",\"0ec5867a-e748-4890-95f0-bc836ff70dbb\"]}}},\"include_repos\":true}" headers: Accept: - application/json @@ -438,11 +844,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="slLqYlj6xxBq0eMVLHyLhJZXKloP3525HlBnpdtBpvk", oauth_signature="gkg62cxc4a7%2FpvM2cI7h%2BNRlUkw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687796", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="hoiRVMTapalYv5cb0qpYE7CWmpnKwky0E4lSmym8o", oauth_signature="d%2Bu0THY%2FFXgiXPF1A3q7x9S%2BJqA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804762", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "147" + - "180" User-Agent: - Ruby response: @@ -451,25 +857,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:36 GMT + - Wed, 05 Aug 2015 19:59:22 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "3261" + - "4667" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "[{\"updated\": \"2014-10-07T13:16:32Z\", \"repo_id\": \"1\", \"created\": \"2014-10-07T13:16:32Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"1516246f-3d84-43f5-8899-433c810fc56e\", \"metadata\": {\"build_time\": 1308257466, \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"vendor\": null, \"size\": 2244, \"group\": \"Internet/Applications\", \"_ns\": \"units_rpm\", \"relative_url_path\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"version_sort_index\": \"01-0.01-3\", \"provides\": [{\"release\": \"0.8\", \"epoch\": \"0\", \"version\": \"0.3\", \"flags\": \"EQ\", \"name\": \"elephant\"}], \"files\": {\"file\": [\"//elephant.txt\"], \"dir\": []}, \"repodata\": {\"filelists\": \"\\n \\n\\n //elephant.txt\\n\\n\\n\", \"other\": \"\\n \\n\\n\\n\\n\", \"primary\": \"\\n elephant\\n noarch\\n \\n 3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\\n A dummy package of elephant\\n A dummy package of elephant\\n \\n http://tstrachota.fedorapeople.org\\n \\n\"}, \"description\": \"A dummy package of elephant\", \"_last_updated\": 1412687792, \"time\": 1321891027, \"header_range\": {\"start\": 280, \"end\": 2028}, \"release_sort_index\": \"01-0.01-8\", \"arch\": \"noarch\", \"name\": \"elephant\", \"_storage_path\": \"/var/lib/pulp/content/rpm/elephant/0.3/0.8/noarch/3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3/elephant-0.3-0.8.noarch.rpm\", \"sourcerpm\": \"elephant-0.3-0.8.src.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"changelog\": [], \"url\": \"http://tstrachota.fedorapeople.org\", \"relativepath\": \"elephant-0.3-0.8.noarch.rpm\", \"summary\": \"A dummy package of elephant\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"release\": \"0.8\", \"_id\": \"1516246f-3d84-43f5-8899-433c810fc56e\", \"requires\": [{\"release\": null, \"epoch\": null, \"version\": null, \"flags\": null, \"name\": \"/bin/sh\"}]}, \"unit_type_id\": \"rpm\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759a\"}, \"id\": \"5433e7b05ca013067bd7759a\", \"owner_id\": \"yum_importer\"}]" + encoding: US-ASCII + string: "[{\"repository_memberships\": [\"1\"], \"_href\": \"/pulp/api/v2/content/units/erratum/0ec5867a-e748-4890-95f0-bc836ff70dbb/\", \"issued\": \"2010-11-10 00:00:00\", \"references\": [{\"href\": \"https://rhn.redhat.com/errata/RHSA-2010-0858.html\", \"type\": \"self\", \"id\": null, \"title\": null}, {\"href\": \"https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=627882\", \"type\": \"bugzilla\", \"id\": \"627882\", \"title\": null}, {\"href\": \"https://www.redhat.com/security/data/cve/CVE-2010-0405.html\", \"type\": \"cve\", \"id\": \"CVE-2010-0405\", \"title\": null}, {\"href\": \"http://www.redhat.com/security/updates/classification/#important\", \"type\": \"other\", \"id\": null, \"title\": null}], \"_content_type_id\": \"erratum\", \"id\": \"RHSA-2010:0858\", \"from\": \"security@redhat.com\", \"severity\": \"Important\", \"title\": \"Important: bzip2 security update\", \"children\": {}, \"version\": \"3\", \"reboot_suggested\": false, \"type\": \"security\", \"pkglist\": [{\"packages\": [{\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-devel\", \"sum\": [\"sha256\", \"ea67c664da1ff96a6dc94d33009b73d8fab31b59824183fb45e9ba2ebf82d583\"], \"filename\": \"bzip2-devel-1.0.5-7.el6_0.i686.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"i686\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-libs\", \"sum\": [\"sha256\", \"c9f064a6862573fb9f2a6aff7c3621f1940b492df2edfc2ebbdc0b8305f51147\"], \"filename\": \"bzip2-libs-1.0.5-7.el6_0.i686.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"i686\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2\", \"sum\": [\"sha256\", \"b8a3f72bc2b0d89ba737099ac98bf8d2af4bea02d31884c02db97f7f66c3d5c2\"], \"filename\": \"bzip2-1.0.5-7.el6_0.x86_64.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"x86_64\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-devel\", \"sum\": [\"sha256\", \"7f63124e4655b7c92d23ec4c38226f5d3746568853dff750fc85e058e74b5cf6\"], \"filename\": \"bzip2-devel-1.0.5-7.el6_0.x86_64.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"x86_64\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-libs\", \"sum\": [\"sha256\", \"802f4399dbdd01476e254c3b32c40aff59cf5d23a45fa488c6917ce8904d6b4d\"], \"filename\": \"bzip2-libs-1.0.5-7.el6_0.x86_64.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"x86_64\"}], \"name\": \"Red Hat Enterprise Linux Server (v. 6 for 64-bit x86_64)\", \"short\": \"rhel-x86_64-server-6\"}], \"status\": \"final\", \"updated\": \"2010-11-10 00:00:00\", \"description\": \"bzip2 is a freely available, high-quality data compressor. It provides both\\nlibbz2 library must be restarted for the update to take effect.\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"pushcount\": \"\", \"_storage_path\": null, \"rights\": \"Copyright 2010 Red Hat Inc\", \"solution\": \"Before applying this update, make sure all previously-released errata\\nrelevant to your system have been applied.\\n\\nThis update is available via the Red Hat Network. Details on how to\\nuse the Red Hat Network to apply this update are available at\\nhttp://kbase.redhat.com/faq/docs/DOC-11259\", \"summary\": \"Updated bzip2 packages that fix one security issue\", \"release\": \"\", \"_id\": \"0ec5867a-e748-4890-95f0-bc836ff70dbb\"}, {\"repository_memberships\": [\"1\"], \"_href\": \"/pulp/api/v2/content/units/erratum/2e54bfe9-6eea-446f-aa9a-dfe32f2f4a00/\", \"issued\": \"2010-01-01 01:01:01\", \"references\": [], \"_content_type_id\": \"erratum\", \"id\": \"RHEA-2010:0001\", \"from\": \"lzap+pub@redhat.com\", \"severity\": \"\", \"title\": \"Empty errata\", \"children\": {}, \"version\": \"1\", \"reboot_suggested\": false, \"type\": \"security\", \"pkglist\": [], \"status\": \"stable\", \"updated\": \"\", \"description\": \"Empty errata\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"pushcount\": \"\", \"_storage_path\": null, \"rights\": \"\", \"solution\": \"\", \"summary\": \"\", \"release\": \"1\", \"_id\": \"2e54bfe9-6eea-446f-aa9a-dfe32f2f4a00\"}, {\"repository_memberships\": [\"1\"], \"_href\": \"/pulp/api/v2/content/units/erratum/d0e0125c-63f2-4746-a046-36bffc5bc746/\", \"issued\": \"2010-01-01 01:01:01\", \"references\": [], \"_content_type_id\": \"erratum\", \"id\": \"RHEA-2010:0002\", \"from\": \"lzap+pub@redhat.com\", \"severity\": \"\", \"title\": \"One package errata\", \"children\": {}, \"version\": \"1\", \"reboot_suggested\": false, \"type\": \"security\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"status\": \"stable\", \"updated\": \"\", \"description\": \"One package errata\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"pushcount\": \"\", \"_storage_path\": null, \"rights\": \"\", \"solution\": \"\", \"summary\": \"\", \"release\": \"1\", \"_id\": \"d0e0125c-63f2-4746-a046-36bffc5bc746\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:36 GMT + recorded_at: Wed, 05 Aug 2015 19:59:22 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/1/search/units/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/search/units/ body: encoding: US-ASCII string: "{\"criteria\":{\"type_ids\":[\"rpm\"],\"filters\":{\"unit\":{\"$and\":[{\"name\":\"elephant\"}]}},\"sort\":{\"unit\":[[\"name\",\"ascending\"],[\"version\",\"descending\"]]}}}" @@ -481,7 +885,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="nJOc8XU3Zznvvspvcziz1zjiOq7pw63QXcB6HqBkDso", oauth_signature="SlrhXJqci0R%2FkVefCWQagE7zLmY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687796", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="NEGn7vzw2zeWgmnQuc6StMWRH8EAqCccmZSIma2AQxY", oauth_signature="GQ1qOc3Yrr0%2FnLLKuMUfUyLHcbc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804762", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -494,28 +898,26 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:36 GMT + - Wed, 05 Aug 2015 19:59:22 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "3261" + - "3272" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "[{\"updated\": \"2014-10-07T13:16:32Z\", \"repo_id\": \"1\", \"created\": \"2014-10-07T13:16:32Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"1516246f-3d84-43f5-8899-433c810fc56e\", \"metadata\": {\"build_time\": 1308257466, \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"vendor\": null, \"size\": 2244, \"group\": \"Internet/Applications\", \"_ns\": \"units_rpm\", \"relative_url_path\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"version_sort_index\": \"01-0.01-3\", \"provides\": [{\"release\": \"0.8\", \"epoch\": \"0\", \"version\": \"0.3\", \"flags\": \"EQ\", \"name\": \"elephant\"}], \"files\": {\"file\": [\"//elephant.txt\"], \"dir\": []}, \"repodata\": {\"filelists\": \"\\n \\n\\n //elephant.txt\\n\\n\\n\", \"other\": \"\\n \\n\\n\\n\\n\", \"primary\": \"\\n elephant\\n noarch\\n \\n 3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\\n A dummy package of elephant\\n A dummy package of elephant\\n \\n http://tstrachota.fedorapeople.org\\n \\n\"}, \"description\": \"A dummy package of elephant\", \"_last_updated\": 1412687792, \"time\": 1321891027, \"header_range\": {\"start\": 280, \"end\": 2028}, \"release_sort_index\": \"01-0.01-8\", \"arch\": \"noarch\", \"name\": \"elephant\", \"_storage_path\": \"/var/lib/pulp/content/rpm/elephant/0.3/0.8/noarch/3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3/elephant-0.3-0.8.noarch.rpm\", \"sourcerpm\": \"elephant-0.3-0.8.src.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"changelog\": [], \"url\": \"http://tstrachota.fedorapeople.org\", \"relativepath\": \"elephant-0.3-0.8.noarch.rpm\", \"summary\": \"A dummy package of elephant\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"release\": \"0.8\", \"_id\": \"1516246f-3d84-43f5-8899-433c810fc56e\", \"requires\": [{\"release\": null, \"epoch\": null, \"version\": null, \"flags\": null, \"name\": \"/bin/sh\"}]}, \"unit_type_id\": \"rpm\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759a\"}, \"id\": \"5433e7b05ca013067bd7759a\", \"owner_id\": \"yum_importer\"}]" + encoding: US-ASCII + string: "[{\"updated\": \"2015-08-05T19:59:20Z\", \"repo_id\": \"1\", \"created\": \"2015-08-05T19:59:20Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"6eb97f0b-c856-4b80-b474-f505c69bb0a4\", \"metadata\": {\"build_time\": 1308257466, \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"vendor\": null, \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"size\": 2244, \"group\": \"Internet/Applications\", \"_ns\": \"units_rpm\", \"base_url\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"relative_url_path\": null, \"epoch\": \"0\", \"version\": \"0.3\", \"version_sort_index\": \"01-0.01-3\", \"provides\": [{\"release\": \"0.8\", \"epoch\": \"0\", \"version\": \"0.3\", \"flags\": \"EQ\", \"name\": \"elephant\"}], \"files\": {\"file\": [\"//elephant.txt\"], \"dir\": []}, \"repodata\": {\"filelists\": \"\\n \\n\\n //elephant.txt\\n\\n\\n\", \"other\": \"\\n \\n\\n\\n\\n\", \"primary\": \"\\n elephant\\n noarch\\n \\n 3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\\n A dummy package of elephant\\n A dummy package of elephant\\n \\n http://tstrachota.fedorapeople.org\\n \\n\"}, \"description\": \"A dummy package of elephant\", \"_last_updated\": 1438804760, \"time\": 1321891027, \"header_range\": {\"start\": 280, \"end\": 2028}, \"arch\": \"noarch\", \"checksumtype\": \"sha256\", \"_storage_path\": \"/var/lib/pulp/content/rpm/elephant/0.3/0.8/noarch/3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3/elephant-0.3-0.8.noarch.rpm\", \"sourcerpm\": \"elephant-0.3-0.8.src.rpm\", \"name\": \"elephant\", \"license\": \"GPLv2\", \"changelog\": [], \"url\": \"http://tstrachota.fedorapeople.org\", \"release_sort_index\": \"01-0.01-8\", \"summary\": \"A dummy package of elephant\", \"relativepath\": \"elephant-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"6eb97f0b-c856-4b80-b474-f505c69bb0a4\", \"requires\": [{\"release\": null, \"epoch\": null, \"version\": null, \"flags\": null, \"name\": \"/bin/sh\"}]}, \"unit_type_id\": \"rpm\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"55c26b18115138443de6e9c0\"}, \"id\": \"55c26b18115138443de6e9c0\", \"owner_id\": \"yum_importer\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:36 GMT + recorded_at: Wed, 05 Aug 2015 19:59:22 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/1/search/units/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/search/units/ body: encoding: US-ASCII - string: "{\"criteria\":{\"type_ids\":[\"rpm\"],\"filters\":{\"unit\":{\"$and\":[{\"name\":\"elephant\"},{\"version\":\"0.3\"},{\"release\":\"0.8\"},{\"epoch\":\"0\"}]}},\"sort\":{\"unit\":[[\"name\",\"ascending\"],[\"version\",\"descending\"]]}}}" + string: "{\"criteria\":{\"type_ids\":[\"rpm\"],\"filters\":{\"unit\":{\"$and\":[{\"name\":\"elephant\"}]}},\"sort\":{\"unit\":[[\"name\",\"ascending\"],[\"version\",\"descending\"]]}}}" headers: Accept: - application/json @@ -524,11 +926,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="j9k48Vaf3s2MJIxRcZMDddSKJu5c3zwRwX9LwfGeY", oauth_signature="vL%2FyB3jHEI3jLPntePFQ3LYSKbk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687796", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="31cYHm7VEmgWpt9ZeWVse53QJ28vgilUlvCABkv0wnU", oauth_signature="Di7lHk8Ac3ZeQK%2BoMaZ0B0L2Kxk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804762", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "197" + - "147" User-Agent: - Ruby response: @@ -537,28 +939,26 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:36 GMT + - Wed, 05 Aug 2015 19:59:22 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "3261" + - "3272" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "[{\"updated\": \"2014-10-07T13:16:32Z\", \"repo_id\": \"1\", \"created\": \"2014-10-07T13:16:32Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"1516246f-3d84-43f5-8899-433c810fc56e\", \"metadata\": {\"build_time\": 1308257466, \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"vendor\": null, \"size\": 2244, \"group\": \"Internet/Applications\", \"_ns\": \"units_rpm\", \"relative_url_path\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"version_sort_index\": \"01-0.01-3\", \"provides\": [{\"release\": \"0.8\", \"epoch\": \"0\", \"version\": \"0.3\", \"flags\": \"EQ\", \"name\": \"elephant\"}], \"files\": {\"file\": [\"//elephant.txt\"], \"dir\": []}, \"repodata\": {\"filelists\": \"\\n \\n\\n //elephant.txt\\n\\n\\n\", \"other\": \"\\n \\n\\n\\n\\n\", \"primary\": \"\\n elephant\\n noarch\\n \\n 3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\\n A dummy package of elephant\\n A dummy package of elephant\\n \\n http://tstrachota.fedorapeople.org\\n \\n\"}, \"description\": \"A dummy package of elephant\", \"_last_updated\": 1412687792, \"time\": 1321891027, \"header_range\": {\"start\": 280, \"end\": 2028}, \"release_sort_index\": \"01-0.01-8\", \"arch\": \"noarch\", \"name\": \"elephant\", \"_storage_path\": \"/var/lib/pulp/content/rpm/elephant/0.3/0.8/noarch/3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3/elephant-0.3-0.8.noarch.rpm\", \"sourcerpm\": \"elephant-0.3-0.8.src.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"changelog\": [], \"url\": \"http://tstrachota.fedorapeople.org\", \"relativepath\": \"elephant-0.3-0.8.noarch.rpm\", \"summary\": \"A dummy package of elephant\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"release\": \"0.8\", \"_id\": \"1516246f-3d84-43f5-8899-433c810fc56e\", \"requires\": [{\"release\": null, \"epoch\": null, \"version\": null, \"flags\": null, \"name\": \"/bin/sh\"}]}, \"unit_type_id\": \"rpm\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759a\"}, \"id\": \"5433e7b05ca013067bd7759a\", \"owner_id\": \"yum_importer\"}]" + encoding: US-ASCII + string: "[{\"updated\": \"2015-08-05T19:59:20Z\", \"repo_id\": \"1\", \"created\": \"2015-08-05T19:59:20Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"6eb97f0b-c856-4b80-b474-f505c69bb0a4\", \"metadata\": {\"build_time\": 1308257466, \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"vendor\": null, \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"size\": 2244, \"group\": \"Internet/Applications\", \"_ns\": \"units_rpm\", \"base_url\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"relative_url_path\": null, \"epoch\": \"0\", \"version\": \"0.3\", \"version_sort_index\": \"01-0.01-3\", \"provides\": [{\"release\": \"0.8\", \"epoch\": \"0\", \"version\": \"0.3\", \"flags\": \"EQ\", \"name\": \"elephant\"}], \"files\": {\"file\": [\"//elephant.txt\"], \"dir\": []}, \"repodata\": {\"filelists\": \"\\n \\n\\n //elephant.txt\\n\\n\\n\", \"other\": \"\\n \\n\\n\\n\\n\", \"primary\": \"\\n elephant\\n noarch\\n \\n 3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\\n A dummy package of elephant\\n A dummy package of elephant\\n \\n http://tstrachota.fedorapeople.org\\n \\n\"}, \"description\": \"A dummy package of elephant\", \"_last_updated\": 1438804760, \"time\": 1321891027, \"header_range\": {\"start\": 280, \"end\": 2028}, \"arch\": \"noarch\", \"checksumtype\": \"sha256\", \"_storage_path\": \"/var/lib/pulp/content/rpm/elephant/0.3/0.8/noarch/3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3/elephant-0.3-0.8.noarch.rpm\", \"sourcerpm\": \"elephant-0.3-0.8.src.rpm\", \"name\": \"elephant\", \"license\": \"GPLv2\", \"changelog\": [], \"url\": \"http://tstrachota.fedorapeople.org\", \"release_sort_index\": \"01-0.01-8\", \"summary\": \"A dummy package of elephant\", \"relativepath\": \"elephant-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"6eb97f0b-c856-4b80-b474-f505c69bb0a4\", \"requires\": [{\"release\": null, \"epoch\": null, \"version\": null, \"flags\": null, \"name\": \"/bin/sh\"}]}, \"unit_type_id\": \"rpm\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"55c26b18115138443de6e9c0\"}, \"id\": \"55c26b18115138443de6e9c0\", \"owner_id\": \"yum_importer\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:36 GMT + recorded_at: Wed, 05 Aug 2015 19:59:22 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/1/search/units/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/search/units/ body: encoding: US-ASCII - string: "{\"criteria\":{\"type_ids\":[\"rpm\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]}}}" + string: "{\"criteria\":{\"type_ids\":[\"rpm\"],\"filters\":{\"unit\":{\"$and\":[{\"name\":\"elephant\"},{\"version\":\"0.3\"},{\"release\":\"0.8\"},{\"epoch\":\"0\"}]}},\"sort\":{\"unit\":[[\"name\",\"ascending\"],[\"version\",\"descending\"]]}}}" headers: Accept: - application/json @@ -567,11 +967,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="cqBYNUVROLMOO8SfI8dr3nsxyEZzSvdTEfpjLFvu8cY", oauth_signature="X6GH45lIn7%2BiktSa3pb1fIwmnrA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687796", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="b7Ae1ARsjui6FpdXcZ81bHX820ZBxfpkgRMge16zjo", oauth_signature="iqaWs23g%2F2FUaRZ3GoJ%2FXxIIxBY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804762", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "80" + - "197" User-Agent: - Ruby response: @@ -580,28 +980,26 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:36 GMT + - Wed, 05 Aug 2015 19:59:22 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "1672" + - "3272" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "[{\"metadata\": {\"_id\": \"a8ffed2b-9bfc-4b4f-a95f-4d896a362632\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759e\"}, \"unit_id\": \"a8ffed2b-9bfc-4b4f-a95f-4d896a362632\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"1516246f-3d84-43f5-8899-433c810fc56e\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759a\"}, \"unit_id\": \"1516246f-3d84-43f5-8899-433c810fc56e\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"bb871147-3fbd-414a-8668-86a8e6d11806\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd77599\"}, \"unit_id\": \"bb871147-3fbd-414a-8668-86a8e6d11806\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"496dff85-d163-40ca-9666-31ef4af11b03\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759b\"}, \"unit_id\": \"496dff85-d163-40ca-9666-31ef4af11b03\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"6dbc631f-4990-44d6-8848-53d84910f954\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759c\"}, \"unit_id\": \"6dbc631f-4990-44d6-8848-53d84910f954\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"a140f324-2eca-476d-9212-4f75856b995c\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759d\"}, \"unit_id\": \"a140f324-2eca-476d-9212-4f75856b995c\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"ac0f92f9-ee29-4ea3-9b77-82db5ca8786d\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd775a0\"}, \"unit_id\": \"ac0f92f9-ee29-4ea3-9b77-82db5ca8786d\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"5d832c81-88e6-463c-9011-9405b1760b5f\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759f\"}, \"unit_id\": \"5d832c81-88e6-463c-9011-9405b1760b5f\", \"unit_type_id\": \"rpm\"}]" + encoding: US-ASCII + string: "[{\"updated\": \"2015-08-05T19:59:20Z\", \"repo_id\": \"1\", \"created\": \"2015-08-05T19:59:20Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"6eb97f0b-c856-4b80-b474-f505c69bb0a4\", \"metadata\": {\"build_time\": 1308257466, \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"vendor\": null, \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"size\": 2244, \"group\": \"Internet/Applications\", \"_ns\": \"units_rpm\", \"base_url\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"relative_url_path\": null, \"epoch\": \"0\", \"version\": \"0.3\", \"version_sort_index\": \"01-0.01-3\", \"provides\": [{\"release\": \"0.8\", \"epoch\": \"0\", \"version\": \"0.3\", \"flags\": \"EQ\", \"name\": \"elephant\"}], \"files\": {\"file\": [\"//elephant.txt\"], \"dir\": []}, \"repodata\": {\"filelists\": \"\\n \\n\\n //elephant.txt\\n\\n\\n\", \"other\": \"\\n \\n\\n\\n\\n\", \"primary\": \"\\n elephant\\n noarch\\n \\n 3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\\n A dummy package of elephant\\n A dummy package of elephant\\n \\n http://tstrachota.fedorapeople.org\\n \\n\"}, \"description\": \"A dummy package of elephant\", \"_last_updated\": 1438804760, \"time\": 1321891027, \"header_range\": {\"start\": 280, \"end\": 2028}, \"arch\": \"noarch\", \"checksumtype\": \"sha256\", \"_storage_path\": \"/var/lib/pulp/content/rpm/elephant/0.3/0.8/noarch/3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3/elephant-0.3-0.8.noarch.rpm\", \"sourcerpm\": \"elephant-0.3-0.8.src.rpm\", \"name\": \"elephant\", \"license\": \"GPLv2\", \"changelog\": [], \"url\": \"http://tstrachota.fedorapeople.org\", \"release_sort_index\": \"01-0.01-8\", \"summary\": \"A dummy package of elephant\", \"relativepath\": \"elephant-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"6eb97f0b-c856-4b80-b474-f505c69bb0a4\", \"requires\": [{\"release\": null, \"epoch\": null, \"version\": null, \"flags\": null, \"name\": \"/bin/sh\"}]}, \"unit_type_id\": \"rpm\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"55c26b18115138443de6e9c0\"}, \"id\": \"55c26b18115138443de6e9c0\", \"owner_id\": \"yum_importer\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:36 GMT + recorded_at: Wed, 05 Aug 2015 19:59:22 GMT - request: method: post - uri: https://localhost/pulp/api/v2/content/units/rpm/search/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/search/units/ body: encoding: US-ASCII - string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"a8ffed2b-9bfc-4b4f-a95f-4d896a362632\",\"1516246f-3d84-43f5-8899-433c810fc56e\",\"bb871147-3fbd-414a-8668-86a8e6d11806\",\"496dff85-d163-40ca-9666-31ef4af11b03\",\"6dbc631f-4990-44d6-8848-53d84910f954\",\"a140f324-2eca-476d-9212-4f75856b995c\",\"ac0f92f9-ee29-4ea3-9b77-82db5ca8786d\",\"5d832c81-88e6-463c-9011-9405b1760b5f\"]}},\"fields\":[\"name\",\"version\",\"release\",\"arch\",\"suffix\",\"epoch\",\"download_url\",\"checksum\",\"checksumtype\",\"license\",\"group\",\"children\",\"vendor\",\"filename\",\"relativepath\",\"description\",\"size\",\"buildhost\",\"_id\",\"_content_type_id\",\"_href\",\"_storage_path\",\"_type\",\"_last_updated\"]},\"include_repos\":true}" + string: "{\"criteria\":{\"type_ids\":[\"erratum\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]}}}" headers: Accept: - application/json @@ -610,11 +1008,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="IweRtAcqaUzOQ3bilumsJDclRZ6BTbFf5gteAdno", oauth_signature="HCcrjr7DQ%2F0sS64lobXwHiME1XI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687796", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="8eMoRpZcQJRGQCG2amBfzh4psgegervAv6dc0G6HeH8", oauth_signature="0QI6Ow%2B7e1c5oFuu8DuQioNRi0s%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804762", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "648" + - "84" User-Agent: - Ruby response: @@ -623,28 +1021,26 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:36 GMT + - Wed, 05 Aug 2015 19:59:22 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "6914" + - "651" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "[{\"_href\": \"/pulp/api/v2/content/units/rpm/1516246f-3d84-43f5-8899-433c810fc56e/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2244, \"group\": \"Internet/Applications\", \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of elephant\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"elephant\", \"_storage_path\": \"/var/lib/pulp/content/rpm/elephant/0.3/0.8/noarch/3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3/elephant-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"relativepath\": \"elephant-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"1516246f-3d84-43f5-8899-433c810fc56e\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/496dff85-d163-40ca-9666-31ef4af11b03/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2212, \"group\": \"Internet/Applications\", \"filename\": \"lion-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of lion\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"lion\", \"_storage_path\": \"/var/lib/pulp/content/rpm/lion/0.3/0.8/noarch/12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4/lion-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"relativepath\": \"lion-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"496dff85-d163-40ca-9666-31ef4af11b03\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/5d832c81-88e6-463c-9011-9405b1760b5f/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2236, \"group\": \"Internet/Applications\", \"filename\": \"walrus-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of walrus\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"walrus\", \"_storage_path\": \"/var/lib/pulp/content/rpm/walrus/0.3/0.8/noarch/6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd/walrus-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"relativepath\": \"walrus-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"5d832c81-88e6-463c-9011-9405b1760b5f\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/6dbc631f-4990-44d6-8848-53d84910f954/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2232, \"group\": \"Internet/Applications\", \"filename\": \"monkey-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of monkey\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"monkey\", \"_storage_path\": \"/var/lib/pulp/content/rpm/monkey/0.3/0.8/noarch/0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1/monkey-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"relativepath\": \"monkey-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"6dbc631f-4990-44d6-8848-53d84910f954\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/a140f324-2eca-476d-9212-4f75856b995c/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2232, \"group\": \"Internet/Applications\", \"filename\": \"penguin-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\", \"Default_Organization-el5_product-5Server\"], \"vendor\": null, \"description\": \"A dummy package of penguin\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"penguin\", \"_storage_path\": \"/var/lib/pulp/content/rpm/penguin/0.3/0.8/noarch/3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694/penguin-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"relativepath\": \"penguin-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"a140f324-2eca-476d-9212-4f75856b995c\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/a8ffed2b-9bfc-4b4f-a95f-4d896a362632/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2232, \"group\": \"Internet/Applications\", \"filename\": \"cheetah-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of cheetah\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"cheetah\", \"_storage_path\": \"/var/lib/pulp/content/rpm/cheetah/0.3/0.8/noarch/422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae/cheetah-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"relativepath\": \"cheetah-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"a8ffed2b-9bfc-4b4f-a95f-4d896a362632\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/ac0f92f9-ee29-4ea3-9b77-82db5ca8786d/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2248, \"group\": \"Internet/Applications\", \"filename\": \"squirrel-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of squirrel\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"squirrel\", \"_storage_path\": \"/var/lib/pulp/content/rpm/squirrel/0.3/0.8/noarch/251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2/squirrel-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"relativepath\": \"squirrel-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"ac0f92f9-ee29-4ea3-9b77-82db5ca8786d\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/bb871147-3fbd-414a-8668-86a8e6d11806/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2236, \"group\": \"Internet/Applications\", \"filename\": \"giraffe-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of giraffe\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"giraffe\", \"_storage_path\": \"/var/lib/pulp/content/rpm/giraffe/0.3/0.8/noarch/f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14/giraffe-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"relativepath\": \"giraffe-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"bb871147-3fbd-414a-8668-86a8e6d11806\"}]" + encoding: US-ASCII + string: "[{\"metadata\": {\"_id\": \"2e54bfe9-6eea-446f-aa9a-dfe32f2f4a00\", \"_content_type_id\": \"erratum\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9c5\"}, \"unit_id\": \"2e54bfe9-6eea-446f-aa9a-dfe32f2f4a00\", \"unit_type_id\": \"erratum\"}, {\"metadata\": {\"_id\": \"d0e0125c-63f2-4746-a046-36bffc5bc746\", \"_content_type_id\": \"erratum\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9c7\"}, \"unit_id\": \"d0e0125c-63f2-4746-a046-36bffc5bc746\", \"unit_type_id\": \"erratum\"}, {\"metadata\": {\"_id\": \"0ec5867a-e748-4890-95f0-bc836ff70dbb\", \"_content_type_id\": \"erratum\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9c6\"}, \"unit_id\": \"0ec5867a-e748-4890-95f0-bc836ff70dbb\", \"unit_type_id\": \"erratum\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:36 GMT + recorded_at: Wed, 05 Aug 2015 19:59:22 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/1/search/units/ + uri: https://katello-devel1.example.com/pulp/api/v2/content/units/erratum/search/ body: encoding: US-ASCII - string: "{\"criteria\":{\"type_ids\":[\"rpm\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]}}}" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"2e54bfe9-6eea-446f-aa9a-dfe32f2f4a00\",\"d0e0125c-63f2-4746-a046-36bffc5bc746\",\"0ec5867a-e748-4890-95f0-bc836ff70dbb\"]}}},\"include_repos\":true}" headers: Accept: - application/json @@ -653,11 +1049,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="1gUcp5Deu8ZgUGmXCA4wydNGgtkIJ3sLC3nZu8DPFg", oauth_signature="MW3ZGEcGVdmHyaZDFy1YeN%2FD4Ow%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687796", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="jWt2u5RZTdIQKE6QufY0LGLtKJQHb8pITp2oYRMj4Fc", oauth_signature="tCrjgr1NdIVRiSjjO0rHLQKiijo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804762", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "80" + - "180" User-Agent: - Ruby response: @@ -666,25 +1062,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:36 GMT + - Wed, 05 Aug 2015 19:59:22 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "1672" + - "4667" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "[{\"metadata\": {\"_id\": \"a8ffed2b-9bfc-4b4f-a95f-4d896a362632\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759e\"}, \"unit_id\": \"a8ffed2b-9bfc-4b4f-a95f-4d896a362632\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"1516246f-3d84-43f5-8899-433c810fc56e\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759a\"}, \"unit_id\": \"1516246f-3d84-43f5-8899-433c810fc56e\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"bb871147-3fbd-414a-8668-86a8e6d11806\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd77599\"}, \"unit_id\": \"bb871147-3fbd-414a-8668-86a8e6d11806\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"496dff85-d163-40ca-9666-31ef4af11b03\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759b\"}, \"unit_id\": \"496dff85-d163-40ca-9666-31ef4af11b03\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"6dbc631f-4990-44d6-8848-53d84910f954\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759c\"}, \"unit_id\": \"6dbc631f-4990-44d6-8848-53d84910f954\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"a140f324-2eca-476d-9212-4f75856b995c\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759d\"}, \"unit_id\": \"a140f324-2eca-476d-9212-4f75856b995c\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"ac0f92f9-ee29-4ea3-9b77-82db5ca8786d\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd775a0\"}, \"unit_id\": \"ac0f92f9-ee29-4ea3-9b77-82db5ca8786d\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"5d832c81-88e6-463c-9011-9405b1760b5f\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759f\"}, \"unit_id\": \"5d832c81-88e6-463c-9011-9405b1760b5f\", \"unit_type_id\": \"rpm\"}]" + encoding: US-ASCII + string: "[{\"repository_memberships\": [\"1\"], \"_href\": \"/pulp/api/v2/content/units/erratum/0ec5867a-e748-4890-95f0-bc836ff70dbb/\", \"issued\": \"2010-11-10 00:00:00\", \"references\": [{\"href\": \"https://rhn.redhat.com/errata/RHSA-2010-0858.html\", \"type\": \"self\", \"id\": null, \"title\": null}, {\"href\": \"https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=627882\", \"type\": \"bugzilla\", \"id\": \"627882\", \"title\": null}, {\"href\": \"https://www.redhat.com/security/data/cve/CVE-2010-0405.html\", \"type\": \"cve\", \"id\": \"CVE-2010-0405\", \"title\": null}, {\"href\": \"http://www.redhat.com/security/updates/classification/#important\", \"type\": \"other\", \"id\": null, \"title\": null}], \"_content_type_id\": \"erratum\", \"id\": \"RHSA-2010:0858\", \"from\": \"security@redhat.com\", \"severity\": \"Important\", \"title\": \"Important: bzip2 security update\", \"children\": {}, \"version\": \"3\", \"reboot_suggested\": false, \"type\": \"security\", \"pkglist\": [{\"packages\": [{\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-devel\", \"sum\": [\"sha256\", \"ea67c664da1ff96a6dc94d33009b73d8fab31b59824183fb45e9ba2ebf82d583\"], \"filename\": \"bzip2-devel-1.0.5-7.el6_0.i686.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"i686\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-libs\", \"sum\": [\"sha256\", \"c9f064a6862573fb9f2a6aff7c3621f1940b492df2edfc2ebbdc0b8305f51147\"], \"filename\": \"bzip2-libs-1.0.5-7.el6_0.i686.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"i686\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2\", \"sum\": [\"sha256\", \"b8a3f72bc2b0d89ba737099ac98bf8d2af4bea02d31884c02db97f7f66c3d5c2\"], \"filename\": \"bzip2-1.0.5-7.el6_0.x86_64.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"x86_64\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-devel\", \"sum\": [\"sha256\", \"7f63124e4655b7c92d23ec4c38226f5d3746568853dff750fc85e058e74b5cf6\"], \"filename\": \"bzip2-devel-1.0.5-7.el6_0.x86_64.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"x86_64\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-libs\", \"sum\": [\"sha256\", \"802f4399dbdd01476e254c3b32c40aff59cf5d23a45fa488c6917ce8904d6b4d\"], \"filename\": \"bzip2-libs-1.0.5-7.el6_0.x86_64.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"x86_64\"}], \"name\": \"Red Hat Enterprise Linux Server (v. 6 for 64-bit x86_64)\", \"short\": \"rhel-x86_64-server-6\"}], \"status\": \"final\", \"updated\": \"2010-11-10 00:00:00\", \"description\": \"bzip2 is a freely available, high-quality data compressor. It provides both\\nlibbz2 library must be restarted for the update to take effect.\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"pushcount\": \"\", \"_storage_path\": null, \"rights\": \"Copyright 2010 Red Hat Inc\", \"solution\": \"Before applying this update, make sure all previously-released errata\\nrelevant to your system have been applied.\\n\\nThis update is available via the Red Hat Network. Details on how to\\nuse the Red Hat Network to apply this update are available at\\nhttp://kbase.redhat.com/faq/docs/DOC-11259\", \"summary\": \"Updated bzip2 packages that fix one security issue\", \"release\": \"\", \"_id\": \"0ec5867a-e748-4890-95f0-bc836ff70dbb\"}, {\"repository_memberships\": [\"1\"], \"_href\": \"/pulp/api/v2/content/units/erratum/2e54bfe9-6eea-446f-aa9a-dfe32f2f4a00/\", \"issued\": \"2010-01-01 01:01:01\", \"references\": [], \"_content_type_id\": \"erratum\", \"id\": \"RHEA-2010:0001\", \"from\": \"lzap+pub@redhat.com\", \"severity\": \"\", \"title\": \"Empty errata\", \"children\": {}, \"version\": \"1\", \"reboot_suggested\": false, \"type\": \"security\", \"pkglist\": [], \"status\": \"stable\", \"updated\": \"\", \"description\": \"Empty errata\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"pushcount\": \"\", \"_storage_path\": null, \"rights\": \"\", \"solution\": \"\", \"summary\": \"\", \"release\": \"1\", \"_id\": \"2e54bfe9-6eea-446f-aa9a-dfe32f2f4a00\"}, {\"repository_memberships\": [\"1\"], \"_href\": \"/pulp/api/v2/content/units/erratum/d0e0125c-63f2-4746-a046-36bffc5bc746/\", \"issued\": \"2010-01-01 01:01:01\", \"references\": [], \"_content_type_id\": \"erratum\", \"id\": \"RHEA-2010:0002\", \"from\": \"lzap+pub@redhat.com\", \"severity\": \"\", \"title\": \"One package errata\", \"children\": {}, \"version\": \"1\", \"reboot_suggested\": false, \"type\": \"security\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"status\": \"stable\", \"updated\": \"\", \"description\": \"One package errata\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"pushcount\": \"\", \"_storage_path\": null, \"rights\": \"\", \"solution\": \"\", \"summary\": \"\", \"release\": \"1\", \"_id\": \"d0e0125c-63f2-4746-a046-36bffc5bc746\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:36 GMT + recorded_at: Wed, 05 Aug 2015 19:59:22 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/1/search/units/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/search/units/ body: encoding: US-ASCII string: "{\"criteria\":{\"type_ids\":[\"erratum\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]}}}" @@ -696,7 +1090,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="pZRe2tuJitZjeXD6tcoJVvmrsLCRfXb50k66EXMk", oauth_signature="Z5HhxW1CImxYF7o2RsKei3wx3tA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687796", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="WZ76aN1o4qWEBlWWVCkt5Xl9uEVkRslXKGyA6HI1pSM", oauth_signature="d%2BHGpKYJW4ZWnes2ogBQMwSJXN8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804762", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -709,11 +1103,9 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:37 GMT + - Wed, 05 Aug 2015 19:59:22 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - "651" Connection: @@ -721,16 +1113,16 @@ http_interactions: Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "[{\"metadata\": {\"_id\": \"c9263100-a07f-47c5-93b6-bc4b61df0d07\", \"_content_type_id\": \"erratum\"}, \"_id\": {\"$oid\": \"5433e7b15ca013067bd775a3\"}, \"unit_id\": \"c9263100-a07f-47c5-93b6-bc4b61df0d07\", \"unit_type_id\": \"erratum\"}, {\"metadata\": {\"_id\": \"c1d19db2-9317-4851-97e6-e406341867ed\", \"_content_type_id\": \"erratum\"}, \"_id\": {\"$oid\": \"5433e7b15ca013067bd775a5\"}, \"unit_id\": \"c1d19db2-9317-4851-97e6-e406341867ed\", \"unit_type_id\": \"erratum\"}, {\"metadata\": {\"_id\": \"5c627ea3-7555-45a1-bb90-61daf932d4b4\", \"_content_type_id\": \"erratum\"}, \"_id\": {\"$oid\": \"5433e7b15ca013067bd775a4\"}, \"unit_id\": \"5c627ea3-7555-45a1-bb90-61daf932d4b4\", \"unit_type_id\": \"erratum\"}]" + encoding: US-ASCII + string: "[{\"metadata\": {\"_id\": \"2e54bfe9-6eea-446f-aa9a-dfe32f2f4a00\", \"_content_type_id\": \"erratum\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9c5\"}, \"unit_id\": \"2e54bfe9-6eea-446f-aa9a-dfe32f2f4a00\", \"unit_type_id\": \"erratum\"}, {\"metadata\": {\"_id\": \"d0e0125c-63f2-4746-a046-36bffc5bc746\", \"_content_type_id\": \"erratum\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9c7\"}, \"unit_id\": \"d0e0125c-63f2-4746-a046-36bffc5bc746\", \"unit_type_id\": \"erratum\"}, {\"metadata\": {\"_id\": \"0ec5867a-e748-4890-95f0-bc836ff70dbb\", \"_content_type_id\": \"erratum\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9c6\"}, \"unit_id\": \"0ec5867a-e748-4890-95f0-bc836ff70dbb\", \"unit_type_id\": \"erratum\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:37 GMT + recorded_at: Wed, 05 Aug 2015 19:59:22 GMT - request: method: post - uri: https://localhost/pulp/api/v2/content/units/erratum/search/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/search/units/ body: encoding: US-ASCII - string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"c9263100-a07f-47c5-93b6-bc4b61df0d07\",\"c1d19db2-9317-4851-97e6-e406341867ed\",\"5c627ea3-7555-45a1-bb90-61daf932d4b4\"]}}},\"include_repos\":true}" + string: "{\"criteria\":{\"type_ids\":[\"rpm\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]}}}" headers: Accept: - application/json @@ -739,11 +1131,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="0r3A3474U342rxj3YscxpGpEISNmKj2Q145pwUUXm0", oauth_signature="yTdIvnqPFgy%2FHz3XeZ%2BsAW6r%2FcY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687797", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="K9m8jNKdNtKiDlBcDtmrJs92z2GWrdznfzS7PZndYI", oauth_signature="Op6j1%2FhpogMahFa4GxHvojCYd%2BA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804762", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "180" + - "80" User-Agent: - Ruby response: @@ -752,28 +1144,26 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:37 GMT + - Wed, 05 Aug 2015 19:59:22 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "4701" + - "1672" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "[{\"repository_memberships\": [\"1\", \"Default_Organization-el6-el6_2\"], \"_href\": \"/pulp/api/v2/content/units/erratum/5c627ea3-7555-45a1-bb90-61daf932d4b4/\", \"issued\": \"2010-11-10 00:00:00\", \"references\": [{\"href\": \"https://rhn.redhat.com/errata/RHSA-2010-0858.html\", \"type\": \"self\", \"id\": null, \"title\": null}, {\"href\": \"https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=627882\", \"type\": \"bugzilla\", \"id\": \"627882\", \"title\": null}, {\"href\": \"https://www.redhat.com/security/data/cve/CVE-2010-0405.html\", \"type\": \"cve\", \"id\": \"CVE-2010-0405\", \"title\": null}, {\"href\": \"http://www.redhat.com/security/updates/classification/#important\", \"type\": \"other\", \"id\": null, \"title\": null}], \"_content_type_id\": \"erratum\", \"id\": \"RHSA-2010:0858\", \"from\": \"security@redhat.com\", \"severity\": \"Important\", \"title\": \"Important: bzip2 security update\", \"children\": {}, \"version\": \"3\", \"reboot_suggested\": false, \"type\": \"security\", \"pkglist\": [{\"packages\": [{\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-devel\", \"sum\": [\"sha256\", \"ea67c664da1ff96a6dc94d33009b73d8fab31b59824183fb45e9ba2ebf82d583\"], \"filename\": \"bzip2-devel-1.0.5-7.el6_0.i686.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"i686\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-libs\", \"sum\": [\"sha256\", \"c9f064a6862573fb9f2a6aff7c3621f1940b492df2edfc2ebbdc0b8305f51147\"], \"filename\": \"bzip2-libs-1.0.5-7.el6_0.i686.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"i686\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2\", \"sum\": [\"sha256\", \"b8a3f72bc2b0d89ba737099ac98bf8d2af4bea02d31884c02db97f7f66c3d5c2\"], \"filename\": \"bzip2-1.0.5-7.el6_0.x86_64.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"x86_64\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-devel\", \"sum\": [\"sha256\", \"7f63124e4655b7c92d23ec4c38226f5d3746568853dff750fc85e058e74b5cf6\"], \"filename\": \"bzip2-devel-1.0.5-7.el6_0.x86_64.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"x86_64\"}, {\"src\": \"bzip2-1.0.5-7.el6_0.src.rpm\", \"name\": \"bzip2-libs\", \"sum\": [\"sha256\", \"802f4399dbdd01476e254c3b32c40aff59cf5d23a45fa488c6917ce8904d6b4d\"], \"filename\": \"bzip2-libs-1.0.5-7.el6_0.x86_64.rpm\", \"epoch\": \"0\", \"version\": \"1.0.5\", \"release\": \"7.el6_0\", \"arch\": \"x86_64\"}], \"name\": \"Red Hat Enterprise Linux Server (v. 6 for 64-bit x86_64)\", \"short\": \"rhel-x86_64-server-6\"}], \"status\": \"final\", \"updated\": \"2010-11-10 00:00:00\", \"description\": \"bzip2 is a freely available, high-quality data compressor. It provides both\\nlibbz2 library must be restarted for the update to take effect.\", \"_last_updated\": \"2014-10-07T13:16:33Z\", \"pushcount\": \"\", \"_storage_path\": null, \"rights\": \"Copyright 2010 Red Hat Inc\", \"solution\": \"Before applying this update, make sure all previously-released errata\\nrelevant to your system have been applied.\\n\\nThis update is available via the Red Hat Network. Details on how to\\nuse the Red Hat Network to apply this update are available at\\nhttp://kbase.redhat.com/faq/docs/DOC-11259\", \"summary\": \"Updated bzip2 packages that fix one security issue\", \"release\": \"\", \"_id\": \"5c627ea3-7555-45a1-bb90-61daf932d4b4\"}, {\"repository_memberships\": [\"1\"], \"_href\": \"/pulp/api/v2/content/units/erratum/c1d19db2-9317-4851-97e6-e406341867ed/\", \"issued\": \"2010-01-01 01:01:01\", \"references\": [], \"_content_type_id\": \"erratum\", \"id\": \"RHEA-2010:0002\", \"from\": \"lzap+pub@redhat.com\", \"severity\": \"\", \"title\": \"One package errata\", \"children\": {}, \"version\": \"1\", \"reboot_suggested\": false, \"type\": \"security\", \"pkglist\": [{\"packages\": [{\"src\": \"http://www.fedoraproject.org\", \"name\": \"elephant\", \"sum\": null, \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": null, \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\"}], \"name\": \"1\", \"short\": \"\"}], \"status\": \"stable\", \"updated\": \"\", \"description\": \"One package errata\", \"_last_updated\": \"2014-10-07T13:16:33Z\", \"pushcount\": \"\", \"_storage_path\": null, \"rights\": \"\", \"solution\": \"\", \"summary\": \"\", \"release\": \"1\", \"_id\": \"c1d19db2-9317-4851-97e6-e406341867ed\"}, {\"repository_memberships\": [\"1\"], \"_href\": \"/pulp/api/v2/content/units/erratum/c9263100-a07f-47c5-93b6-bc4b61df0d07/\", \"issued\": \"2010-01-01 01:01:01\", \"references\": [], \"_content_type_id\": \"erratum\", \"id\": \"RHEA-2010:0001\", \"from\": \"lzap+pub@redhat.com\", \"severity\": \"\", \"title\": \"Empty errata\", \"children\": {}, \"version\": \"1\", \"reboot_suggested\": false, \"type\": \"security\", \"pkglist\": [], \"status\": \"stable\", \"updated\": \"\", \"description\": \"Empty errata\", \"_last_updated\": \"2014-10-07T13:16:33Z\", \"pushcount\": \"\", \"_storage_path\": null, \"rights\": \"\", \"solution\": \"\", \"summary\": \"\", \"release\": \"1\", \"_id\": \"c9263100-a07f-47c5-93b6-bc4b61df0d07\"}]" + encoding: US-ASCII + string: "[{\"metadata\": {\"_id\": \"c09f0422-e16f-4db5-a453-a7cc481c9e5b\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9bf\"}, \"unit_id\": \"c09f0422-e16f-4db5-a453-a7cc481c9e5b\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"6eb97f0b-c856-4b80-b474-f505c69bb0a4\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9c0\"}, \"unit_id\": \"6eb97f0b-c856-4b80-b474-f505c69bb0a4\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"55c45cd9-b36f-4b2c-bfdd-1a7c2ae81b00\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9c2\"}, \"unit_id\": \"55c45cd9-b36f-4b2c-bfdd-1a7c2ae81b00\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"dda1db54-15a9-4397-b3a3-51907d1949e7\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9c1\"}, \"unit_id\": \"dda1db54-15a9-4397-b3a3-51907d1949e7\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"ced87e02-cb98-4024-ad7d-001349b5cbaa\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9bb\"}, \"unit_id\": \"ced87e02-cb98-4024-ad7d-001349b5cbaa\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"3065c70e-78c6-48d7-83ac-3fd8ce4d7023\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9bd\"}, \"unit_id\": \"3065c70e-78c6-48d7-83ac-3fd8ce4d7023\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"5b51119f-adc1-4314-a499-fca067016316\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9be\"}, \"unit_id\": \"5b51119f-adc1-4314-a499-fca067016316\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"5d45b740-6c69-40c7-a44a-171d60a6bf8c\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9bc\"}, \"unit_id\": \"5d45b740-6c69-40c7-a44a-171d60a6bf8c\", \"unit_type_id\": \"rpm\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:37 GMT + recorded_at: Wed, 05 Aug 2015 19:59:22 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/1/search/units/ + uri: https://katello-devel1.example.com/pulp/api/v2/content/units/rpm/search/ body: encoding: US-ASCII - string: "{\"criteria\":{\"type_ids\":[\"erratum\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]}}}" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"c09f0422-e16f-4db5-a453-a7cc481c9e5b\",\"6eb97f0b-c856-4b80-b474-f505c69bb0a4\",\"55c45cd9-b36f-4b2c-bfdd-1a7c2ae81b00\",\"dda1db54-15a9-4397-b3a3-51907d1949e7\",\"ced87e02-cb98-4024-ad7d-001349b5cbaa\",\"3065c70e-78c6-48d7-83ac-3fd8ce4d7023\",\"5b51119f-adc1-4314-a499-fca067016316\",\"5d45b740-6c69-40c7-a44a-171d60a6bf8c\"]}},\"fields\":[\"name\",\"version\",\"release\",\"arch\",\"suffix\",\"epoch\",\"download_url\",\"checksum\",\"checksumtype\",\"license\",\"group\",\"children\",\"vendor\",\"filename\",\"relativepath\",\"description\",\"size\",\"buildhost\",\"_id\",\"_content_type_id\",\"_href\",\"_storage_path\",\"_type\",\"_last_updated\"]},\"include_repos\":true}" headers: Accept: - application/json @@ -782,11 +1172,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="9qZX60x02X4Y2SZMQFCxcPtVZii3tbfnf30hx8Aq2JQ", oauth_signature="adVoadxm1xTUIypC%2Be%2BpqvZSnpk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687797", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="9cstYInZwKtxaElJjHURJOjXfzDmQIdkNXy8BUVjGY", oauth_signature="I%2F0dRzlEp9bwy3QIChvSeQCZydw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804762", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "84" + - "648" User-Agent: - Ruby response: @@ -795,28 +1185,26 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:37 GMT + - Wed, 05 Aug 2015 19:59:22 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "651" + - "6870" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "[{\"metadata\": {\"_id\": \"c9263100-a07f-47c5-93b6-bc4b61df0d07\", \"_content_type_id\": \"erratum\"}, \"_id\": {\"$oid\": \"5433e7b15ca013067bd775a3\"}, \"unit_id\": \"c9263100-a07f-47c5-93b6-bc4b61df0d07\", \"unit_type_id\": \"erratum\"}, {\"metadata\": {\"_id\": \"c1d19db2-9317-4851-97e6-e406341867ed\", \"_content_type_id\": \"erratum\"}, \"_id\": {\"$oid\": \"5433e7b15ca013067bd775a5\"}, \"unit_id\": \"c1d19db2-9317-4851-97e6-e406341867ed\", \"unit_type_id\": \"erratum\"}, {\"metadata\": {\"_id\": \"5c627ea3-7555-45a1-bb90-61daf932d4b4\", \"_content_type_id\": \"erratum\"}, \"_id\": {\"$oid\": \"5433e7b15ca013067bd775a4\"}, \"unit_id\": \"5c627ea3-7555-45a1-bb90-61daf932d4b4\", \"unit_type_id\": \"erratum\"}]" + encoding: US-ASCII + string: "[{\"_href\": \"/pulp/api/v2/content/units/rpm/3065c70e-78c6-48d7-83ac-3fd8ce4d7023/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2232, \"group\": \"Internet/Applications\", \"filename\": \"penguin-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of penguin\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\", \"_storage_path\": \"/var/lib/pulp/content/rpm/penguin/0.3/0.8/noarch/3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694/penguin-0.3-0.8.noarch.rpm\", \"name\": \"penguin\", \"license\": \"GPLv2\", \"relativepath\": \"penguin-0.3-0.8.noarch.rpm\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"release\": \"0.8\", \"_id\": \"3065c70e-78c6-48d7-83ac-3fd8ce4d7023\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/55c45cd9-b36f-4b2c-bfdd-1a7c2ae81b00/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2236, \"group\": \"Internet/Applications\", \"filename\": \"giraffe-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of giraffe\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\", \"_storage_path\": \"/var/lib/pulp/content/rpm/giraffe/0.3/0.8/noarch/f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14/giraffe-0.3-0.8.noarch.rpm\", \"name\": \"giraffe\", \"license\": \"GPLv2\", \"relativepath\": \"giraffe-0.3-0.8.noarch.rpm\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"release\": \"0.8\", \"_id\": \"55c45cd9-b36f-4b2c-bfdd-1a7c2ae81b00\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/5b51119f-adc1-4314-a499-fca067016316/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2248, \"group\": \"Internet/Applications\", \"filename\": \"squirrel-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of squirrel\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\", \"_storage_path\": \"/var/lib/pulp/content/rpm/squirrel/0.3/0.8/noarch/251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2/squirrel-0.3-0.8.noarch.rpm\", \"name\": \"squirrel\", \"license\": \"GPLv2\", \"relativepath\": \"squirrel-0.3-0.8.noarch.rpm\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"release\": \"0.8\", \"_id\": \"5b51119f-adc1-4314-a499-fca067016316\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/5d45b740-6c69-40c7-a44a-171d60a6bf8c/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2236, \"group\": \"Internet/Applications\", \"filename\": \"walrus-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of walrus\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\", \"_storage_path\": \"/var/lib/pulp/content/rpm/walrus/0.3/0.8/noarch/6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd/walrus-0.3-0.8.noarch.rpm\", \"name\": \"walrus\", \"license\": \"GPLv2\", \"relativepath\": \"walrus-0.3-0.8.noarch.rpm\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"release\": \"0.8\", \"_id\": \"5d45b740-6c69-40c7-a44a-171d60a6bf8c\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/6eb97f0b-c856-4b80-b474-f505c69bb0a4/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2244, \"group\": \"Internet/Applications\", \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of elephant\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\", \"_storage_path\": \"/var/lib/pulp/content/rpm/elephant/0.3/0.8/noarch/3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3/elephant-0.3-0.8.noarch.rpm\", \"name\": \"elephant\", \"license\": \"GPLv2\", \"relativepath\": \"elephant-0.3-0.8.noarch.rpm\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"release\": \"0.8\", \"_id\": \"6eb97f0b-c856-4b80-b474-f505c69bb0a4\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/c09f0422-e16f-4db5-a453-a7cc481c9e5b/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2232, \"group\": \"Internet/Applications\", \"filename\": \"cheetah-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of cheetah\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\", \"_storage_path\": \"/var/lib/pulp/content/rpm/cheetah/0.3/0.8/noarch/422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae/cheetah-0.3-0.8.noarch.rpm\", \"name\": \"cheetah\", \"license\": \"GPLv2\", \"relativepath\": \"cheetah-0.3-0.8.noarch.rpm\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"release\": \"0.8\", \"_id\": \"c09f0422-e16f-4db5-a453-a7cc481c9e5b\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/ced87e02-cb98-4024-ad7d-001349b5cbaa/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2232, \"group\": \"Internet/Applications\", \"filename\": \"monkey-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of monkey\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\", \"_storage_path\": \"/var/lib/pulp/content/rpm/monkey/0.3/0.8/noarch/0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1/monkey-0.3-0.8.noarch.rpm\", \"name\": \"monkey\", \"license\": \"GPLv2\", \"relativepath\": \"monkey-0.3-0.8.noarch.rpm\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"release\": \"0.8\", \"_id\": \"ced87e02-cb98-4024-ad7d-001349b5cbaa\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/dda1db54-15a9-4397-b3a3-51907d1949e7/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2212, \"group\": \"Internet/Applications\", \"filename\": \"lion-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of lion\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\", \"_storage_path\": \"/var/lib/pulp/content/rpm/lion/0.3/0.8/noarch/12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4/lion-0.3-0.8.noarch.rpm\", \"name\": \"lion\", \"license\": \"GPLv2\", \"relativepath\": \"lion-0.3-0.8.noarch.rpm\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"release\": \"0.8\", \"_id\": \"dda1db54-15a9-4397-b3a3-51907d1949e7\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:37 GMT + recorded_at: Wed, 05 Aug 2015 19:59:23 GMT - request: - method: get - uri: https://localhost/pulp/api/v2/repositories/1/?details=true + method: post + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/search/units/ body: encoding: US-ASCII - string: "" + string: "{\"criteria\":{\"type_ids\":[\"rpm\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]}}}" headers: Accept: - application/json @@ -825,9 +1213,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="wBrnyWY196M0W9ZGlK3nEfYbS4Zzha18zcPWVtK2Z30", oauth_signature="IoyaJK4YbKWt1kSPQDt4f%2FkEqn4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687797", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="bZx3ZU3Y6DqtLkqsxr9YPq0IIjS0GpzKr1D5mWL0", oauth_signature="ZWzPgWPRudVHuZWgd9Ch4LCYr8w%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804763", oauth_version="1.0" Pulp-User: - admin + Content-Length: + - "80" User-Agent: - Ruby response: @@ -836,25 +1226,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:37 GMT + - Wed, 05 Aug 2015 19:59:23 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "1556" + - "1672" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"scratchpad\": {\"checksum_type\": \"sha256\"}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"distributors\": [{\"repo_id\": \"1\", \"_ns\": \"repo_distributors\", \"last_publish\": \"2014-10-07T09:16:34-04:00\", \"auto_publish\": true, \"scheduled_publishes\": [], \"distributor_type_id\": \"nodes_http_distributor\", \"_id\": {\"$oid\": \"5433e7b05ca0134a6f279425\"}, \"config\": {}, \"id\": \"1_nodes\"}, {\"repo_id\": \"1\", \"_ns\": \"repo_distributors\", \"last_publish\": null, \"auto_publish\": false, \"scheduled_publishes\": [], \"distributor_type_id\": \"yum_clone_distributor\", \"_id\": {\"$oid\": \"5433e7b05ca0134a6f279424\"}, \"config\": {\"destination_distributor_id\": \"1\"}, \"id\": \"1_clone\"}, {\"repo_id\": \"1\", \"_ns\": \"repo_distributors\", \"last_publish\": \"2014-10-07T09:16:34-04:00\", \"auto_publish\": true, \"scheduled_publishes\": [], \"distributor_type_id\": \"yum_distributor\", \"_id\": {\"$oid\": \"5433e7b05ca0134a6f279423\"}, \"config\": {\"checksum_type\": \"sha256\", \"protected\": true, \"http\": false, \"https\": true, \"relative_url\": \"/test_path/\"}, \"id\": \"1\"}], \"_ns\": \"repos\", \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"content_unit_counts\": {\"package_group\": 2, \"distribution\": 1, \"package_category\": 1, \"rpm\": 8, \"erratum\": 3}, \"importers\": [{\"repo_id\": \"1\", \"_ns\": \"repo_importers\", \"importer_type_id\": \"yum_importer\", \"last_sync\": \"2014-10-07T09:16:33-04:00\", \"scheduled_syncs\": [], \"_id\": {\"$oid\": \"5433e7b05ca0134a6f279422\"}, \"config\": {\"feed\": \"file:///var/www/test_repos/zoo\"}, \"id\": \"yum_importer\"}], \"_id\": {\"$oid\": \"5433e7b05ca0134a6f279421\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" + encoding: US-ASCII + string: "[{\"metadata\": {\"_id\": \"c09f0422-e16f-4db5-a453-a7cc481c9e5b\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9bf\"}, \"unit_id\": \"c09f0422-e16f-4db5-a453-a7cc481c9e5b\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"6eb97f0b-c856-4b80-b474-f505c69bb0a4\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9c0\"}, \"unit_id\": \"6eb97f0b-c856-4b80-b474-f505c69bb0a4\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"55c45cd9-b36f-4b2c-bfdd-1a7c2ae81b00\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9c2\"}, \"unit_id\": \"55c45cd9-b36f-4b2c-bfdd-1a7c2ae81b00\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"dda1db54-15a9-4397-b3a3-51907d1949e7\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9c1\"}, \"unit_id\": \"dda1db54-15a9-4397-b3a3-51907d1949e7\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"ced87e02-cb98-4024-ad7d-001349b5cbaa\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9bb\"}, \"unit_id\": \"ced87e02-cb98-4024-ad7d-001349b5cbaa\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"3065c70e-78c6-48d7-83ac-3fd8ce4d7023\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9bd\"}, \"unit_id\": \"3065c70e-78c6-48d7-83ac-3fd8ce4d7023\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"5b51119f-adc1-4314-a499-fca067016316\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9be\"}, \"unit_id\": \"5b51119f-adc1-4314-a499-fca067016316\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"5d45b740-6c69-40c7-a44a-171d60a6bf8c\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9bc\"}, \"unit_id\": \"5d45b740-6c69-40c7-a44a-171d60a6bf8c\", \"unit_type_id\": \"rpm\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:37 GMT + recorded_at: Wed, 05 Aug 2015 19:59:23 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/1/search/units/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/search/units/ body: encoding: US-ASCII string: "{\"criteria\":{\"type_ids\":[\"package_category\"]}}" @@ -866,7 +1254,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="ReqkUpe2DnQKk4gCcu6DwXcYcdDQAC5QCNYADRG9M", oauth_signature="YcTj1yehvvV4wFJuUgcVT6wIIRY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687797", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="o0NcjcW2AOgR9aBfvBjzevFpZpxxWCMaGkWzTplGQ", oauth_signature="ruj41dnAfpyCmvapw2RH1%2BzZTe8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804763", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -879,11 +1267,9 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:37 GMT + - Wed, 05 Aug 2015 19:59:23 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - "701" Connection: @@ -891,16 +1277,16 @@ http_interactions: Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "[{\"updated\": \"2014-10-07T13:16:33Z\", \"repo_id\": \"1\", \"created\": \"2014-10-07T13:16:33Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"49718144-e86c-4430-957a-cfb950accf41\", \"metadata\": {\"_storage_path\": null, \"repo_id\": \"1\", \"description\": null, \"_ns\": \"units_package_category\", \"_last_updated\": 1412687793, \"id\": \"all\", \"packagegroupids\": [\"mammal\", \"bird\"], \"translated_description\": {}, \"translated_name\": {}, \"_content_type_id\": \"package_category\", \"_id\": \"49718144-e86c-4430-957a-cfb950accf41\", \"display_order\": 99, \"name\": \"all\"}, \"unit_type_id\": \"package_category\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5433e7b15ca013067bd775a8\"}, \"id\": \"5433e7b15ca013067bd775a8\", \"owner_id\": \"yum_importer\"}]" + encoding: US-ASCII + string: "[{\"updated\": \"2015-08-05T19:59:20Z\", \"repo_id\": \"1\", \"created\": \"2015-08-05T19:59:20Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"7a3c757b-3ba1-4aff-ab01-5fa8cfde6606\", \"metadata\": {\"_storage_path\": null, \"repo_id\": \"1\", \"description\": null, \"_ns\": \"units_package_category\", \"_last_updated\": 1438804760, \"display_order\": 99, \"translated_name\": {}, \"packagegroupids\": [\"mammal\", \"bird\"], \"translated_description\": {}, \"_content_type_id\": \"package_category\", \"_id\": \"7a3c757b-3ba1-4aff-ab01-5fa8cfde6606\", \"id\": \"all\", \"name\": \"all\"}, \"unit_type_id\": \"package_category\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"55c26b18115138443de6e9ca\"}, \"id\": \"55c26b18115138443de6e9ca\", \"owner_id\": \"yum_importer\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:37 GMT + recorded_at: Wed, 05 Aug 2015 19:59:23 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/1/search/units/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/search/units/ body: encoding: US-ASCII - string: "{\"criteria\":{\"type_ids\":[\"package_group\"]}}" + string: "{\"criteria\":{\"type_ids\":[\"rpm\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]}}}" headers: Accept: - application/json @@ -909,11 +1295,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="BgmQVsUqNw0ttbhtqC9L2qqRXo0TMGUGJQzOMTpWBc", oauth_signature="5jyEva%2FREl5Sbv09cK9jUPgKiSY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687797", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="C0eEBHgBoQ5dpOqbgI336DenpasGqjrQkrJaJEz9E", oauth_signature="IvIVIzftAUYPVkOTG3RXUGJ6HpA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804763", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "43" + - "80" User-Agent: - Ruby response: @@ -922,28 +1308,26 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:37 GMT + - Wed, 05 Aug 2015 19:59:23 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "1760" + - "1672" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "[{\"updated\": \"2014-10-07T13:16:33Z\", \"repo_id\": \"1\", \"created\": \"2014-10-07T13:16:33Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"99311aca-f9ad-4d3c-bc86-0db37d83e55d\", \"metadata\": {\"_storage_path\": null, \"mandatory_package_names\": [\"penguin\"], \"repo_id\": \"1\", \"translated_name\": {}, \"description\": null, \"user_visible\": true, \"default\": true, \"_ns\": \"units_package_group\", \"_last_updated\": 1412687793, \"optional_package_names\": [], \"id\": \"bird\", \"translated_description\": {}, \"conditional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"langonly\": null, \"_id\": \"99311aca-f9ad-4d3c-bc86-0db37d83e55d\", \"display_order\": 1024, \"name\": \"bird\"}, \"unit_type_id\": \"package_group\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5433e7b15ca013067bd775a6\"}, \"id\": \"5433e7b15ca013067bd775a6\", \"owner_id\": \"yum_importer\"}, {\"updated\": \"2014-10-07T13:16:33Z\", \"repo_id\": \"1\", \"created\": \"2014-10-07T13:16:33Z\", \"_ns\": \"repo_content_units\", \"unit_id\": \"531809c4-6b70-4c3f-80d8-4e3f13a4596e\", \"metadata\": {\"_storage_path\": null, \"mandatory_package_names\": [\"elephant,giraffe,cheetah,lion,monkey,penguin,squirrel,walrus\", \"penguin\"], \"repo_id\": \"1\", \"translated_name\": {}, \"description\": null, \"user_visible\": true, \"default\": true, \"_ns\": \"units_package_group\", \"_last_updated\": 1412687793, \"optional_package_names\": [], \"id\": \"mammal\", \"translated_description\": {}, \"conditional_package_names\": [], \"default_package_names\": [], \"_content_type_id\": \"package_group\", \"langonly\": null, \"_id\": \"531809c4-6b70-4c3f-80d8-4e3f13a4596e\", \"display_order\": 1024, \"name\": \"mammal\"}, \"unit_type_id\": \"package_group\", \"owner_type\": \"importer\", \"_id\": {\"$oid\": \"5433e7b15ca013067bd775a7\"}, \"id\": \"5433e7b15ca013067bd775a7\", \"owner_id\": \"yum_importer\"}]" + encoding: US-ASCII + string: "[{\"metadata\": {\"_id\": \"c09f0422-e16f-4db5-a453-a7cc481c9e5b\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9bf\"}, \"unit_id\": \"c09f0422-e16f-4db5-a453-a7cc481c9e5b\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"6eb97f0b-c856-4b80-b474-f505c69bb0a4\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9c0\"}, \"unit_id\": \"6eb97f0b-c856-4b80-b474-f505c69bb0a4\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"55c45cd9-b36f-4b2c-bfdd-1a7c2ae81b00\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9c2\"}, \"unit_id\": \"55c45cd9-b36f-4b2c-bfdd-1a7c2ae81b00\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"dda1db54-15a9-4397-b3a3-51907d1949e7\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9c1\"}, \"unit_id\": \"dda1db54-15a9-4397-b3a3-51907d1949e7\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"ced87e02-cb98-4024-ad7d-001349b5cbaa\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9bb\"}, \"unit_id\": \"ced87e02-cb98-4024-ad7d-001349b5cbaa\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"3065c70e-78c6-48d7-83ac-3fd8ce4d7023\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9bd\"}, \"unit_id\": \"3065c70e-78c6-48d7-83ac-3fd8ce4d7023\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"5b51119f-adc1-4314-a499-fca067016316\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9be\"}, \"unit_id\": \"5b51119f-adc1-4314-a499-fca067016316\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"5d45b740-6c69-40c7-a44a-171d60a6bf8c\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"55c26b18115138443de6e9bc\"}, \"unit_id\": \"5d45b740-6c69-40c7-a44a-171d60a6bf8c\", \"unit_type_id\": \"rpm\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:37 GMT + recorded_at: Wed, 05 Aug 2015 19:59:23 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/1/search/units/ + uri: https://katello-devel1.example.com/pulp/api/v2/content/units/rpm/search/ body: encoding: US-ASCII - string: "{\"criteria\":{\"type_ids\":[\"rpm\"],\"fields\":{\"unit\":[],\"association\":[\"unit_id\"]}}}" + string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"c09f0422-e16f-4db5-a453-a7cc481c9e5b\",\"6eb97f0b-c856-4b80-b474-f505c69bb0a4\",\"55c45cd9-b36f-4b2c-bfdd-1a7c2ae81b00\",\"dda1db54-15a9-4397-b3a3-51907d1949e7\",\"ced87e02-cb98-4024-ad7d-001349b5cbaa\",\"3065c70e-78c6-48d7-83ac-3fd8ce4d7023\",\"5b51119f-adc1-4314-a499-fca067016316\",\"5d45b740-6c69-40c7-a44a-171d60a6bf8c\"]}},\"fields\":[\"name\",\"version\",\"release\",\"arch\",\"suffix\",\"epoch\",\"download_url\",\"checksum\",\"checksumtype\",\"license\",\"group\",\"children\",\"vendor\",\"filename\",\"relativepath\",\"description\",\"size\",\"buildhost\",\"_id\",\"_content_type_id\",\"_href\",\"_storage_path\",\"_type\",\"_last_updated\"]},\"include_repos\":true}" headers: Accept: - application/json @@ -952,11 +1336,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="kDtbw98cWOdOK5QF2qRBnThHWf3pxpG7RYBMoXufcc", oauth_signature="jhMHobVe%2BZJod7dIRUKRcfgO1EI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687797", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="hT8UYK7hihk8uyZfjravE9erxg0diSD8p8lkHdnU", oauth_signature="p%2FL3YNjRxenrJoArxCzxCV2Id3U%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804763", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "80" + - "648" User-Agent: - Ruby response: @@ -965,28 +1349,26 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:37 GMT + - Wed, 05 Aug 2015 19:59:23 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "1672" + - "6870" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "[{\"metadata\": {\"_id\": \"a8ffed2b-9bfc-4b4f-a95f-4d896a362632\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759e\"}, \"unit_id\": \"a8ffed2b-9bfc-4b4f-a95f-4d896a362632\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"1516246f-3d84-43f5-8899-433c810fc56e\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759a\"}, \"unit_id\": \"1516246f-3d84-43f5-8899-433c810fc56e\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"bb871147-3fbd-414a-8668-86a8e6d11806\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd77599\"}, \"unit_id\": \"bb871147-3fbd-414a-8668-86a8e6d11806\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"496dff85-d163-40ca-9666-31ef4af11b03\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759b\"}, \"unit_id\": \"496dff85-d163-40ca-9666-31ef4af11b03\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"6dbc631f-4990-44d6-8848-53d84910f954\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759c\"}, \"unit_id\": \"6dbc631f-4990-44d6-8848-53d84910f954\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"a140f324-2eca-476d-9212-4f75856b995c\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759d\"}, \"unit_id\": \"a140f324-2eca-476d-9212-4f75856b995c\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"ac0f92f9-ee29-4ea3-9b77-82db5ca8786d\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd775a0\"}, \"unit_id\": \"ac0f92f9-ee29-4ea3-9b77-82db5ca8786d\", \"unit_type_id\": \"rpm\"}, {\"metadata\": {\"_id\": \"5d832c81-88e6-463c-9011-9405b1760b5f\", \"_content_type_id\": \"rpm\"}, \"_id\": {\"$oid\": \"5433e7b05ca013067bd7759f\"}, \"unit_id\": \"5d832c81-88e6-463c-9011-9405b1760b5f\", \"unit_type_id\": \"rpm\"}]" + encoding: US-ASCII + string: "[{\"_href\": \"/pulp/api/v2/content/units/rpm/3065c70e-78c6-48d7-83ac-3fd8ce4d7023/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2232, \"group\": \"Internet/Applications\", \"filename\": \"penguin-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of penguin\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\", \"_storage_path\": \"/var/lib/pulp/content/rpm/penguin/0.3/0.8/noarch/3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694/penguin-0.3-0.8.noarch.rpm\", \"name\": \"penguin\", \"license\": \"GPLv2\", \"relativepath\": \"penguin-0.3-0.8.noarch.rpm\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"release\": \"0.8\", \"_id\": \"3065c70e-78c6-48d7-83ac-3fd8ce4d7023\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/55c45cd9-b36f-4b2c-bfdd-1a7c2ae81b00/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2236, \"group\": \"Internet/Applications\", \"filename\": \"giraffe-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of giraffe\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\", \"_storage_path\": \"/var/lib/pulp/content/rpm/giraffe/0.3/0.8/noarch/f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14/giraffe-0.3-0.8.noarch.rpm\", \"name\": \"giraffe\", \"license\": \"GPLv2\", \"relativepath\": \"giraffe-0.3-0.8.noarch.rpm\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"release\": \"0.8\", \"_id\": \"55c45cd9-b36f-4b2c-bfdd-1a7c2ae81b00\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/5b51119f-adc1-4314-a499-fca067016316/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2248, \"group\": \"Internet/Applications\", \"filename\": \"squirrel-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of squirrel\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\", \"_storage_path\": \"/var/lib/pulp/content/rpm/squirrel/0.3/0.8/noarch/251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2/squirrel-0.3-0.8.noarch.rpm\", \"name\": \"squirrel\", \"license\": \"GPLv2\", \"relativepath\": \"squirrel-0.3-0.8.noarch.rpm\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"release\": \"0.8\", \"_id\": \"5b51119f-adc1-4314-a499-fca067016316\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/5d45b740-6c69-40c7-a44a-171d60a6bf8c/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2236, \"group\": \"Internet/Applications\", \"filename\": \"walrus-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of walrus\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\", \"_storage_path\": \"/var/lib/pulp/content/rpm/walrus/0.3/0.8/noarch/6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd/walrus-0.3-0.8.noarch.rpm\", \"name\": \"walrus\", \"license\": \"GPLv2\", \"relativepath\": \"walrus-0.3-0.8.noarch.rpm\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"release\": \"0.8\", \"_id\": \"5d45b740-6c69-40c7-a44a-171d60a6bf8c\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/6eb97f0b-c856-4b80-b474-f505c69bb0a4/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2244, \"group\": \"Internet/Applications\", \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of elephant\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\", \"_storage_path\": \"/var/lib/pulp/content/rpm/elephant/0.3/0.8/noarch/3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3/elephant-0.3-0.8.noarch.rpm\", \"name\": \"elephant\", \"license\": \"GPLv2\", \"relativepath\": \"elephant-0.3-0.8.noarch.rpm\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"release\": \"0.8\", \"_id\": \"6eb97f0b-c856-4b80-b474-f505c69bb0a4\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/c09f0422-e16f-4db5-a453-a7cc481c9e5b/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2232, \"group\": \"Internet/Applications\", \"filename\": \"cheetah-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of cheetah\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\", \"_storage_path\": \"/var/lib/pulp/content/rpm/cheetah/0.3/0.8/noarch/422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae/cheetah-0.3-0.8.noarch.rpm\", \"name\": \"cheetah\", \"license\": \"GPLv2\", \"relativepath\": \"cheetah-0.3-0.8.noarch.rpm\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"release\": \"0.8\", \"_id\": \"c09f0422-e16f-4db5-a453-a7cc481c9e5b\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/ced87e02-cb98-4024-ad7d-001349b5cbaa/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2232, \"group\": \"Internet/Applications\", \"filename\": \"monkey-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of monkey\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\", \"_storage_path\": \"/var/lib/pulp/content/rpm/monkey/0.3/0.8/noarch/0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1/monkey-0.3-0.8.noarch.rpm\", \"name\": \"monkey\", \"license\": \"GPLv2\", \"relativepath\": \"monkey-0.3-0.8.noarch.rpm\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"release\": \"0.8\", \"_id\": \"ced87e02-cb98-4024-ad7d-001349b5cbaa\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/dda1db54-15a9-4397-b3a3-51907d1949e7/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2212, \"group\": \"Internet/Applications\", \"filename\": \"lion-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of lion\", \"_last_updated\": \"2015-08-05T19:59:20Z\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\", \"_storage_path\": \"/var/lib/pulp/content/rpm/lion/0.3/0.8/noarch/12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4/lion-0.3-0.8.noarch.rpm\", \"name\": \"lion\", \"license\": \"GPLv2\", \"relativepath\": \"lion-0.3-0.8.noarch.rpm\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"release\": \"0.8\", \"_id\": \"dda1db54-15a9-4397-b3a3-51907d1949e7\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:37 GMT + recorded_at: Wed, 05 Aug 2015 19:59:23 GMT - request: - method: post - uri: https://localhost/pulp/api/v2/content/units/rpm/search/ + method: get + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/?tag=pulp:action:sync body: encoding: US-ASCII - string: "{\"criteria\":{\"filters\":{\"_id\":{\"$in\":[\"a8ffed2b-9bfc-4b4f-a95f-4d896a362632\",\"1516246f-3d84-43f5-8899-433c810fc56e\",\"bb871147-3fbd-414a-8668-86a8e6d11806\",\"496dff85-d163-40ca-9666-31ef4af11b03\",\"6dbc631f-4990-44d6-8848-53d84910f954\",\"a140f324-2eca-476d-9212-4f75856b995c\",\"ac0f92f9-ee29-4ea3-9b77-82db5ca8786d\",\"5d832c81-88e6-463c-9011-9405b1760b5f\"]}},\"fields\":[\"name\",\"version\",\"release\",\"arch\",\"suffix\",\"epoch\",\"download_url\",\"checksum\",\"checksumtype\",\"license\",\"group\",\"children\",\"vendor\",\"filename\",\"relativepath\",\"description\",\"size\",\"buildhost\",\"_id\",\"_content_type_id\",\"_href\",\"_storage_path\",\"_type\",\"_last_updated\"]},\"include_repos\":true}" + string: "" headers: Accept: - application/json @@ -995,11 +1377,9 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="ywnSFr8y9dawKb0tBWgW1YaGCC1h4MRjQsiYBRJCdg", oauth_signature="fUJvEuhPs8TusCg5lJs%2FxcC5kOc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687797", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="5Nw87flOsbz4cnipG5YxT7n6eiGM5190znc9WReIME8", oauth_signature="aTpXN3qZbyzRtAflshRpuEZ4L6k%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804763", oauth_version="1.0" Pulp-User: - admin - Content-Length: - - "648" User-Agent: - Ruby response: @@ -1008,25 +1388,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:37 GMT + - Wed, 05 Aug 2015 19:59:23 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "6914" + - "2218" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "[{\"_href\": \"/pulp/api/v2/content/units/rpm/1516246f-3d84-43f5-8899-433c810fc56e/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2244, \"group\": \"Internet/Applications\", \"filename\": \"elephant-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of elephant\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"elephant\", \"_storage_path\": \"/var/lib/pulp/content/rpm/elephant/0.3/0.8/noarch/3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3/elephant-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"relativepath\": \"elephant-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"1516246f-3d84-43f5-8899-433c810fc56e\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/496dff85-d163-40ca-9666-31ef4af11b03/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2212, \"group\": \"Internet/Applications\", \"filename\": \"lion-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of lion\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"lion\", \"_storage_path\": \"/var/lib/pulp/content/rpm/lion/0.3/0.8/noarch/12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4/lion-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"relativepath\": \"lion-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"496dff85-d163-40ca-9666-31ef4af11b03\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/5d832c81-88e6-463c-9011-9405b1760b5f/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2236, \"group\": \"Internet/Applications\", \"filename\": \"walrus-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of walrus\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"walrus\", \"_storage_path\": \"/var/lib/pulp/content/rpm/walrus/0.3/0.8/noarch/6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd/walrus-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"relativepath\": \"walrus-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"5d832c81-88e6-463c-9011-9405b1760b5f\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/6dbc631f-4990-44d6-8848-53d84910f954/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2232, \"group\": \"Internet/Applications\", \"filename\": \"monkey-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of monkey\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"monkey\", \"_storage_path\": \"/var/lib/pulp/content/rpm/monkey/0.3/0.8/noarch/0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1/monkey-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"relativepath\": \"monkey-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"6dbc631f-4990-44d6-8848-53d84910f954\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/a140f324-2eca-476d-9212-4f75856b995c/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2232, \"group\": \"Internet/Applications\", \"filename\": \"penguin-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\", \"Default_Organization-el5_product-5Server\"], \"vendor\": null, \"description\": \"A dummy package of penguin\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"penguin\", \"_storage_path\": \"/var/lib/pulp/content/rpm/penguin/0.3/0.8/noarch/3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694/penguin-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"relativepath\": \"penguin-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"a140f324-2eca-476d-9212-4f75856b995c\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/a8ffed2b-9bfc-4b4f-a95f-4d896a362632/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2232, \"group\": \"Internet/Applications\", \"filename\": \"cheetah-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of cheetah\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"cheetah\", \"_storage_path\": \"/var/lib/pulp/content/rpm/cheetah/0.3/0.8/noarch/422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae/cheetah-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"relativepath\": \"cheetah-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"a8ffed2b-9bfc-4b4f-a95f-4d896a362632\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/ac0f92f9-ee29-4ea3-9b77-82db5ca8786d/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2248, \"group\": \"Internet/Applications\", \"filename\": \"squirrel-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of squirrel\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"squirrel\", \"_storage_path\": \"/var/lib/pulp/content/rpm/squirrel/0.3/0.8/noarch/251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2/squirrel-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"relativepath\": \"squirrel-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"ac0f92f9-ee29-4ea3-9b77-82db5ca8786d\"}, {\"_href\": \"/pulp/api/v2/content/units/rpm/bb871147-3fbd-414a-8668-86a8e6d11806/\", \"buildhost\": \"dhcp-26-118.brq.redhat.com\", \"_content_type_id\": \"rpm\", \"children\": {}, \"size\": 2236, \"group\": \"Internet/Applications\", \"filename\": \"giraffe-0.3-0.8.noarch.rpm\", \"epoch\": \"0\", \"version\": \"0.3\", \"repository_memberships\": [\"1\"], \"vendor\": null, \"description\": \"A dummy package of giraffe\", \"_last_updated\": \"2014-10-07T13:16:32Z\", \"arch\": \"noarch\", \"name\": \"giraffe\", \"_storage_path\": \"/var/lib/pulp/content/rpm/giraffe/0.3/0.8/noarch/f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14/giraffe-0.3-0.8.noarch.rpm\", \"checksumtype\": \"sha256\", \"license\": \"GPLv2\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"relativepath\": \"giraffe-0.3-0.8.noarch.rpm\", \"release\": \"0.8\", \"_id\": \"bb871147-3fbd-414a-8668-86a8e6d11806\"}]" + encoding: US-ASCII + string: "[{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/e218793a-86e4-4ef6-b04a-86d3fbf8203f/\", \"task_id\": \"e218793a-86e4-4ef6-b04a-86d3fbf8203f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-08-05T19:59:20Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:20Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/b4a64a10-382f-46fa-a69e-6314bb641915/\", \"task_id\": \"b4a64a10-382f-46fa-a69e-6314bb641915\"}, {\"_href\": \"/pulp/api/v2/tasks/34042c35-b752-46a2-8b70-c7a4c0fb55f4/\", \"task_id\": \"34042c35-b752-46a2-8b70-c7a4c0fb55f4\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-08-05T19:59:20Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-08-05T19:59:20Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 15, \"error_message\": null, \"updated_count\": 0, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55c26b18115138443de6e9cb\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55c26b187164df9aa32ab31d\"}, \"id\": \"55c26b181151384439db715d\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:37 GMT + recorded_at: Wed, 05 Aug 2015 19:59:23 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/?tag=pulp:action:sync + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/?tag=pulp:action:sync body: encoding: US-ASCII string: "" @@ -1038,7 +1416,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="mN1FzLPrhERijdB7aKCebPx0PjuuO1wjLCYMveuw", oauth_signature="lzblM0ZXGKW7wMk%2F%2BJC5wzoQDwA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687797", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="yzdCKDcqis54s1SOtT5PLQzRwrYHQfWTNwuAaV14N0Y", oauth_signature="wBQFOIKmXmSyROMTTp08s84bSsI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804763", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -1049,25 +1427,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:37 GMT + - Wed, 05 Aug 2015 19:59:23 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "82534" + - "2218" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "[{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/553a0a7f-c3b5-4d1f-b8d8-488fd6e1a268/\", \"task_id\": \"553a0a7f-c3b5-4d1f-b8d8-488fd6e1a268\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T18:55:20Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T18:55:20Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/47cb65cf-5de9-4ec5-a504-a1e35d136a7c/\", \"task_id\": \"47cb65cf-5de9-4ec5-a504-a1e35d136a7c\"}, {\"_href\": \"/pulp/api/v2/tasks/14f7aaa8-4bc6-462c-8288-6017e7cbe913/\", \"task_id\": \"14f7aaa8-4bc6-462c-8288-6017e7cbe913\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T14:55:17-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T14:55:19-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 13, \"error_message\": null, \"updated_count\": 2, \"details\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e5975ca013067bd77137\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e59533a7d3a2e73beea1\"}, \"id\": \"5432e5955ca0134a6f278ee7\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/0dbd485e-77e8-4be7-b48c-d698a017c32b/\", \"task_id\": \"0dbd485e-77e8-4be7-b48c-d698a017c32b\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T18:57:28Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T18:57:27Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/f3d2a603-6247-4a2d-8e66-0d2a78f4094c/\", \"task_id\": \"f3d2a603-6247-4a2d-8e66-0d2a78f4094c\"}, {\"_href\": \"/pulp/api/v2/tasks/70c07a5f-e0f2-4159-a62f-1bfa6b455771/\", \"task_id\": \"70c07a5f-e0f2-4159-a62f-1bfa6b455771\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T14:57:26-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T14:57:26-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e6165ca013067bd77155\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e61633a7d3a2e73beea5\"}, \"id\": \"5432e6165ca0134a6f278f4d\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/65c9d724-2d99-443e-a871-c32fa4aac918/\", \"task_id\": \"65c9d724-2d99-443e-a871-c32fa4aac918\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:11:12Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:11:11Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/737e5e96-2e9d-4820-a386-fca2de6400df/\", \"task_id\": \"737e5e96-2e9d-4820-a386-fca2de6400df\"}, {\"_href\": \"/pulp/api/v2/tasks/dbad6390-2f1f-49a5-ae9e-794ed2f03163/\", \"task_id\": \"dbad6390-2f1f-49a5-ae9e-794ed2f03163\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:11:10-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:11:11-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e94f5ca013067bd77173\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e94e33a7d3a2e73beea9\"}, \"id\": \"5432e94e5ca0134a6f278f5f\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/1c16b113-e1ae-414e-8c8d-f4ec2c6bf0bc/\", \"task_id\": \"1c16b113-e1ae-414e-8c8d-f4ec2c6bf0bc\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:11:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:11:16Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8a225336-1ea1-4eec-9e4d-1b2bcb30b146/\", \"task_id\": \"8a225336-1ea1-4eec-9e4d-1b2bcb30b146\"}, {\"_href\": \"/pulp/api/v2/tasks/2f5bb491-554b-47da-a286-810921d0c46f/\", \"task_id\": \"2f5bb491-554b-47da-a286-810921d0c46f\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:11:15-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:11:15-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e9535ca013067bd77191\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e95333a7d3a2e73beead\"}, \"id\": \"5432e9535ca0134a6f278f72\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/0e1d86ae-4603-47b5-b2f4-471c55180c0e/\", \"task_id\": \"0e1d86ae-4603-47b5-b2f4-471c55180c0e\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:18:55Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:18:55Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/5fc6be19-b539-4d58-923e-8539c74de4f2/\", \"task_id\": \"5fc6be19-b539-4d58-923e-8539c74de4f2\"}, {\"_href\": \"/pulp/api/v2/tasks/e78fd5ca-06f5-474f-819e-c03295e63450/\", \"task_id\": \"e78fd5ca-06f5-474f-819e-c03295e63450\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:18:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:18:54-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432eb1e5ca013067bd771af\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432eb1e33a7d3a2e73beeb2\"}, \"id\": \"5432eb1e5ca0134a6f278f84\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/43b939b4-8243-46e6-a07c-300c4824df7a/\", \"task_id\": \"43b939b4-8243-46e6-a07c-300c4824df7a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:19:03Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:19:03Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/dd469f38-b876-4517-89c6-872f0b2275f2/\", \"task_id\": \"dd469f38-b876-4517-89c6-872f0b2275f2\"}, {\"_href\": \"/pulp/api/v2/tasks/cbc613aa-e8f7-48cb-b9e2-af4800857473/\", \"task_id\": \"cbc613aa-e8f7-48cb-b9e2-af4800857473\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:19:01-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:19:02-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432eb265ca013067bd771cd\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432eb2533a7d3a2e73beeb6\"}, \"id\": \"5432eb255ca0134a6f278faf\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/613a3c28-e4ec-4f32-924a-8db076a9b6a9/\", \"task_id\": \"613a3c28-e4ec-4f32-924a-8db076a9b6a9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:21:56Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:21:55Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/80d744f1-95d0-41eb-aafd-8760da440f7d/\", \"task_id\": \"80d744f1-95d0-41eb-aafd-8760da440f7d\"}, {\"_href\": \"/pulp/api/v2/tasks/03534a8e-c315-4ddb-86be-d3c3fc0edddd/\", \"task_id\": \"03534a8e-c315-4ddb-86be-d3c3fc0edddd\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:21:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:21:55-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ebd35ca013067bd771eb\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ebd233a7d3a2e73beeba\"}, \"id\": \"5432ebd25ca0134a6f278fbf\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/06f0cf1c-4959-4569-98e2-3b71dda6e6ef/\", \"task_id\": \"06f0cf1c-4959-4569-98e2-3b71dda6e6ef\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:23:31Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:23:30Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/50075d91-b373-4dea-b05c-bb608ea446a9/\", \"task_id\": \"50075d91-b373-4dea-b05c-bb608ea446a9\"}, {\"_href\": \"/pulp/api/v2/tasks/4475a5c9-bc30-4c36-81c0-ca01d33ceb0b/\", \"task_id\": \"4475a5c9-bc30-4c36-81c0-ca01d33ceb0b\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:23:29-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:23:30-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ec325ca013067bd77209\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ec3133a7d3a2e73beebe\"}, \"id\": \"5432ec315ca0134a6f278feb\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/bfd7ea35-0234-428d-b64b-d5b6d5804f31/\", \"task_id\": \"bfd7ea35-0234-428d-b64b-d5b6d5804f31\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:25:40Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:25:39Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/b175f2d0-8940-494f-9de1-7b1362c1a5c7/\", \"task_id\": \"b175f2d0-8940-494f-9de1-7b1362c1a5c7\"}, {\"_href\": \"/pulp/api/v2/tasks/5ebd78e5-cce1-4eff-bb81-c8ff394c56e2/\", \"task_id\": \"5ebd78e5-cce1-4eff-bb81-c8ff394c56e2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:25:39-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:25:39-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ecb35ca013067bd7721f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ecb333a7d3a2e73beec2\"}, \"id\": \"5432ecb35ca0134a6f278ff5\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/e054346b-7350-4a58-8bf3-4e4792e00963/\", \"task_id\": \"e054346b-7350-4a58-8bf3-4e4792e00963\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:26:02Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:26:01Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/9ec67dc9-c4b9-412a-ac84-c454e37b30ff/\", \"task_id\": \"9ec67dc9-c4b9-412a-ac84-c454e37b30ff\"}, {\"_href\": \"/pulp/api/v2/tasks/91bc5df8-7369-4634-9f1f-f4dbc83fc1a2/\", \"task_id\": \"91bc5df8-7369-4634-9f1f-f4dbc83fc1a2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:26:00-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:26:01-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ecc95ca013067bd7723d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ecc833a7d3a2e73beec6\"}, \"id\": \"5432ecc85ca0134a6f27901f\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/e5f89be4-51a9-4bed-b965-5510683b2ccb/\", \"task_id\": \"e5f89be4-51a9-4bed-b965-5510683b2ccb\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:29:14Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:29:14Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/285355dd-2659-429a-a9e2-12dee30b5cb1/\", \"task_id\": \"285355dd-2659-429a-a9e2-12dee30b5cb1\"}, {\"_href\": \"/pulp/api/v2/tasks/dacc093a-1810-439c-97d8-01b390521778/\", \"task_id\": \"dacc093a-1810-439c-97d8-01b390521778\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:29:13-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:29:13-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ed895ca013067bd7725b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ed8933a7d3a2e73beeca\"}, \"id\": \"5432ed895ca0134a6f279031\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/104ec505-6321-497c-a3a5-7fa11da70421/\", \"task_id\": \"104ec505-6321-497c-a3a5-7fa11da70421\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:32:06Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:32:05Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/88b73d87-e682-4c59-9aa7-847cc8f4759a/\", \"task_id\": \"88b73d87-e682-4c59-9aa7-847cc8f4759a\"}, {\"_href\": \"/pulp/api/v2/tasks/e81db7ea-9ccc-4c94-91ed-c3b28106aa38/\", \"task_id\": \"e81db7ea-9ccc-4c94-91ed-c3b28106aa38\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:32:04-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:32:05-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ee355ca013067bd77279\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ee3433a7d3a2e73beece\"}, \"id\": \"5432ee345ca0134a6f27905d\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/ccd83270-f1bd-4e3c-8fa3-8838e6fccb81/\", \"task_id\": \"ccd83270-f1bd-4e3c-8fa3-8838e6fccb81\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:32:24Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:32:24Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/7e5b7f0a-f3da-45e6-832f-956a7a2b81b4/\", \"task_id\": \"7e5b7f0a-f3da-45e6-832f-956a7a2b81b4\"}, {\"_href\": \"/pulp/api/v2/tasks/418e20dd-bf5a-48e0-b6b7-3f3e38f235a7/\", \"task_id\": \"418e20dd-bf5a-48e0-b6b7-3f3e38f235a7\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:32:23-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:32:23-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ee475ca013067bd77297\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ee4733a7d3a2e73beed2\"}, \"id\": \"5432ee475ca0134a6f279088\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/cc44e362-0c30-4878-b82c-e7dbee7fe9af/\", \"task_id\": \"cc44e362-0c30-4878-b82c-e7dbee7fe9af\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:36:25Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:36:25Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a5e65ee3-fc30-46a7-a2f0-217adbaad98d/\", \"task_id\": \"a5e65ee3-fc30-46a7-a2f0-217adbaad98d\"}, {\"_href\": \"/pulp/api/v2/tasks/d443ec3c-6969-4e3d-95e5-a52d049bf288/\", \"task_id\": \"d443ec3c-6969-4e3d-95e5-a52d049bf288\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:36:24-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:36:24-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ef385ca013067bd772b5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ef3833a7d3a2e73beed6\"}, \"id\": \"5432ef385ca0134a6f27909a\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/c37de44c-51cc-4312-bc4b-300bf8fedbe4/\", \"task_id\": \"c37de44c-51cc-4312-bc4b-300bf8fedbe4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:36:32Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:36:31Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/21be9bc6-1480-45b1-bc54-c9d224f64b6a/\", \"task_id\": \"21be9bc6-1480-45b1-bc54-c9d224f64b6a\"}, {\"_href\": \"/pulp/api/v2/tasks/f3ee7f11-bcd0-4f82-af6f-0151676cf8a5/\", \"task_id\": \"f3ee7f11-bcd0-4f82-af6f-0151676cf8a5\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:36:30-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:36:30-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ef3e5ca013067bd772d3\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ef3e33a7d3a2e73beeda\"}, \"id\": \"5432ef3e5ca0134a6f2790c6\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/c48c488f-49c3-4cc7-8957-8009de750189/\", \"task_id\": \"c48c488f-49c3-4cc7-8957-8009de750189\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:39:10Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:39:10Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8016b11a-4800-4436-b7b4-baccdfee8f3d/\", \"task_id\": \"8016b11a-4800-4436-b7b4-baccdfee8f3d\"}, {\"_href\": \"/pulp/api/v2/tasks/6d60374d-086d-4a11-b759-da8c529aa8f9/\", \"task_id\": \"6d60374d-086d-4a11-b759-da8c529aa8f9\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:39:09-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:39:09-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432efdd5ca013067bd772f1\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432efdd33a7d3a2e73beede\"}, \"id\": \"5432efdd5ca0134a6f2790d8\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/06c15d7f-da77-4af0-8cb2-1f71e44084dd/\", \"task_id\": \"06c15d7f-da77-4af0-8cb2-1f71e44084dd\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:39:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:39:16Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a649c5eb-dfa0-460b-a1c5-3efeb59b49e9/\", \"task_id\": \"a649c5eb-dfa0-460b-a1c5-3efeb59b49e9\"}, {\"_href\": \"/pulp/api/v2/tasks/4e9418dc-d046-4147-b676-b467a40dfda6/\", \"task_id\": \"4e9418dc-d046-4147-b676-b467a40dfda6\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:39:15-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:39:16-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432efe45ca013067bd7730f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432efe333a7d3a2e73beee2\"}, \"id\": \"5432efe35ca0134a6f279105\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/00f1c9e5-c314-4d6f-ad24-e0e4b3b20433/\", \"task_id\": \"00f1c9e5-c314-4d6f-ad24-e0e4b3b20433\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:41:34Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:41:33Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/0a03f3d4-d743-4382-8440-fe1728f079d9/\", \"task_id\": \"0a03f3d4-d743-4382-8440-fe1728f079d9\"}, {\"_href\": \"/pulp/api/v2/tasks/42227d04-9001-4cb9-86be-a977fe891b5e/\", \"task_id\": \"42227d04-9001-4cb9-86be-a977fe891b5e\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:41:32-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:41:32-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f06c5ca013067bd7732d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f06c33a7d3a2e73beee6\"}, \"id\": \"5432f06c5ca0134a6f279117\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/62799e03-bd77-4e15-9823-740c272c8cf6/\", \"task_id\": \"62799e03-bd77-4e15-9823-740c272c8cf6\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:43:18Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:43:17Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/54404de2-353f-4cc6-b4c4-6811f19ec171/\", \"task_id\": \"54404de2-353f-4cc6-b4c4-6811f19ec171\"}, {\"_href\": \"/pulp/api/v2/tasks/f81d1d1a-ee59-44ba-83d0-31fbb27885e2/\", \"task_id\": \"f81d1d1a-ee59-44ba-83d0-31fbb27885e2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:43:16-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:43:16-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f0d45ca013067bd7734b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f0d433a7d3a2e73beeea\"}, \"id\": \"5432f0d45ca0134a6f279142\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/f98962c6-f288-43f0-bef0-9d59a35f2bb7/\", \"task_id\": \"f98962c6-f288-43f0-bef0-9d59a35f2bb7\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:46:00Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:46:00Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/5eac3d4a-e8c5-4c7c-8835-6d1c40d27f1d/\", \"task_id\": \"5eac3d4a-e8c5-4c7c-8835-6d1c40d27f1d\"}, {\"_href\": \"/pulp/api/v2/tasks/c72d6b00-c6f3-4f17-8067-6700d08a3b58/\", \"task_id\": \"c72d6b00-c6f3-4f17-8067-6700d08a3b58\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:45:59-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:45:59-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f1775ca013067bd77369\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f17733a7d3a2e73beeee\"}, \"id\": \"5432f1775ca0134a6f279154\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/a8bceadf-bebf-48d4-a8e1-f2d40541231f/\", \"task_id\": \"a8bceadf-bebf-48d4-a8e1-f2d40541231f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:46:06Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:46:06Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a39f02ad-ed5c-4998-945c-5e2bbbb06a5a/\", \"task_id\": \"a39f02ad-ed5c-4998-945c-5e2bbbb06a5a\"}, {\"_href\": \"/pulp/api/v2/tasks/b29e5cd4-e384-4b3e-b231-c28e3de0b60c/\", \"task_id\": \"b29e5cd4-e384-4b3e-b231-c28e3de0b60c\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:46:05-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:46:06-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f17e5ca013067bd77387\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f17d33a7d3a2e73beef2\"}, \"id\": \"5432f17d5ca0134a6f279180\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/414344ba-15aa-440f-a24b-d3fe18193f3c/\", \"task_id\": \"414344ba-15aa-440f-a24b-d3fe18193f3c\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:49:52Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:49:52Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/64a30d0a-a1fa-493c-9575-7d2e17c6997a/\", \"task_id\": \"64a30d0a-a1fa-493c-9575-7d2e17c6997a\"}, {\"_href\": \"/pulp/api/v2/tasks/38810435-0427-461a-b4df-6d72aa7b5a80/\", \"task_id\": \"38810435-0427-461a-b4df-6d72aa7b5a80\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:49:51-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:49:51-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f25f5ca013067bd773a5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f25f33a7d3a2e73beef6\"}, \"id\": \"5432f25f5ca0134a6f279191\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/41feb23d-f675-4fc6-acac-8cf5216c990f/\", \"task_id\": \"41feb23d-f675-4fc6-acac-8cf5216c990f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:49:58Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:49:57Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/e4f51fbb-8022-4860-831a-8bbc4089b131/\", \"task_id\": \"e4f51fbb-8022-4860-831a-8bbc4089b131\"}, {\"_href\": \"/pulp/api/v2/tasks/1475aa92-d403-4f9f-9acf-d860f88fde15/\", \"task_id\": \"1475aa92-d403-4f9f-9acf-d860f88fde15\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:49:56-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:49:56-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f2645ca013067bd773c3\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f26433a7d3a2e73beefa\"}, \"id\": \"5432f2645ca0134a6f2791bc\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/44a9e382-ea7a-4503-b99f-e0c72a2c4f37/\", \"task_id\": \"44a9e382-ea7a-4503-b99f-e0c72a2c4f37\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:04:36Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:04:36Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/1df64b16-c4c4-4c33-ae97-bff80fed7be3/\", \"task_id\": \"1df64b16-c4c4-4c33-ae97-bff80fed7be3\"}, {\"_href\": \"/pulp/api/v2/tasks/1b7e349e-6d62-4d79-906e-bc8ff19e4e47/\", \"task_id\": \"1b7e349e-6d62-4d79-906e-bc8ff19e4e47\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:04:35-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:04:35-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f5d35ca013067bd773e1\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f5d333a7d3a2e73bef01\"}, \"id\": \"5432f5d35ca0134a6f2791e6\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/45de3728-4202-4385-95f2-6b4de282f9f4/\", \"task_id\": \"45de3728-4202-4385-95f2-6b4de282f9f4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:04:44Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:04:43Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/861f71cc-339a-4504-9c5d-3e99aea73e41/\", \"task_id\": \"861f71cc-339a-4504-9c5d-3e99aea73e41\"}, {\"_href\": \"/pulp/api/v2/tasks/6f8a3759-c7c1-4969-a3dc-7c406ac25919/\", \"task_id\": \"6f8a3759-c7c1-4969-a3dc-7c406ac25919\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:04:42-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:04:42-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f5da5ca013067bd773ff\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f5da33a7d3a2e73bef05\"}, \"id\": \"5432f5da5ca0134a6f279227\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/a48186d6-3734-4626-b5b8-252e6d4c6c34/\", \"task_id\": \"a48186d6-3734-4626-b5b8-252e6d4c6c34\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:05:11Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:05:10Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/d880cf54-205d-4bad-9b98-6b0dbd624429/\", \"task_id\": \"d880cf54-205d-4bad-9b98-6b0dbd624429\"}, {\"_href\": \"/pulp/api/v2/tasks/5a58416c-91eb-472f-8aa9-b56c7ac12925/\", \"task_id\": \"5a58416c-91eb-472f-8aa9-b56c7ac12925\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:05:09-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:05:10-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 13, \"error_message\": null, \"updated_count\": 2, \"details\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f5f65ca013067bd7742f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f5e733a7d3a2e73bef10\"}, \"id\": \"5432f5e75ca0134a6f279256\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/7280be4e-bbae-4a19-aff6-1c4bf171b764/\", \"task_id\": \"7280be4e-bbae-4a19-aff6-1c4bf171b764\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:07:36Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:07:35Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/2913a1f8-72bd-4a81-8795-c37ea04f93a1/\", \"task_id\": \"2913a1f8-72bd-4a81-8795-c37ea04f93a1\"}, {\"_href\": \"/pulp/api/v2/tasks/70b39e0a-39e3-4e59-978b-61b6e0989e60/\", \"task_id\": \"70b39e0a-39e3-4e59-978b-61b6e0989e60\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:07:34-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:07:34-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f6865ca013067bd7744d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f68633a7d3a2e73bef18\"}, \"id\": \"5432f6865ca0134a6f27928c\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/5a16309d-070d-4b23-a9ba-d47ec9383cbc/\", \"task_id\": \"5a16309d-070d-4b23-a9ba-d47ec9383cbc\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:07:43Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:07:42Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/c7fca782-8543-461f-8997-d0cbc9f47af2/\", \"task_id\": \"c7fca782-8543-461f-8997-d0cbc9f47af2\"}, {\"_href\": \"/pulp/api/v2/tasks/f60f4e08-808d-454a-9e13-310a5441dba2/\", \"task_id\": \"f60f4e08-808d-454a-9e13-310a5441dba2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:07:41-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:07:41-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f68d5ca013067bd7746b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f68d33a7d3a2e73bef1c\"}, \"id\": \"5432f68d5ca0134a6f2792cd\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/659f962f-9c98-406b-a82b-f001942e40be/\", \"task_id\": \"659f962f-9c98-406b-a82b-f001942e40be\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:08:01Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:08:00Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/c28f02a3-9b26-469b-9652-818c44767852/\", \"task_id\": \"c28f02a3-9b26-469b-9652-818c44767852\"}, {\"_href\": \"/pulp/api/v2/tasks/6992fd30-7789-4c6d-ac09-864f8cbcbf0f/\", \"task_id\": \"6992fd30-7789-4c6d-ac09-864f8cbcbf0f\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:07:59-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:08:00-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 13, \"error_message\": null, \"updated_count\": 2, \"details\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f6a05ca013067bd7749b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f69a33a7d3a2e73bef27\"}, \"id\": \"5432f69a5ca0134a6f2792fc\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/9c6477ff-cad4-4648-bb52-53c5725b7c40/\", \"task_id\": \"9c6477ff-cad4-4648-bb52-53c5725b7c40\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T12:56:03Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T12:56:03Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/eba6e1ef-251d-4158-b9a4-aa4b544490d2/\", \"task_id\": \"eba6e1ef-251d-4158-b9a4-aa4b544490d2\"}, {\"_href\": \"/pulp/api/v2/tasks/e4148351-9347-4c27-aa55-9e273c462511/\", \"task_id\": \"e4148351-9347-4c27-aa55-9e273c462511\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T08:56:02-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T08:56:02-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e2e25ca013067bd774d7\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e2e233a7d3a2e73bef32\"}, \"id\": \"5433e2e25ca0134a6f279343\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/5ca23d78-a417-4f59-9e47-a5de86fd91c9/\", \"task_id\": \"5ca23d78-a417-4f59-9e47-a5de86fd91c9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:00:43Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:00:42Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8edc7f56-5a80-4fd8-8ac7-358d9da75e1a/\", \"task_id\": \"8edc7f56-5a80-4fd8-8ac7-358d9da75e1a\"}, {\"_href\": \"/pulp/api/v2/tasks/c1c2d8d9-d562-4c10-821c-dcc2717343a2/\", \"task_id\": \"c1c2d8d9-d562-4c10-821c-dcc2717343a2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:00:41-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:00:42-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e3fa5ca013067bd774f5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e3f933a7d3a2e73bef36\"}, \"id\": \"5433e3f95ca0134a6f279355\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/92836870-1c59-4282-937d-9b2213b3f95d/\", \"task_id\": \"92836870-1c59-4282-937d-9b2213b3f95d\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:00:49Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:00:48Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/cd7d3d30-b92a-47f5-b46b-f546a9e0d5d3/\", \"task_id\": \"cd7d3d30-b92a-47f5-b46b-f546a9e0d5d3\"}, {\"_href\": \"/pulp/api/v2/tasks/cde88818-1ba7-4254-9153-ca4a65a29dea/\", \"task_id\": \"cde88818-1ba7-4254-9153-ca4a65a29dea\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:00:48-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:00:48-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e4005ca013067bd77513\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e40033a7d3a2e73bef3a\"}, \"id\": \"5433e4005ca0134a6f279383\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/64ee9346-1a9f-401c-8d3c-f3bae63ec715/\", \"task_id\": \"64ee9346-1a9f-401c-8d3c-f3bae63ec715\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:03:50Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:03:49Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/bffa56c1-239f-4217-bac4-a5b144e3951e/\", \"task_id\": \"bffa56c1-239f-4217-bac4-a5b144e3951e\"}, {\"_href\": \"/pulp/api/v2/tasks/fb909e33-b8f2-4bfc-81d3-a17d826542c0/\", \"task_id\": \"fb909e33-b8f2-4bfc-81d3-a17d826542c0\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:03:49-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:03:49-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e4b55ca013067bd77531\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e4b533a7d3a2e73bef3e\"}, \"id\": \"5433e4b55ca0134a6f279395\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/e44e5ed0-39fc-46ff-a8a3-768e370d8836/\", \"task_id\": \"e44e5ed0-39fc-46ff-a8a3-768e370d8836\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:03:56Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:03:55Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a08e8ee8-078a-4c0f-8437-0c2f650ba2f6/\", \"task_id\": \"a08e8ee8-078a-4c0f-8437-0c2f650ba2f6\"}, {\"_href\": \"/pulp/api/v2/tasks/5911ac6a-516a-41cd-8e9c-b29a4efbb687/\", \"task_id\": \"5911ac6a-516a-41cd-8e9c-b29a4efbb687\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:03:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:03:54-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e4ba5ca013067bd7754f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e4ba33a7d3a2e73bef42\"}, \"id\": \"5433e4ba5ca0134a6f2793c1\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/92bdaac6-5419-48f1-b659-e98b26e83df4/\", \"task_id\": \"92bdaac6-5419-48f1-b659-e98b26e83df4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:12:39Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:12:38Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/3cb0cac5-f754-49eb-8f74-c0f3723e2f0a/\", \"task_id\": \"3cb0cac5-f754-49eb-8f74-c0f3723e2f0a\"}, {\"_href\": \"/pulp/api/v2/tasks/b3fc8eb5-9e5e-477a-b80a-c9c1572dba97/\", \"task_id\": \"b3fc8eb5-9e5e-477a-b80a-c9c1572dba97\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:12:37-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:12:38-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e6c65ca013067bd7756d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e6c533a7d3a2e73bef47\"}, \"id\": \"5433e6c55ca0134a6f2793d3\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/7acc93c7-7598-4b8f-8c8e-91162d2acf17/\", \"task_id\": \"7acc93c7-7598-4b8f-8c8e-91162d2acf17\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:12:45Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:12:44Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/6a4f9534-9278-4c72-9d8f-bb7a2f06aa54/\", \"task_id\": \"6a4f9534-9278-4c72-9d8f-bb7a2f06aa54\"}, {\"_href\": \"/pulp/api/v2/tasks/2e5369ba-7b3f-49e0-933a-55a0d9f555ff/\", \"task_id\": \"2e5369ba-7b3f-49e0-933a-55a0d9f555ff\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:12:43-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:12:43-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e6cb5ca013067bd7758b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e6cb33a7d3a2e73bef4b\"}, \"id\": \"5433e6cb5ca0134a6f2793ff\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/\", \"task_id\": \"96da0f16-4ba1-49d4-b38e-5fe435e0afac\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:16:34Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:33Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/82317804-bbf7-4b95-94ad-ce6f8c9ddf83/\", \"task_id\": \"82317804-bbf7-4b95-94ad-ce6f8c9ddf83\"}, {\"_href\": \"/pulp/api/v2/tasks/ad4132ba-5b47-4462-955a-2ddc767405d7/\", \"task_id\": \"ad4132ba-5b47-4462-955a-2ddc767405d7\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:16:32-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:16:33-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e7b15ca013067bd775a9\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e7b033a7d3a2e73bef52\"}, \"id\": \"5433e7b05ca0134a6f279427\"}]" + encoding: US-ASCII + string: "[{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/e218793a-86e4-4ef6-b04a-86d3fbf8203f/\", \"task_id\": \"e218793a-86e4-4ef6-b04a-86d3fbf8203f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-08-05T19:59:20Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:20Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/b4a64a10-382f-46fa-a69e-6314bb641915/\", \"task_id\": \"b4a64a10-382f-46fa-a69e-6314bb641915\"}, {\"_href\": \"/pulp/api/v2/tasks/34042c35-b752-46a2-8b70-c7a4c0fb55f4/\", \"task_id\": \"34042c35-b752-46a2-8b70-c7a4c0fb55f4\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-08-05T19:59:20Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-08-05T19:59:20Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 15, \"error_message\": null, \"updated_count\": 0, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55c26b18115138443de6e9cb\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55c26b187164df9aa32ab31d\"}, \"id\": \"55c26b181151384439db715d\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:37 GMT + recorded_at: Wed, 05 Aug 2015 19:59:23 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/?tag=pulp:action:sync + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/?tag=pulp:action:sync body: encoding: US-ASCII string: "" @@ -1079,7 +1455,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="X2vnYLqHHkiTkphk1bAl3lnkedWT9jVvpmBxOO5Ekg", oauth_signature="0d7TvbaQQVn%2B31Hbc2A0V%2Bh33x4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687797", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="Rb2fMA5AMZpen4RfZfEzUzVC3MyN2QLvyOHIZZ8Ol0", oauth_signature="TWFhU4XvCXPv8x93zeQApvQ4k54%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804763", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -1090,25 +1466,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:37 GMT + - Wed, 05 Aug 2015 19:59:23 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "82534" + - "2218" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "[{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/553a0a7f-c3b5-4d1f-b8d8-488fd6e1a268/\", \"task_id\": \"553a0a7f-c3b5-4d1f-b8d8-488fd6e1a268\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T18:55:20Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T18:55:20Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/47cb65cf-5de9-4ec5-a504-a1e35d136a7c/\", \"task_id\": \"47cb65cf-5de9-4ec5-a504-a1e35d136a7c\"}, {\"_href\": \"/pulp/api/v2/tasks/14f7aaa8-4bc6-462c-8288-6017e7cbe913/\", \"task_id\": \"14f7aaa8-4bc6-462c-8288-6017e7cbe913\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T14:55:17-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T14:55:19-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 13, \"error_message\": null, \"updated_count\": 2, \"details\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e5975ca013067bd77137\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e59533a7d3a2e73beea1\"}, \"id\": \"5432e5955ca0134a6f278ee7\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/0dbd485e-77e8-4be7-b48c-d698a017c32b/\", \"task_id\": \"0dbd485e-77e8-4be7-b48c-d698a017c32b\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T18:57:28Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T18:57:27Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/f3d2a603-6247-4a2d-8e66-0d2a78f4094c/\", \"task_id\": \"f3d2a603-6247-4a2d-8e66-0d2a78f4094c\"}, {\"_href\": \"/pulp/api/v2/tasks/70c07a5f-e0f2-4159-a62f-1bfa6b455771/\", \"task_id\": \"70c07a5f-e0f2-4159-a62f-1bfa6b455771\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T14:57:26-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T14:57:26-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e6165ca013067bd77155\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e61633a7d3a2e73beea5\"}, \"id\": \"5432e6165ca0134a6f278f4d\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/65c9d724-2d99-443e-a871-c32fa4aac918/\", \"task_id\": \"65c9d724-2d99-443e-a871-c32fa4aac918\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:11:12Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:11:11Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/737e5e96-2e9d-4820-a386-fca2de6400df/\", \"task_id\": \"737e5e96-2e9d-4820-a386-fca2de6400df\"}, {\"_href\": \"/pulp/api/v2/tasks/dbad6390-2f1f-49a5-ae9e-794ed2f03163/\", \"task_id\": \"dbad6390-2f1f-49a5-ae9e-794ed2f03163\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:11:10-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:11:11-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e94f5ca013067bd77173\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e94e33a7d3a2e73beea9\"}, \"id\": \"5432e94e5ca0134a6f278f5f\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/1c16b113-e1ae-414e-8c8d-f4ec2c6bf0bc/\", \"task_id\": \"1c16b113-e1ae-414e-8c8d-f4ec2c6bf0bc\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:11:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:11:16Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8a225336-1ea1-4eec-9e4d-1b2bcb30b146/\", \"task_id\": \"8a225336-1ea1-4eec-9e4d-1b2bcb30b146\"}, {\"_href\": \"/pulp/api/v2/tasks/2f5bb491-554b-47da-a286-810921d0c46f/\", \"task_id\": \"2f5bb491-554b-47da-a286-810921d0c46f\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:11:15-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:11:15-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e9535ca013067bd77191\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e95333a7d3a2e73beead\"}, \"id\": \"5432e9535ca0134a6f278f72\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/0e1d86ae-4603-47b5-b2f4-471c55180c0e/\", \"task_id\": \"0e1d86ae-4603-47b5-b2f4-471c55180c0e\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:18:55Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:18:55Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/5fc6be19-b539-4d58-923e-8539c74de4f2/\", \"task_id\": \"5fc6be19-b539-4d58-923e-8539c74de4f2\"}, {\"_href\": \"/pulp/api/v2/tasks/e78fd5ca-06f5-474f-819e-c03295e63450/\", \"task_id\": \"e78fd5ca-06f5-474f-819e-c03295e63450\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:18:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:18:54-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432eb1e5ca013067bd771af\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432eb1e33a7d3a2e73beeb2\"}, \"id\": \"5432eb1e5ca0134a6f278f84\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/43b939b4-8243-46e6-a07c-300c4824df7a/\", \"task_id\": \"43b939b4-8243-46e6-a07c-300c4824df7a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:19:03Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:19:03Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/dd469f38-b876-4517-89c6-872f0b2275f2/\", \"task_id\": \"dd469f38-b876-4517-89c6-872f0b2275f2\"}, {\"_href\": \"/pulp/api/v2/tasks/cbc613aa-e8f7-48cb-b9e2-af4800857473/\", \"task_id\": \"cbc613aa-e8f7-48cb-b9e2-af4800857473\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:19:01-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:19:02-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432eb265ca013067bd771cd\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432eb2533a7d3a2e73beeb6\"}, \"id\": \"5432eb255ca0134a6f278faf\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/613a3c28-e4ec-4f32-924a-8db076a9b6a9/\", \"task_id\": \"613a3c28-e4ec-4f32-924a-8db076a9b6a9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:21:56Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:21:55Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/80d744f1-95d0-41eb-aafd-8760da440f7d/\", \"task_id\": \"80d744f1-95d0-41eb-aafd-8760da440f7d\"}, {\"_href\": \"/pulp/api/v2/tasks/03534a8e-c315-4ddb-86be-d3c3fc0edddd/\", \"task_id\": \"03534a8e-c315-4ddb-86be-d3c3fc0edddd\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:21:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:21:55-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ebd35ca013067bd771eb\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ebd233a7d3a2e73beeba\"}, \"id\": \"5432ebd25ca0134a6f278fbf\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/06f0cf1c-4959-4569-98e2-3b71dda6e6ef/\", \"task_id\": \"06f0cf1c-4959-4569-98e2-3b71dda6e6ef\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:23:31Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:23:30Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/50075d91-b373-4dea-b05c-bb608ea446a9/\", \"task_id\": \"50075d91-b373-4dea-b05c-bb608ea446a9\"}, {\"_href\": \"/pulp/api/v2/tasks/4475a5c9-bc30-4c36-81c0-ca01d33ceb0b/\", \"task_id\": \"4475a5c9-bc30-4c36-81c0-ca01d33ceb0b\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:23:29-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:23:30-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ec325ca013067bd77209\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ec3133a7d3a2e73beebe\"}, \"id\": \"5432ec315ca0134a6f278feb\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/bfd7ea35-0234-428d-b64b-d5b6d5804f31/\", \"task_id\": \"bfd7ea35-0234-428d-b64b-d5b6d5804f31\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:25:40Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:25:39Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/b175f2d0-8940-494f-9de1-7b1362c1a5c7/\", \"task_id\": \"b175f2d0-8940-494f-9de1-7b1362c1a5c7\"}, {\"_href\": \"/pulp/api/v2/tasks/5ebd78e5-cce1-4eff-bb81-c8ff394c56e2/\", \"task_id\": \"5ebd78e5-cce1-4eff-bb81-c8ff394c56e2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:25:39-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:25:39-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ecb35ca013067bd7721f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ecb333a7d3a2e73beec2\"}, \"id\": \"5432ecb35ca0134a6f278ff5\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/e054346b-7350-4a58-8bf3-4e4792e00963/\", \"task_id\": \"e054346b-7350-4a58-8bf3-4e4792e00963\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:26:02Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:26:01Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/9ec67dc9-c4b9-412a-ac84-c454e37b30ff/\", \"task_id\": \"9ec67dc9-c4b9-412a-ac84-c454e37b30ff\"}, {\"_href\": \"/pulp/api/v2/tasks/91bc5df8-7369-4634-9f1f-f4dbc83fc1a2/\", \"task_id\": \"91bc5df8-7369-4634-9f1f-f4dbc83fc1a2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:26:00-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:26:01-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ecc95ca013067bd7723d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ecc833a7d3a2e73beec6\"}, \"id\": \"5432ecc85ca0134a6f27901f\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/e5f89be4-51a9-4bed-b965-5510683b2ccb/\", \"task_id\": \"e5f89be4-51a9-4bed-b965-5510683b2ccb\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:29:14Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:29:14Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/285355dd-2659-429a-a9e2-12dee30b5cb1/\", \"task_id\": \"285355dd-2659-429a-a9e2-12dee30b5cb1\"}, {\"_href\": \"/pulp/api/v2/tasks/dacc093a-1810-439c-97d8-01b390521778/\", \"task_id\": \"dacc093a-1810-439c-97d8-01b390521778\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:29:13-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:29:13-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ed895ca013067bd7725b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ed8933a7d3a2e73beeca\"}, \"id\": \"5432ed895ca0134a6f279031\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/104ec505-6321-497c-a3a5-7fa11da70421/\", \"task_id\": \"104ec505-6321-497c-a3a5-7fa11da70421\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:32:06Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:32:05Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/88b73d87-e682-4c59-9aa7-847cc8f4759a/\", \"task_id\": \"88b73d87-e682-4c59-9aa7-847cc8f4759a\"}, {\"_href\": \"/pulp/api/v2/tasks/e81db7ea-9ccc-4c94-91ed-c3b28106aa38/\", \"task_id\": \"e81db7ea-9ccc-4c94-91ed-c3b28106aa38\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:32:04-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:32:05-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ee355ca013067bd77279\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ee3433a7d3a2e73beece\"}, \"id\": \"5432ee345ca0134a6f27905d\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/ccd83270-f1bd-4e3c-8fa3-8838e6fccb81/\", \"task_id\": \"ccd83270-f1bd-4e3c-8fa3-8838e6fccb81\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:32:24Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:32:24Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/7e5b7f0a-f3da-45e6-832f-956a7a2b81b4/\", \"task_id\": \"7e5b7f0a-f3da-45e6-832f-956a7a2b81b4\"}, {\"_href\": \"/pulp/api/v2/tasks/418e20dd-bf5a-48e0-b6b7-3f3e38f235a7/\", \"task_id\": \"418e20dd-bf5a-48e0-b6b7-3f3e38f235a7\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:32:23-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:32:23-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ee475ca013067bd77297\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ee4733a7d3a2e73beed2\"}, \"id\": \"5432ee475ca0134a6f279088\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/cc44e362-0c30-4878-b82c-e7dbee7fe9af/\", \"task_id\": \"cc44e362-0c30-4878-b82c-e7dbee7fe9af\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:36:25Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:36:25Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a5e65ee3-fc30-46a7-a2f0-217adbaad98d/\", \"task_id\": \"a5e65ee3-fc30-46a7-a2f0-217adbaad98d\"}, {\"_href\": \"/pulp/api/v2/tasks/d443ec3c-6969-4e3d-95e5-a52d049bf288/\", \"task_id\": \"d443ec3c-6969-4e3d-95e5-a52d049bf288\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:36:24-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:36:24-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ef385ca013067bd772b5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ef3833a7d3a2e73beed6\"}, \"id\": \"5432ef385ca0134a6f27909a\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/c37de44c-51cc-4312-bc4b-300bf8fedbe4/\", \"task_id\": \"c37de44c-51cc-4312-bc4b-300bf8fedbe4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:36:32Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:36:31Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/21be9bc6-1480-45b1-bc54-c9d224f64b6a/\", \"task_id\": \"21be9bc6-1480-45b1-bc54-c9d224f64b6a\"}, {\"_href\": \"/pulp/api/v2/tasks/f3ee7f11-bcd0-4f82-af6f-0151676cf8a5/\", \"task_id\": \"f3ee7f11-bcd0-4f82-af6f-0151676cf8a5\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:36:30-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:36:30-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ef3e5ca013067bd772d3\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ef3e33a7d3a2e73beeda\"}, \"id\": \"5432ef3e5ca0134a6f2790c6\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/c48c488f-49c3-4cc7-8957-8009de750189/\", \"task_id\": \"c48c488f-49c3-4cc7-8957-8009de750189\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:39:10Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:39:10Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8016b11a-4800-4436-b7b4-baccdfee8f3d/\", \"task_id\": \"8016b11a-4800-4436-b7b4-baccdfee8f3d\"}, {\"_href\": \"/pulp/api/v2/tasks/6d60374d-086d-4a11-b759-da8c529aa8f9/\", \"task_id\": \"6d60374d-086d-4a11-b759-da8c529aa8f9\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:39:09-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:39:09-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432efdd5ca013067bd772f1\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432efdd33a7d3a2e73beede\"}, \"id\": \"5432efdd5ca0134a6f2790d8\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/06c15d7f-da77-4af0-8cb2-1f71e44084dd/\", \"task_id\": \"06c15d7f-da77-4af0-8cb2-1f71e44084dd\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:39:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:39:16Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a649c5eb-dfa0-460b-a1c5-3efeb59b49e9/\", \"task_id\": \"a649c5eb-dfa0-460b-a1c5-3efeb59b49e9\"}, {\"_href\": \"/pulp/api/v2/tasks/4e9418dc-d046-4147-b676-b467a40dfda6/\", \"task_id\": \"4e9418dc-d046-4147-b676-b467a40dfda6\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:39:15-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:39:16-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432efe45ca013067bd7730f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432efe333a7d3a2e73beee2\"}, \"id\": \"5432efe35ca0134a6f279105\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/00f1c9e5-c314-4d6f-ad24-e0e4b3b20433/\", \"task_id\": \"00f1c9e5-c314-4d6f-ad24-e0e4b3b20433\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:41:34Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:41:33Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/0a03f3d4-d743-4382-8440-fe1728f079d9/\", \"task_id\": \"0a03f3d4-d743-4382-8440-fe1728f079d9\"}, {\"_href\": \"/pulp/api/v2/tasks/42227d04-9001-4cb9-86be-a977fe891b5e/\", \"task_id\": \"42227d04-9001-4cb9-86be-a977fe891b5e\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:41:32-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:41:32-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f06c5ca013067bd7732d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f06c33a7d3a2e73beee6\"}, \"id\": \"5432f06c5ca0134a6f279117\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/62799e03-bd77-4e15-9823-740c272c8cf6/\", \"task_id\": \"62799e03-bd77-4e15-9823-740c272c8cf6\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:43:18Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:43:17Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/54404de2-353f-4cc6-b4c4-6811f19ec171/\", \"task_id\": \"54404de2-353f-4cc6-b4c4-6811f19ec171\"}, {\"_href\": \"/pulp/api/v2/tasks/f81d1d1a-ee59-44ba-83d0-31fbb27885e2/\", \"task_id\": \"f81d1d1a-ee59-44ba-83d0-31fbb27885e2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:43:16-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:43:16-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f0d45ca013067bd7734b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f0d433a7d3a2e73beeea\"}, \"id\": \"5432f0d45ca0134a6f279142\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/f98962c6-f288-43f0-bef0-9d59a35f2bb7/\", \"task_id\": \"f98962c6-f288-43f0-bef0-9d59a35f2bb7\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:46:00Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:46:00Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/5eac3d4a-e8c5-4c7c-8835-6d1c40d27f1d/\", \"task_id\": \"5eac3d4a-e8c5-4c7c-8835-6d1c40d27f1d\"}, {\"_href\": \"/pulp/api/v2/tasks/c72d6b00-c6f3-4f17-8067-6700d08a3b58/\", \"task_id\": \"c72d6b00-c6f3-4f17-8067-6700d08a3b58\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:45:59-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:45:59-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f1775ca013067bd77369\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f17733a7d3a2e73beeee\"}, \"id\": \"5432f1775ca0134a6f279154\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/a8bceadf-bebf-48d4-a8e1-f2d40541231f/\", \"task_id\": \"a8bceadf-bebf-48d4-a8e1-f2d40541231f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:46:06Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:46:06Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a39f02ad-ed5c-4998-945c-5e2bbbb06a5a/\", \"task_id\": \"a39f02ad-ed5c-4998-945c-5e2bbbb06a5a\"}, {\"_href\": \"/pulp/api/v2/tasks/b29e5cd4-e384-4b3e-b231-c28e3de0b60c/\", \"task_id\": \"b29e5cd4-e384-4b3e-b231-c28e3de0b60c\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:46:05-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:46:06-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f17e5ca013067bd77387\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f17d33a7d3a2e73beef2\"}, \"id\": \"5432f17d5ca0134a6f279180\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/414344ba-15aa-440f-a24b-d3fe18193f3c/\", \"task_id\": \"414344ba-15aa-440f-a24b-d3fe18193f3c\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:49:52Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:49:52Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/64a30d0a-a1fa-493c-9575-7d2e17c6997a/\", \"task_id\": \"64a30d0a-a1fa-493c-9575-7d2e17c6997a\"}, {\"_href\": \"/pulp/api/v2/tasks/38810435-0427-461a-b4df-6d72aa7b5a80/\", \"task_id\": \"38810435-0427-461a-b4df-6d72aa7b5a80\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:49:51-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:49:51-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f25f5ca013067bd773a5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f25f33a7d3a2e73beef6\"}, \"id\": \"5432f25f5ca0134a6f279191\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/41feb23d-f675-4fc6-acac-8cf5216c990f/\", \"task_id\": \"41feb23d-f675-4fc6-acac-8cf5216c990f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:49:58Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:49:57Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/e4f51fbb-8022-4860-831a-8bbc4089b131/\", \"task_id\": \"e4f51fbb-8022-4860-831a-8bbc4089b131\"}, {\"_href\": \"/pulp/api/v2/tasks/1475aa92-d403-4f9f-9acf-d860f88fde15/\", \"task_id\": \"1475aa92-d403-4f9f-9acf-d860f88fde15\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:49:56-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:49:56-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f2645ca013067bd773c3\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f26433a7d3a2e73beefa\"}, \"id\": \"5432f2645ca0134a6f2791bc\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/44a9e382-ea7a-4503-b99f-e0c72a2c4f37/\", \"task_id\": \"44a9e382-ea7a-4503-b99f-e0c72a2c4f37\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:04:36Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:04:36Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/1df64b16-c4c4-4c33-ae97-bff80fed7be3/\", \"task_id\": \"1df64b16-c4c4-4c33-ae97-bff80fed7be3\"}, {\"_href\": \"/pulp/api/v2/tasks/1b7e349e-6d62-4d79-906e-bc8ff19e4e47/\", \"task_id\": \"1b7e349e-6d62-4d79-906e-bc8ff19e4e47\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:04:35-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:04:35-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f5d35ca013067bd773e1\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f5d333a7d3a2e73bef01\"}, \"id\": \"5432f5d35ca0134a6f2791e6\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/45de3728-4202-4385-95f2-6b4de282f9f4/\", \"task_id\": \"45de3728-4202-4385-95f2-6b4de282f9f4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:04:44Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:04:43Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/861f71cc-339a-4504-9c5d-3e99aea73e41/\", \"task_id\": \"861f71cc-339a-4504-9c5d-3e99aea73e41\"}, {\"_href\": \"/pulp/api/v2/tasks/6f8a3759-c7c1-4969-a3dc-7c406ac25919/\", \"task_id\": \"6f8a3759-c7c1-4969-a3dc-7c406ac25919\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:04:42-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:04:42-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f5da5ca013067bd773ff\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f5da33a7d3a2e73bef05\"}, \"id\": \"5432f5da5ca0134a6f279227\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/a48186d6-3734-4626-b5b8-252e6d4c6c34/\", \"task_id\": \"a48186d6-3734-4626-b5b8-252e6d4c6c34\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:05:11Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:05:10Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/d880cf54-205d-4bad-9b98-6b0dbd624429/\", \"task_id\": \"d880cf54-205d-4bad-9b98-6b0dbd624429\"}, {\"_href\": \"/pulp/api/v2/tasks/5a58416c-91eb-472f-8aa9-b56c7ac12925/\", \"task_id\": \"5a58416c-91eb-472f-8aa9-b56c7ac12925\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:05:09-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:05:10-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 13, \"error_message\": null, \"updated_count\": 2, \"details\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f5f65ca013067bd7742f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f5e733a7d3a2e73bef10\"}, \"id\": \"5432f5e75ca0134a6f279256\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/7280be4e-bbae-4a19-aff6-1c4bf171b764/\", \"task_id\": \"7280be4e-bbae-4a19-aff6-1c4bf171b764\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:07:36Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:07:35Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/2913a1f8-72bd-4a81-8795-c37ea04f93a1/\", \"task_id\": \"2913a1f8-72bd-4a81-8795-c37ea04f93a1\"}, {\"_href\": \"/pulp/api/v2/tasks/70b39e0a-39e3-4e59-978b-61b6e0989e60/\", \"task_id\": \"70b39e0a-39e3-4e59-978b-61b6e0989e60\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:07:34-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:07:34-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f6865ca013067bd7744d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f68633a7d3a2e73bef18\"}, \"id\": \"5432f6865ca0134a6f27928c\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/5a16309d-070d-4b23-a9ba-d47ec9383cbc/\", \"task_id\": \"5a16309d-070d-4b23-a9ba-d47ec9383cbc\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:07:43Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:07:42Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/c7fca782-8543-461f-8997-d0cbc9f47af2/\", \"task_id\": \"c7fca782-8543-461f-8997-d0cbc9f47af2\"}, {\"_href\": \"/pulp/api/v2/tasks/f60f4e08-808d-454a-9e13-310a5441dba2/\", \"task_id\": \"f60f4e08-808d-454a-9e13-310a5441dba2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:07:41-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:07:41-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f68d5ca013067bd7746b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f68d33a7d3a2e73bef1c\"}, \"id\": \"5432f68d5ca0134a6f2792cd\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/659f962f-9c98-406b-a82b-f001942e40be/\", \"task_id\": \"659f962f-9c98-406b-a82b-f001942e40be\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:08:01Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:08:00Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/c28f02a3-9b26-469b-9652-818c44767852/\", \"task_id\": \"c28f02a3-9b26-469b-9652-818c44767852\"}, {\"_href\": \"/pulp/api/v2/tasks/6992fd30-7789-4c6d-ac09-864f8cbcbf0f/\", \"task_id\": \"6992fd30-7789-4c6d-ac09-864f8cbcbf0f\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:07:59-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:08:00-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 13, \"error_message\": null, \"updated_count\": 2, \"details\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f6a05ca013067bd7749b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f69a33a7d3a2e73bef27\"}, \"id\": \"5432f69a5ca0134a6f2792fc\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/9c6477ff-cad4-4648-bb52-53c5725b7c40/\", \"task_id\": \"9c6477ff-cad4-4648-bb52-53c5725b7c40\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T12:56:03Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T12:56:03Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/eba6e1ef-251d-4158-b9a4-aa4b544490d2/\", \"task_id\": \"eba6e1ef-251d-4158-b9a4-aa4b544490d2\"}, {\"_href\": \"/pulp/api/v2/tasks/e4148351-9347-4c27-aa55-9e273c462511/\", \"task_id\": \"e4148351-9347-4c27-aa55-9e273c462511\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T08:56:02-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T08:56:02-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e2e25ca013067bd774d7\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e2e233a7d3a2e73bef32\"}, \"id\": \"5433e2e25ca0134a6f279343\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/5ca23d78-a417-4f59-9e47-a5de86fd91c9/\", \"task_id\": \"5ca23d78-a417-4f59-9e47-a5de86fd91c9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:00:43Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:00:42Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8edc7f56-5a80-4fd8-8ac7-358d9da75e1a/\", \"task_id\": \"8edc7f56-5a80-4fd8-8ac7-358d9da75e1a\"}, {\"_href\": \"/pulp/api/v2/tasks/c1c2d8d9-d562-4c10-821c-dcc2717343a2/\", \"task_id\": \"c1c2d8d9-d562-4c10-821c-dcc2717343a2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:00:41-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:00:42-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e3fa5ca013067bd774f5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e3f933a7d3a2e73bef36\"}, \"id\": \"5433e3f95ca0134a6f279355\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/92836870-1c59-4282-937d-9b2213b3f95d/\", \"task_id\": \"92836870-1c59-4282-937d-9b2213b3f95d\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:00:49Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:00:48Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/cd7d3d30-b92a-47f5-b46b-f546a9e0d5d3/\", \"task_id\": \"cd7d3d30-b92a-47f5-b46b-f546a9e0d5d3\"}, {\"_href\": \"/pulp/api/v2/tasks/cde88818-1ba7-4254-9153-ca4a65a29dea/\", \"task_id\": \"cde88818-1ba7-4254-9153-ca4a65a29dea\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:00:48-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:00:48-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e4005ca013067bd77513\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e40033a7d3a2e73bef3a\"}, \"id\": \"5433e4005ca0134a6f279383\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/64ee9346-1a9f-401c-8d3c-f3bae63ec715/\", \"task_id\": \"64ee9346-1a9f-401c-8d3c-f3bae63ec715\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:03:50Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:03:49Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/bffa56c1-239f-4217-bac4-a5b144e3951e/\", \"task_id\": \"bffa56c1-239f-4217-bac4-a5b144e3951e\"}, {\"_href\": \"/pulp/api/v2/tasks/fb909e33-b8f2-4bfc-81d3-a17d826542c0/\", \"task_id\": \"fb909e33-b8f2-4bfc-81d3-a17d826542c0\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:03:49-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:03:49-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e4b55ca013067bd77531\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e4b533a7d3a2e73bef3e\"}, \"id\": \"5433e4b55ca0134a6f279395\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/e44e5ed0-39fc-46ff-a8a3-768e370d8836/\", \"task_id\": \"e44e5ed0-39fc-46ff-a8a3-768e370d8836\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:03:56Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:03:55Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a08e8ee8-078a-4c0f-8437-0c2f650ba2f6/\", \"task_id\": \"a08e8ee8-078a-4c0f-8437-0c2f650ba2f6\"}, {\"_href\": \"/pulp/api/v2/tasks/5911ac6a-516a-41cd-8e9c-b29a4efbb687/\", \"task_id\": \"5911ac6a-516a-41cd-8e9c-b29a4efbb687\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:03:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:03:54-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e4ba5ca013067bd7754f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e4ba33a7d3a2e73bef42\"}, \"id\": \"5433e4ba5ca0134a6f2793c1\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/92bdaac6-5419-48f1-b659-e98b26e83df4/\", \"task_id\": \"92bdaac6-5419-48f1-b659-e98b26e83df4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:12:39Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:12:38Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/3cb0cac5-f754-49eb-8f74-c0f3723e2f0a/\", \"task_id\": \"3cb0cac5-f754-49eb-8f74-c0f3723e2f0a\"}, {\"_href\": \"/pulp/api/v2/tasks/b3fc8eb5-9e5e-477a-b80a-c9c1572dba97/\", \"task_id\": \"b3fc8eb5-9e5e-477a-b80a-c9c1572dba97\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:12:37-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:12:38-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e6c65ca013067bd7756d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e6c533a7d3a2e73bef47\"}, \"id\": \"5433e6c55ca0134a6f2793d3\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/7acc93c7-7598-4b8f-8c8e-91162d2acf17/\", \"task_id\": \"7acc93c7-7598-4b8f-8c8e-91162d2acf17\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:12:45Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:12:44Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/6a4f9534-9278-4c72-9d8f-bb7a2f06aa54/\", \"task_id\": \"6a4f9534-9278-4c72-9d8f-bb7a2f06aa54\"}, {\"_href\": \"/pulp/api/v2/tasks/2e5369ba-7b3f-49e0-933a-55a0d9f555ff/\", \"task_id\": \"2e5369ba-7b3f-49e0-933a-55a0d9f555ff\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:12:43-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:12:43-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e6cb5ca013067bd7758b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e6cb33a7d3a2e73bef4b\"}, \"id\": \"5433e6cb5ca0134a6f2793ff\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/\", \"task_id\": \"96da0f16-4ba1-49d4-b38e-5fe435e0afac\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:16:34Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:33Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/82317804-bbf7-4b95-94ad-ce6f8c9ddf83/\", \"task_id\": \"82317804-bbf7-4b95-94ad-ce6f8c9ddf83\"}, {\"_href\": \"/pulp/api/v2/tasks/ad4132ba-5b47-4462-955a-2ddc767405d7/\", \"task_id\": \"ad4132ba-5b47-4462-955a-2ddc767405d7\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:16:32-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:16:33-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e7b15ca013067bd775a9\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e7b033a7d3a2e73bef52\"}, \"id\": \"5433e7b05ca0134a6f279427\"}]" + encoding: US-ASCII + string: "[{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/e218793a-86e4-4ef6-b04a-86d3fbf8203f/\", \"task_id\": \"e218793a-86e4-4ef6-b04a-86d3fbf8203f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-08-05T19:59:20Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:20Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/b4a64a10-382f-46fa-a69e-6314bb641915/\", \"task_id\": \"b4a64a10-382f-46fa-a69e-6314bb641915\"}, {\"_href\": \"/pulp/api/v2/tasks/34042c35-b752-46a2-8b70-c7a4c0fb55f4/\", \"task_id\": \"34042c35-b752-46a2-8b70-c7a4c0fb55f4\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-08-05T19:59:20Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-08-05T19:59:20Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 15, \"error_message\": null, \"updated_count\": 0, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55c26b18115138443de6e9cb\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55c26b187164df9aa32ab31d\"}, \"id\": \"55c26b181151384439db715d\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:37 GMT + recorded_at: Wed, 05 Aug 2015 19:59:23 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/?tag=pulp:action:sync + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/?tag=pulp:action:sync body: encoding: US-ASCII string: "" @@ -1120,7 +1494,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="aBKcs9m7Lr0qbdMRXJsZGT8jpyabQcidqY7Hg52Yw", oauth_signature="W0JGHVawNbKZBjr9cP%2Fk5JoPxNM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687798", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="yKOmNoOSgJlhAXgAlppFUfqrVGw80jfAOoFxBEQq3fE", oauth_signature="%2BNYMXE2ZM8nFDk6lEUgXMDV4yYs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804763", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -1131,25 +1505,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:38 GMT + - Wed, 05 Aug 2015 19:59:23 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "82534" + - "2218" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "[{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/553a0a7f-c3b5-4d1f-b8d8-488fd6e1a268/\", \"task_id\": \"553a0a7f-c3b5-4d1f-b8d8-488fd6e1a268\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T18:55:20Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T18:55:20Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/47cb65cf-5de9-4ec5-a504-a1e35d136a7c/\", \"task_id\": \"47cb65cf-5de9-4ec5-a504-a1e35d136a7c\"}, {\"_href\": \"/pulp/api/v2/tasks/14f7aaa8-4bc6-462c-8288-6017e7cbe913/\", \"task_id\": \"14f7aaa8-4bc6-462c-8288-6017e7cbe913\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T14:55:17-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T14:55:19-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 13, \"error_message\": null, \"updated_count\": 2, \"details\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e5975ca013067bd77137\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e59533a7d3a2e73beea1\"}, \"id\": \"5432e5955ca0134a6f278ee7\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/0dbd485e-77e8-4be7-b48c-d698a017c32b/\", \"task_id\": \"0dbd485e-77e8-4be7-b48c-d698a017c32b\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T18:57:28Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T18:57:27Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/f3d2a603-6247-4a2d-8e66-0d2a78f4094c/\", \"task_id\": \"f3d2a603-6247-4a2d-8e66-0d2a78f4094c\"}, {\"_href\": \"/pulp/api/v2/tasks/70c07a5f-e0f2-4159-a62f-1bfa6b455771/\", \"task_id\": \"70c07a5f-e0f2-4159-a62f-1bfa6b455771\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T14:57:26-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T14:57:26-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e6165ca013067bd77155\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e61633a7d3a2e73beea5\"}, \"id\": \"5432e6165ca0134a6f278f4d\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/65c9d724-2d99-443e-a871-c32fa4aac918/\", \"task_id\": \"65c9d724-2d99-443e-a871-c32fa4aac918\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:11:12Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:11:11Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/737e5e96-2e9d-4820-a386-fca2de6400df/\", \"task_id\": \"737e5e96-2e9d-4820-a386-fca2de6400df\"}, {\"_href\": \"/pulp/api/v2/tasks/dbad6390-2f1f-49a5-ae9e-794ed2f03163/\", \"task_id\": \"dbad6390-2f1f-49a5-ae9e-794ed2f03163\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:11:10-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:11:11-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e94f5ca013067bd77173\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e94e33a7d3a2e73beea9\"}, \"id\": \"5432e94e5ca0134a6f278f5f\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/1c16b113-e1ae-414e-8c8d-f4ec2c6bf0bc/\", \"task_id\": \"1c16b113-e1ae-414e-8c8d-f4ec2c6bf0bc\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:11:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:11:16Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8a225336-1ea1-4eec-9e4d-1b2bcb30b146/\", \"task_id\": \"8a225336-1ea1-4eec-9e4d-1b2bcb30b146\"}, {\"_href\": \"/pulp/api/v2/tasks/2f5bb491-554b-47da-a286-810921d0c46f/\", \"task_id\": \"2f5bb491-554b-47da-a286-810921d0c46f\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:11:15-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:11:15-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e9535ca013067bd77191\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e95333a7d3a2e73beead\"}, \"id\": \"5432e9535ca0134a6f278f72\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/0e1d86ae-4603-47b5-b2f4-471c55180c0e/\", \"task_id\": \"0e1d86ae-4603-47b5-b2f4-471c55180c0e\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:18:55Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:18:55Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/5fc6be19-b539-4d58-923e-8539c74de4f2/\", \"task_id\": \"5fc6be19-b539-4d58-923e-8539c74de4f2\"}, {\"_href\": \"/pulp/api/v2/tasks/e78fd5ca-06f5-474f-819e-c03295e63450/\", \"task_id\": \"e78fd5ca-06f5-474f-819e-c03295e63450\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:18:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:18:54-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432eb1e5ca013067bd771af\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432eb1e33a7d3a2e73beeb2\"}, \"id\": \"5432eb1e5ca0134a6f278f84\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/43b939b4-8243-46e6-a07c-300c4824df7a/\", \"task_id\": \"43b939b4-8243-46e6-a07c-300c4824df7a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:19:03Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:19:03Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/dd469f38-b876-4517-89c6-872f0b2275f2/\", \"task_id\": \"dd469f38-b876-4517-89c6-872f0b2275f2\"}, {\"_href\": \"/pulp/api/v2/tasks/cbc613aa-e8f7-48cb-b9e2-af4800857473/\", \"task_id\": \"cbc613aa-e8f7-48cb-b9e2-af4800857473\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:19:01-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:19:02-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432eb265ca013067bd771cd\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432eb2533a7d3a2e73beeb6\"}, \"id\": \"5432eb255ca0134a6f278faf\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/613a3c28-e4ec-4f32-924a-8db076a9b6a9/\", \"task_id\": \"613a3c28-e4ec-4f32-924a-8db076a9b6a9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:21:56Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:21:55Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/80d744f1-95d0-41eb-aafd-8760da440f7d/\", \"task_id\": \"80d744f1-95d0-41eb-aafd-8760da440f7d\"}, {\"_href\": \"/pulp/api/v2/tasks/03534a8e-c315-4ddb-86be-d3c3fc0edddd/\", \"task_id\": \"03534a8e-c315-4ddb-86be-d3c3fc0edddd\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:21:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:21:55-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ebd35ca013067bd771eb\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ebd233a7d3a2e73beeba\"}, \"id\": \"5432ebd25ca0134a6f278fbf\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/06f0cf1c-4959-4569-98e2-3b71dda6e6ef/\", \"task_id\": \"06f0cf1c-4959-4569-98e2-3b71dda6e6ef\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:23:31Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:23:30Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/50075d91-b373-4dea-b05c-bb608ea446a9/\", \"task_id\": \"50075d91-b373-4dea-b05c-bb608ea446a9\"}, {\"_href\": \"/pulp/api/v2/tasks/4475a5c9-bc30-4c36-81c0-ca01d33ceb0b/\", \"task_id\": \"4475a5c9-bc30-4c36-81c0-ca01d33ceb0b\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:23:29-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:23:30-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ec325ca013067bd77209\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ec3133a7d3a2e73beebe\"}, \"id\": \"5432ec315ca0134a6f278feb\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/bfd7ea35-0234-428d-b64b-d5b6d5804f31/\", \"task_id\": \"bfd7ea35-0234-428d-b64b-d5b6d5804f31\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:25:40Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:25:39Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/b175f2d0-8940-494f-9de1-7b1362c1a5c7/\", \"task_id\": \"b175f2d0-8940-494f-9de1-7b1362c1a5c7\"}, {\"_href\": \"/pulp/api/v2/tasks/5ebd78e5-cce1-4eff-bb81-c8ff394c56e2/\", \"task_id\": \"5ebd78e5-cce1-4eff-bb81-c8ff394c56e2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:25:39-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:25:39-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ecb35ca013067bd7721f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ecb333a7d3a2e73beec2\"}, \"id\": \"5432ecb35ca0134a6f278ff5\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/e054346b-7350-4a58-8bf3-4e4792e00963/\", \"task_id\": \"e054346b-7350-4a58-8bf3-4e4792e00963\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:26:02Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:26:01Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/9ec67dc9-c4b9-412a-ac84-c454e37b30ff/\", \"task_id\": \"9ec67dc9-c4b9-412a-ac84-c454e37b30ff\"}, {\"_href\": \"/pulp/api/v2/tasks/91bc5df8-7369-4634-9f1f-f4dbc83fc1a2/\", \"task_id\": \"91bc5df8-7369-4634-9f1f-f4dbc83fc1a2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:26:00-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:26:01-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ecc95ca013067bd7723d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ecc833a7d3a2e73beec6\"}, \"id\": \"5432ecc85ca0134a6f27901f\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/e5f89be4-51a9-4bed-b965-5510683b2ccb/\", \"task_id\": \"e5f89be4-51a9-4bed-b965-5510683b2ccb\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:29:14Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:29:14Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/285355dd-2659-429a-a9e2-12dee30b5cb1/\", \"task_id\": \"285355dd-2659-429a-a9e2-12dee30b5cb1\"}, {\"_href\": \"/pulp/api/v2/tasks/dacc093a-1810-439c-97d8-01b390521778/\", \"task_id\": \"dacc093a-1810-439c-97d8-01b390521778\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:29:13-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:29:13-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ed895ca013067bd7725b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ed8933a7d3a2e73beeca\"}, \"id\": \"5432ed895ca0134a6f279031\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/104ec505-6321-497c-a3a5-7fa11da70421/\", \"task_id\": \"104ec505-6321-497c-a3a5-7fa11da70421\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:32:06Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:32:05Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/88b73d87-e682-4c59-9aa7-847cc8f4759a/\", \"task_id\": \"88b73d87-e682-4c59-9aa7-847cc8f4759a\"}, {\"_href\": \"/pulp/api/v2/tasks/e81db7ea-9ccc-4c94-91ed-c3b28106aa38/\", \"task_id\": \"e81db7ea-9ccc-4c94-91ed-c3b28106aa38\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:32:04-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:32:05-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ee355ca013067bd77279\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ee3433a7d3a2e73beece\"}, \"id\": \"5432ee345ca0134a6f27905d\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/ccd83270-f1bd-4e3c-8fa3-8838e6fccb81/\", \"task_id\": \"ccd83270-f1bd-4e3c-8fa3-8838e6fccb81\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:32:24Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:32:24Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/7e5b7f0a-f3da-45e6-832f-956a7a2b81b4/\", \"task_id\": \"7e5b7f0a-f3da-45e6-832f-956a7a2b81b4\"}, {\"_href\": \"/pulp/api/v2/tasks/418e20dd-bf5a-48e0-b6b7-3f3e38f235a7/\", \"task_id\": \"418e20dd-bf5a-48e0-b6b7-3f3e38f235a7\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:32:23-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:32:23-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ee475ca013067bd77297\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ee4733a7d3a2e73beed2\"}, \"id\": \"5432ee475ca0134a6f279088\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/cc44e362-0c30-4878-b82c-e7dbee7fe9af/\", \"task_id\": \"cc44e362-0c30-4878-b82c-e7dbee7fe9af\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:36:25Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:36:25Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a5e65ee3-fc30-46a7-a2f0-217adbaad98d/\", \"task_id\": \"a5e65ee3-fc30-46a7-a2f0-217adbaad98d\"}, {\"_href\": \"/pulp/api/v2/tasks/d443ec3c-6969-4e3d-95e5-a52d049bf288/\", \"task_id\": \"d443ec3c-6969-4e3d-95e5-a52d049bf288\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:36:24-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:36:24-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ef385ca013067bd772b5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ef3833a7d3a2e73beed6\"}, \"id\": \"5432ef385ca0134a6f27909a\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/c37de44c-51cc-4312-bc4b-300bf8fedbe4/\", \"task_id\": \"c37de44c-51cc-4312-bc4b-300bf8fedbe4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:36:32Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:36:31Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/21be9bc6-1480-45b1-bc54-c9d224f64b6a/\", \"task_id\": \"21be9bc6-1480-45b1-bc54-c9d224f64b6a\"}, {\"_href\": \"/pulp/api/v2/tasks/f3ee7f11-bcd0-4f82-af6f-0151676cf8a5/\", \"task_id\": \"f3ee7f11-bcd0-4f82-af6f-0151676cf8a5\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:36:30-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:36:30-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ef3e5ca013067bd772d3\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ef3e33a7d3a2e73beeda\"}, \"id\": \"5432ef3e5ca0134a6f2790c6\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/c48c488f-49c3-4cc7-8957-8009de750189/\", \"task_id\": \"c48c488f-49c3-4cc7-8957-8009de750189\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:39:10Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:39:10Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8016b11a-4800-4436-b7b4-baccdfee8f3d/\", \"task_id\": \"8016b11a-4800-4436-b7b4-baccdfee8f3d\"}, {\"_href\": \"/pulp/api/v2/tasks/6d60374d-086d-4a11-b759-da8c529aa8f9/\", \"task_id\": \"6d60374d-086d-4a11-b759-da8c529aa8f9\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:39:09-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:39:09-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432efdd5ca013067bd772f1\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432efdd33a7d3a2e73beede\"}, \"id\": \"5432efdd5ca0134a6f2790d8\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/06c15d7f-da77-4af0-8cb2-1f71e44084dd/\", \"task_id\": \"06c15d7f-da77-4af0-8cb2-1f71e44084dd\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:39:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:39:16Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a649c5eb-dfa0-460b-a1c5-3efeb59b49e9/\", \"task_id\": \"a649c5eb-dfa0-460b-a1c5-3efeb59b49e9\"}, {\"_href\": \"/pulp/api/v2/tasks/4e9418dc-d046-4147-b676-b467a40dfda6/\", \"task_id\": \"4e9418dc-d046-4147-b676-b467a40dfda6\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:39:15-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:39:16-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432efe45ca013067bd7730f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432efe333a7d3a2e73beee2\"}, \"id\": \"5432efe35ca0134a6f279105\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/00f1c9e5-c314-4d6f-ad24-e0e4b3b20433/\", \"task_id\": \"00f1c9e5-c314-4d6f-ad24-e0e4b3b20433\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:41:34Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:41:33Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/0a03f3d4-d743-4382-8440-fe1728f079d9/\", \"task_id\": \"0a03f3d4-d743-4382-8440-fe1728f079d9\"}, {\"_href\": \"/pulp/api/v2/tasks/42227d04-9001-4cb9-86be-a977fe891b5e/\", \"task_id\": \"42227d04-9001-4cb9-86be-a977fe891b5e\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:41:32-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:41:32-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f06c5ca013067bd7732d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f06c33a7d3a2e73beee6\"}, \"id\": \"5432f06c5ca0134a6f279117\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/62799e03-bd77-4e15-9823-740c272c8cf6/\", \"task_id\": \"62799e03-bd77-4e15-9823-740c272c8cf6\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:43:18Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:43:17Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/54404de2-353f-4cc6-b4c4-6811f19ec171/\", \"task_id\": \"54404de2-353f-4cc6-b4c4-6811f19ec171\"}, {\"_href\": \"/pulp/api/v2/tasks/f81d1d1a-ee59-44ba-83d0-31fbb27885e2/\", \"task_id\": \"f81d1d1a-ee59-44ba-83d0-31fbb27885e2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:43:16-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:43:16-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f0d45ca013067bd7734b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f0d433a7d3a2e73beeea\"}, \"id\": \"5432f0d45ca0134a6f279142\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/f98962c6-f288-43f0-bef0-9d59a35f2bb7/\", \"task_id\": \"f98962c6-f288-43f0-bef0-9d59a35f2bb7\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:46:00Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:46:00Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/5eac3d4a-e8c5-4c7c-8835-6d1c40d27f1d/\", \"task_id\": \"5eac3d4a-e8c5-4c7c-8835-6d1c40d27f1d\"}, {\"_href\": \"/pulp/api/v2/tasks/c72d6b00-c6f3-4f17-8067-6700d08a3b58/\", \"task_id\": \"c72d6b00-c6f3-4f17-8067-6700d08a3b58\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:45:59-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:45:59-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f1775ca013067bd77369\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f17733a7d3a2e73beeee\"}, \"id\": \"5432f1775ca0134a6f279154\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/a8bceadf-bebf-48d4-a8e1-f2d40541231f/\", \"task_id\": \"a8bceadf-bebf-48d4-a8e1-f2d40541231f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:46:06Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:46:06Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a39f02ad-ed5c-4998-945c-5e2bbbb06a5a/\", \"task_id\": \"a39f02ad-ed5c-4998-945c-5e2bbbb06a5a\"}, {\"_href\": \"/pulp/api/v2/tasks/b29e5cd4-e384-4b3e-b231-c28e3de0b60c/\", \"task_id\": \"b29e5cd4-e384-4b3e-b231-c28e3de0b60c\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:46:05-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:46:06-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f17e5ca013067bd77387\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f17d33a7d3a2e73beef2\"}, \"id\": \"5432f17d5ca0134a6f279180\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/414344ba-15aa-440f-a24b-d3fe18193f3c/\", \"task_id\": \"414344ba-15aa-440f-a24b-d3fe18193f3c\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:49:52Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:49:52Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/64a30d0a-a1fa-493c-9575-7d2e17c6997a/\", \"task_id\": \"64a30d0a-a1fa-493c-9575-7d2e17c6997a\"}, {\"_href\": \"/pulp/api/v2/tasks/38810435-0427-461a-b4df-6d72aa7b5a80/\", \"task_id\": \"38810435-0427-461a-b4df-6d72aa7b5a80\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:49:51-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:49:51-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f25f5ca013067bd773a5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f25f33a7d3a2e73beef6\"}, \"id\": \"5432f25f5ca0134a6f279191\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/41feb23d-f675-4fc6-acac-8cf5216c990f/\", \"task_id\": \"41feb23d-f675-4fc6-acac-8cf5216c990f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:49:58Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:49:57Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/e4f51fbb-8022-4860-831a-8bbc4089b131/\", \"task_id\": \"e4f51fbb-8022-4860-831a-8bbc4089b131\"}, {\"_href\": \"/pulp/api/v2/tasks/1475aa92-d403-4f9f-9acf-d860f88fde15/\", \"task_id\": \"1475aa92-d403-4f9f-9acf-d860f88fde15\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:49:56-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:49:56-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f2645ca013067bd773c3\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f26433a7d3a2e73beefa\"}, \"id\": \"5432f2645ca0134a6f2791bc\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/44a9e382-ea7a-4503-b99f-e0c72a2c4f37/\", \"task_id\": \"44a9e382-ea7a-4503-b99f-e0c72a2c4f37\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:04:36Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:04:36Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/1df64b16-c4c4-4c33-ae97-bff80fed7be3/\", \"task_id\": \"1df64b16-c4c4-4c33-ae97-bff80fed7be3\"}, {\"_href\": \"/pulp/api/v2/tasks/1b7e349e-6d62-4d79-906e-bc8ff19e4e47/\", \"task_id\": \"1b7e349e-6d62-4d79-906e-bc8ff19e4e47\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:04:35-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:04:35-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f5d35ca013067bd773e1\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f5d333a7d3a2e73bef01\"}, \"id\": \"5432f5d35ca0134a6f2791e6\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/45de3728-4202-4385-95f2-6b4de282f9f4/\", \"task_id\": \"45de3728-4202-4385-95f2-6b4de282f9f4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:04:44Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:04:43Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/861f71cc-339a-4504-9c5d-3e99aea73e41/\", \"task_id\": \"861f71cc-339a-4504-9c5d-3e99aea73e41\"}, {\"_href\": \"/pulp/api/v2/tasks/6f8a3759-c7c1-4969-a3dc-7c406ac25919/\", \"task_id\": \"6f8a3759-c7c1-4969-a3dc-7c406ac25919\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:04:42-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:04:42-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f5da5ca013067bd773ff\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f5da33a7d3a2e73bef05\"}, \"id\": \"5432f5da5ca0134a6f279227\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/a48186d6-3734-4626-b5b8-252e6d4c6c34/\", \"task_id\": \"a48186d6-3734-4626-b5b8-252e6d4c6c34\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:05:11Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:05:10Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/d880cf54-205d-4bad-9b98-6b0dbd624429/\", \"task_id\": \"d880cf54-205d-4bad-9b98-6b0dbd624429\"}, {\"_href\": \"/pulp/api/v2/tasks/5a58416c-91eb-472f-8aa9-b56c7ac12925/\", \"task_id\": \"5a58416c-91eb-472f-8aa9-b56c7ac12925\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:05:09-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:05:10-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 13, \"error_message\": null, \"updated_count\": 2, \"details\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f5f65ca013067bd7742f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f5e733a7d3a2e73bef10\"}, \"id\": \"5432f5e75ca0134a6f279256\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/7280be4e-bbae-4a19-aff6-1c4bf171b764/\", \"task_id\": \"7280be4e-bbae-4a19-aff6-1c4bf171b764\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:07:36Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:07:35Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/2913a1f8-72bd-4a81-8795-c37ea04f93a1/\", \"task_id\": \"2913a1f8-72bd-4a81-8795-c37ea04f93a1\"}, {\"_href\": \"/pulp/api/v2/tasks/70b39e0a-39e3-4e59-978b-61b6e0989e60/\", \"task_id\": \"70b39e0a-39e3-4e59-978b-61b6e0989e60\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:07:34-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:07:34-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f6865ca013067bd7744d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f68633a7d3a2e73bef18\"}, \"id\": \"5432f6865ca0134a6f27928c\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/5a16309d-070d-4b23-a9ba-d47ec9383cbc/\", \"task_id\": \"5a16309d-070d-4b23-a9ba-d47ec9383cbc\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:07:43Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:07:42Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/c7fca782-8543-461f-8997-d0cbc9f47af2/\", \"task_id\": \"c7fca782-8543-461f-8997-d0cbc9f47af2\"}, {\"_href\": \"/pulp/api/v2/tasks/f60f4e08-808d-454a-9e13-310a5441dba2/\", \"task_id\": \"f60f4e08-808d-454a-9e13-310a5441dba2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:07:41-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:07:41-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f68d5ca013067bd7746b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f68d33a7d3a2e73bef1c\"}, \"id\": \"5432f68d5ca0134a6f2792cd\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/659f962f-9c98-406b-a82b-f001942e40be/\", \"task_id\": \"659f962f-9c98-406b-a82b-f001942e40be\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:08:01Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:08:00Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/c28f02a3-9b26-469b-9652-818c44767852/\", \"task_id\": \"c28f02a3-9b26-469b-9652-818c44767852\"}, {\"_href\": \"/pulp/api/v2/tasks/6992fd30-7789-4c6d-ac09-864f8cbcbf0f/\", \"task_id\": \"6992fd30-7789-4c6d-ac09-864f8cbcbf0f\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:07:59-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:08:00-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 13, \"error_message\": null, \"updated_count\": 2, \"details\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f6a05ca013067bd7749b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f69a33a7d3a2e73bef27\"}, \"id\": \"5432f69a5ca0134a6f2792fc\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/9c6477ff-cad4-4648-bb52-53c5725b7c40/\", \"task_id\": \"9c6477ff-cad4-4648-bb52-53c5725b7c40\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T12:56:03Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T12:56:03Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/eba6e1ef-251d-4158-b9a4-aa4b544490d2/\", \"task_id\": \"eba6e1ef-251d-4158-b9a4-aa4b544490d2\"}, {\"_href\": \"/pulp/api/v2/tasks/e4148351-9347-4c27-aa55-9e273c462511/\", \"task_id\": \"e4148351-9347-4c27-aa55-9e273c462511\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T08:56:02-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T08:56:02-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e2e25ca013067bd774d7\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e2e233a7d3a2e73bef32\"}, \"id\": \"5433e2e25ca0134a6f279343\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/5ca23d78-a417-4f59-9e47-a5de86fd91c9/\", \"task_id\": \"5ca23d78-a417-4f59-9e47-a5de86fd91c9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:00:43Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:00:42Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8edc7f56-5a80-4fd8-8ac7-358d9da75e1a/\", \"task_id\": \"8edc7f56-5a80-4fd8-8ac7-358d9da75e1a\"}, {\"_href\": \"/pulp/api/v2/tasks/c1c2d8d9-d562-4c10-821c-dcc2717343a2/\", \"task_id\": \"c1c2d8d9-d562-4c10-821c-dcc2717343a2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:00:41-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:00:42-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e3fa5ca013067bd774f5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e3f933a7d3a2e73bef36\"}, \"id\": \"5433e3f95ca0134a6f279355\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/92836870-1c59-4282-937d-9b2213b3f95d/\", \"task_id\": \"92836870-1c59-4282-937d-9b2213b3f95d\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:00:49Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:00:48Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/cd7d3d30-b92a-47f5-b46b-f546a9e0d5d3/\", \"task_id\": \"cd7d3d30-b92a-47f5-b46b-f546a9e0d5d3\"}, {\"_href\": \"/pulp/api/v2/tasks/cde88818-1ba7-4254-9153-ca4a65a29dea/\", \"task_id\": \"cde88818-1ba7-4254-9153-ca4a65a29dea\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:00:48-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:00:48-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e4005ca013067bd77513\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e40033a7d3a2e73bef3a\"}, \"id\": \"5433e4005ca0134a6f279383\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/64ee9346-1a9f-401c-8d3c-f3bae63ec715/\", \"task_id\": \"64ee9346-1a9f-401c-8d3c-f3bae63ec715\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:03:50Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:03:49Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/bffa56c1-239f-4217-bac4-a5b144e3951e/\", \"task_id\": \"bffa56c1-239f-4217-bac4-a5b144e3951e\"}, {\"_href\": \"/pulp/api/v2/tasks/fb909e33-b8f2-4bfc-81d3-a17d826542c0/\", \"task_id\": \"fb909e33-b8f2-4bfc-81d3-a17d826542c0\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:03:49-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:03:49-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e4b55ca013067bd77531\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e4b533a7d3a2e73bef3e\"}, \"id\": \"5433e4b55ca0134a6f279395\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/e44e5ed0-39fc-46ff-a8a3-768e370d8836/\", \"task_id\": \"e44e5ed0-39fc-46ff-a8a3-768e370d8836\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:03:56Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:03:55Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a08e8ee8-078a-4c0f-8437-0c2f650ba2f6/\", \"task_id\": \"a08e8ee8-078a-4c0f-8437-0c2f650ba2f6\"}, {\"_href\": \"/pulp/api/v2/tasks/5911ac6a-516a-41cd-8e9c-b29a4efbb687/\", \"task_id\": \"5911ac6a-516a-41cd-8e9c-b29a4efbb687\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:03:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:03:54-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e4ba5ca013067bd7754f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e4ba33a7d3a2e73bef42\"}, \"id\": \"5433e4ba5ca0134a6f2793c1\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/92bdaac6-5419-48f1-b659-e98b26e83df4/\", \"task_id\": \"92bdaac6-5419-48f1-b659-e98b26e83df4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:12:39Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:12:38Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/3cb0cac5-f754-49eb-8f74-c0f3723e2f0a/\", \"task_id\": \"3cb0cac5-f754-49eb-8f74-c0f3723e2f0a\"}, {\"_href\": \"/pulp/api/v2/tasks/b3fc8eb5-9e5e-477a-b80a-c9c1572dba97/\", \"task_id\": \"b3fc8eb5-9e5e-477a-b80a-c9c1572dba97\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:12:37-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:12:38-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e6c65ca013067bd7756d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e6c533a7d3a2e73bef47\"}, \"id\": \"5433e6c55ca0134a6f2793d3\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/7acc93c7-7598-4b8f-8c8e-91162d2acf17/\", \"task_id\": \"7acc93c7-7598-4b8f-8c8e-91162d2acf17\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:12:45Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:12:44Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/6a4f9534-9278-4c72-9d8f-bb7a2f06aa54/\", \"task_id\": \"6a4f9534-9278-4c72-9d8f-bb7a2f06aa54\"}, {\"_href\": \"/pulp/api/v2/tasks/2e5369ba-7b3f-49e0-933a-55a0d9f555ff/\", \"task_id\": \"2e5369ba-7b3f-49e0-933a-55a0d9f555ff\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:12:43-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:12:43-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e6cb5ca013067bd7758b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e6cb33a7d3a2e73bef4b\"}, \"id\": \"5433e6cb5ca0134a6f2793ff\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/\", \"task_id\": \"96da0f16-4ba1-49d4-b38e-5fe435e0afac\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:16:34Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:33Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/82317804-bbf7-4b95-94ad-ce6f8c9ddf83/\", \"task_id\": \"82317804-bbf7-4b95-94ad-ce6f8c9ddf83\"}, {\"_href\": \"/pulp/api/v2/tasks/ad4132ba-5b47-4462-955a-2ddc767405d7/\", \"task_id\": \"ad4132ba-5b47-4462-955a-2ddc767405d7\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:16:32-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:16:33-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e7b15ca013067bd775a9\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e7b033a7d3a2e73bef52\"}, \"id\": \"5433e7b05ca0134a6f279427\"}]" + encoding: US-ASCII + string: "[{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/e218793a-86e4-4ef6-b04a-86d3fbf8203f/\", \"task_id\": \"e218793a-86e4-4ef6-b04a-86d3fbf8203f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-08-05T19:59:20Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:20Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/b4a64a10-382f-46fa-a69e-6314bb641915/\", \"task_id\": \"b4a64a10-382f-46fa-a69e-6314bb641915\"}, {\"_href\": \"/pulp/api/v2/tasks/34042c35-b752-46a2-8b70-c7a4c0fb55f4/\", \"task_id\": \"34042c35-b752-46a2-8b70-c7a4c0fb55f4\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-08-05T19:59:20Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-08-05T19:59:20Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 15, \"error_message\": null, \"updated_count\": 0, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55c26b18115138443de6e9cb\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55c26b187164df9aa32ab31d\"}, \"id\": \"55c26b181151384439db715d\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:38 GMT + recorded_at: Wed, 05 Aug 2015 19:59:23 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/?tag=pulp:action:sync + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/?tag=pulp:action:sync body: encoding: US-ASCII string: "" @@ -1161,7 +1533,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="64dd2nkt0XmE43HxK0q0mujjICJY4kcyTjPTZHTe4", oauth_signature="kYdlNJhv2JEgzMLpAwFW8gCnWCk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687798", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="I1WNfb1SfVUJFPfyjJuo2OrPnTAtWN91sdMeH5Ff8", oauth_signature="R3XMyUnwfWV57D9wYKpYloa26d0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804763", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -1172,25 +1544,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:38 GMT + - Wed, 05 Aug 2015 19:59:23 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "82534" + - "2218" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "[{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/553a0a7f-c3b5-4d1f-b8d8-488fd6e1a268/\", \"task_id\": \"553a0a7f-c3b5-4d1f-b8d8-488fd6e1a268\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T18:55:20Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T18:55:20Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/47cb65cf-5de9-4ec5-a504-a1e35d136a7c/\", \"task_id\": \"47cb65cf-5de9-4ec5-a504-a1e35d136a7c\"}, {\"_href\": \"/pulp/api/v2/tasks/14f7aaa8-4bc6-462c-8288-6017e7cbe913/\", \"task_id\": \"14f7aaa8-4bc6-462c-8288-6017e7cbe913\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T14:55:17-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T14:55:19-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 13, \"error_message\": null, \"updated_count\": 2, \"details\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e5975ca013067bd77137\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e59533a7d3a2e73beea1\"}, \"id\": \"5432e5955ca0134a6f278ee7\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/0dbd485e-77e8-4be7-b48c-d698a017c32b/\", \"task_id\": \"0dbd485e-77e8-4be7-b48c-d698a017c32b\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T18:57:28Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T18:57:27Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/f3d2a603-6247-4a2d-8e66-0d2a78f4094c/\", \"task_id\": \"f3d2a603-6247-4a2d-8e66-0d2a78f4094c\"}, {\"_href\": \"/pulp/api/v2/tasks/70c07a5f-e0f2-4159-a62f-1bfa6b455771/\", \"task_id\": \"70c07a5f-e0f2-4159-a62f-1bfa6b455771\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T14:57:26-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T14:57:26-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e6165ca013067bd77155\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e61633a7d3a2e73beea5\"}, \"id\": \"5432e6165ca0134a6f278f4d\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/65c9d724-2d99-443e-a871-c32fa4aac918/\", \"task_id\": \"65c9d724-2d99-443e-a871-c32fa4aac918\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:11:12Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:11:11Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/737e5e96-2e9d-4820-a386-fca2de6400df/\", \"task_id\": \"737e5e96-2e9d-4820-a386-fca2de6400df\"}, {\"_href\": \"/pulp/api/v2/tasks/dbad6390-2f1f-49a5-ae9e-794ed2f03163/\", \"task_id\": \"dbad6390-2f1f-49a5-ae9e-794ed2f03163\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:11:10-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:11:11-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e94f5ca013067bd77173\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e94e33a7d3a2e73beea9\"}, \"id\": \"5432e94e5ca0134a6f278f5f\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/1c16b113-e1ae-414e-8c8d-f4ec2c6bf0bc/\", \"task_id\": \"1c16b113-e1ae-414e-8c8d-f4ec2c6bf0bc\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:11:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:11:16Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8a225336-1ea1-4eec-9e4d-1b2bcb30b146/\", \"task_id\": \"8a225336-1ea1-4eec-9e4d-1b2bcb30b146\"}, {\"_href\": \"/pulp/api/v2/tasks/2f5bb491-554b-47da-a286-810921d0c46f/\", \"task_id\": \"2f5bb491-554b-47da-a286-810921d0c46f\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:11:15-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:11:15-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e9535ca013067bd77191\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e95333a7d3a2e73beead\"}, \"id\": \"5432e9535ca0134a6f278f72\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/0e1d86ae-4603-47b5-b2f4-471c55180c0e/\", \"task_id\": \"0e1d86ae-4603-47b5-b2f4-471c55180c0e\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:18:55Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:18:55Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/5fc6be19-b539-4d58-923e-8539c74de4f2/\", \"task_id\": \"5fc6be19-b539-4d58-923e-8539c74de4f2\"}, {\"_href\": \"/pulp/api/v2/tasks/e78fd5ca-06f5-474f-819e-c03295e63450/\", \"task_id\": \"e78fd5ca-06f5-474f-819e-c03295e63450\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:18:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:18:54-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432eb1e5ca013067bd771af\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432eb1e33a7d3a2e73beeb2\"}, \"id\": \"5432eb1e5ca0134a6f278f84\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/43b939b4-8243-46e6-a07c-300c4824df7a/\", \"task_id\": \"43b939b4-8243-46e6-a07c-300c4824df7a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:19:03Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:19:03Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/dd469f38-b876-4517-89c6-872f0b2275f2/\", \"task_id\": \"dd469f38-b876-4517-89c6-872f0b2275f2\"}, {\"_href\": \"/pulp/api/v2/tasks/cbc613aa-e8f7-48cb-b9e2-af4800857473/\", \"task_id\": \"cbc613aa-e8f7-48cb-b9e2-af4800857473\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:19:01-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:19:02-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432eb265ca013067bd771cd\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432eb2533a7d3a2e73beeb6\"}, \"id\": \"5432eb255ca0134a6f278faf\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/613a3c28-e4ec-4f32-924a-8db076a9b6a9/\", \"task_id\": \"613a3c28-e4ec-4f32-924a-8db076a9b6a9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:21:56Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:21:55Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/80d744f1-95d0-41eb-aafd-8760da440f7d/\", \"task_id\": \"80d744f1-95d0-41eb-aafd-8760da440f7d\"}, {\"_href\": \"/pulp/api/v2/tasks/03534a8e-c315-4ddb-86be-d3c3fc0edddd/\", \"task_id\": \"03534a8e-c315-4ddb-86be-d3c3fc0edddd\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:21:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:21:55-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ebd35ca013067bd771eb\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ebd233a7d3a2e73beeba\"}, \"id\": \"5432ebd25ca0134a6f278fbf\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/06f0cf1c-4959-4569-98e2-3b71dda6e6ef/\", \"task_id\": \"06f0cf1c-4959-4569-98e2-3b71dda6e6ef\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:23:31Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:23:30Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/50075d91-b373-4dea-b05c-bb608ea446a9/\", \"task_id\": \"50075d91-b373-4dea-b05c-bb608ea446a9\"}, {\"_href\": \"/pulp/api/v2/tasks/4475a5c9-bc30-4c36-81c0-ca01d33ceb0b/\", \"task_id\": \"4475a5c9-bc30-4c36-81c0-ca01d33ceb0b\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:23:29-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:23:30-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ec325ca013067bd77209\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ec3133a7d3a2e73beebe\"}, \"id\": \"5432ec315ca0134a6f278feb\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/bfd7ea35-0234-428d-b64b-d5b6d5804f31/\", \"task_id\": \"bfd7ea35-0234-428d-b64b-d5b6d5804f31\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:25:40Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:25:39Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/b175f2d0-8940-494f-9de1-7b1362c1a5c7/\", \"task_id\": \"b175f2d0-8940-494f-9de1-7b1362c1a5c7\"}, {\"_href\": \"/pulp/api/v2/tasks/5ebd78e5-cce1-4eff-bb81-c8ff394c56e2/\", \"task_id\": \"5ebd78e5-cce1-4eff-bb81-c8ff394c56e2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:25:39-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:25:39-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ecb35ca013067bd7721f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ecb333a7d3a2e73beec2\"}, \"id\": \"5432ecb35ca0134a6f278ff5\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/e054346b-7350-4a58-8bf3-4e4792e00963/\", \"task_id\": \"e054346b-7350-4a58-8bf3-4e4792e00963\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:26:02Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:26:01Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/9ec67dc9-c4b9-412a-ac84-c454e37b30ff/\", \"task_id\": \"9ec67dc9-c4b9-412a-ac84-c454e37b30ff\"}, {\"_href\": \"/pulp/api/v2/tasks/91bc5df8-7369-4634-9f1f-f4dbc83fc1a2/\", \"task_id\": \"91bc5df8-7369-4634-9f1f-f4dbc83fc1a2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:26:00-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:26:01-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ecc95ca013067bd7723d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ecc833a7d3a2e73beec6\"}, \"id\": \"5432ecc85ca0134a6f27901f\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/e5f89be4-51a9-4bed-b965-5510683b2ccb/\", \"task_id\": \"e5f89be4-51a9-4bed-b965-5510683b2ccb\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:29:14Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:29:14Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/285355dd-2659-429a-a9e2-12dee30b5cb1/\", \"task_id\": \"285355dd-2659-429a-a9e2-12dee30b5cb1\"}, {\"_href\": \"/pulp/api/v2/tasks/dacc093a-1810-439c-97d8-01b390521778/\", \"task_id\": \"dacc093a-1810-439c-97d8-01b390521778\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:29:13-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:29:13-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ed895ca013067bd7725b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ed8933a7d3a2e73beeca\"}, \"id\": \"5432ed895ca0134a6f279031\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/104ec505-6321-497c-a3a5-7fa11da70421/\", \"task_id\": \"104ec505-6321-497c-a3a5-7fa11da70421\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:32:06Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:32:05Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/88b73d87-e682-4c59-9aa7-847cc8f4759a/\", \"task_id\": \"88b73d87-e682-4c59-9aa7-847cc8f4759a\"}, {\"_href\": \"/pulp/api/v2/tasks/e81db7ea-9ccc-4c94-91ed-c3b28106aa38/\", \"task_id\": \"e81db7ea-9ccc-4c94-91ed-c3b28106aa38\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:32:04-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:32:05-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ee355ca013067bd77279\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ee3433a7d3a2e73beece\"}, \"id\": \"5432ee345ca0134a6f27905d\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/ccd83270-f1bd-4e3c-8fa3-8838e6fccb81/\", \"task_id\": \"ccd83270-f1bd-4e3c-8fa3-8838e6fccb81\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:32:24Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:32:24Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/7e5b7f0a-f3da-45e6-832f-956a7a2b81b4/\", \"task_id\": \"7e5b7f0a-f3da-45e6-832f-956a7a2b81b4\"}, {\"_href\": \"/pulp/api/v2/tasks/418e20dd-bf5a-48e0-b6b7-3f3e38f235a7/\", \"task_id\": \"418e20dd-bf5a-48e0-b6b7-3f3e38f235a7\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:32:23-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:32:23-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ee475ca013067bd77297\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ee4733a7d3a2e73beed2\"}, \"id\": \"5432ee475ca0134a6f279088\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/cc44e362-0c30-4878-b82c-e7dbee7fe9af/\", \"task_id\": \"cc44e362-0c30-4878-b82c-e7dbee7fe9af\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:36:25Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:36:25Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a5e65ee3-fc30-46a7-a2f0-217adbaad98d/\", \"task_id\": \"a5e65ee3-fc30-46a7-a2f0-217adbaad98d\"}, {\"_href\": \"/pulp/api/v2/tasks/d443ec3c-6969-4e3d-95e5-a52d049bf288/\", \"task_id\": \"d443ec3c-6969-4e3d-95e5-a52d049bf288\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:36:24-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:36:24-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ef385ca013067bd772b5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ef3833a7d3a2e73beed6\"}, \"id\": \"5432ef385ca0134a6f27909a\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/c37de44c-51cc-4312-bc4b-300bf8fedbe4/\", \"task_id\": \"c37de44c-51cc-4312-bc4b-300bf8fedbe4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:36:32Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:36:31Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/21be9bc6-1480-45b1-bc54-c9d224f64b6a/\", \"task_id\": \"21be9bc6-1480-45b1-bc54-c9d224f64b6a\"}, {\"_href\": \"/pulp/api/v2/tasks/f3ee7f11-bcd0-4f82-af6f-0151676cf8a5/\", \"task_id\": \"f3ee7f11-bcd0-4f82-af6f-0151676cf8a5\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:36:30-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:36:30-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ef3e5ca013067bd772d3\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ef3e33a7d3a2e73beeda\"}, \"id\": \"5432ef3e5ca0134a6f2790c6\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/c48c488f-49c3-4cc7-8957-8009de750189/\", \"task_id\": \"c48c488f-49c3-4cc7-8957-8009de750189\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:39:10Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:39:10Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8016b11a-4800-4436-b7b4-baccdfee8f3d/\", \"task_id\": \"8016b11a-4800-4436-b7b4-baccdfee8f3d\"}, {\"_href\": \"/pulp/api/v2/tasks/6d60374d-086d-4a11-b759-da8c529aa8f9/\", \"task_id\": \"6d60374d-086d-4a11-b759-da8c529aa8f9\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:39:09-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:39:09-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432efdd5ca013067bd772f1\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432efdd33a7d3a2e73beede\"}, \"id\": \"5432efdd5ca0134a6f2790d8\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/06c15d7f-da77-4af0-8cb2-1f71e44084dd/\", \"task_id\": \"06c15d7f-da77-4af0-8cb2-1f71e44084dd\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:39:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:39:16Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a649c5eb-dfa0-460b-a1c5-3efeb59b49e9/\", \"task_id\": \"a649c5eb-dfa0-460b-a1c5-3efeb59b49e9\"}, {\"_href\": \"/pulp/api/v2/tasks/4e9418dc-d046-4147-b676-b467a40dfda6/\", \"task_id\": \"4e9418dc-d046-4147-b676-b467a40dfda6\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:39:15-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:39:16-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432efe45ca013067bd7730f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432efe333a7d3a2e73beee2\"}, \"id\": \"5432efe35ca0134a6f279105\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/00f1c9e5-c314-4d6f-ad24-e0e4b3b20433/\", \"task_id\": \"00f1c9e5-c314-4d6f-ad24-e0e4b3b20433\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:41:34Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:41:33Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/0a03f3d4-d743-4382-8440-fe1728f079d9/\", \"task_id\": \"0a03f3d4-d743-4382-8440-fe1728f079d9\"}, {\"_href\": \"/pulp/api/v2/tasks/42227d04-9001-4cb9-86be-a977fe891b5e/\", \"task_id\": \"42227d04-9001-4cb9-86be-a977fe891b5e\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:41:32-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:41:32-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f06c5ca013067bd7732d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f06c33a7d3a2e73beee6\"}, \"id\": \"5432f06c5ca0134a6f279117\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/62799e03-bd77-4e15-9823-740c272c8cf6/\", \"task_id\": \"62799e03-bd77-4e15-9823-740c272c8cf6\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:43:18Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:43:17Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/54404de2-353f-4cc6-b4c4-6811f19ec171/\", \"task_id\": \"54404de2-353f-4cc6-b4c4-6811f19ec171\"}, {\"_href\": \"/pulp/api/v2/tasks/f81d1d1a-ee59-44ba-83d0-31fbb27885e2/\", \"task_id\": \"f81d1d1a-ee59-44ba-83d0-31fbb27885e2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:43:16-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:43:16-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f0d45ca013067bd7734b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f0d433a7d3a2e73beeea\"}, \"id\": \"5432f0d45ca0134a6f279142\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/f98962c6-f288-43f0-bef0-9d59a35f2bb7/\", \"task_id\": \"f98962c6-f288-43f0-bef0-9d59a35f2bb7\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:46:00Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:46:00Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/5eac3d4a-e8c5-4c7c-8835-6d1c40d27f1d/\", \"task_id\": \"5eac3d4a-e8c5-4c7c-8835-6d1c40d27f1d\"}, {\"_href\": \"/pulp/api/v2/tasks/c72d6b00-c6f3-4f17-8067-6700d08a3b58/\", \"task_id\": \"c72d6b00-c6f3-4f17-8067-6700d08a3b58\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:45:59-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:45:59-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f1775ca013067bd77369\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f17733a7d3a2e73beeee\"}, \"id\": \"5432f1775ca0134a6f279154\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/a8bceadf-bebf-48d4-a8e1-f2d40541231f/\", \"task_id\": \"a8bceadf-bebf-48d4-a8e1-f2d40541231f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:46:06Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:46:06Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a39f02ad-ed5c-4998-945c-5e2bbbb06a5a/\", \"task_id\": \"a39f02ad-ed5c-4998-945c-5e2bbbb06a5a\"}, {\"_href\": \"/pulp/api/v2/tasks/b29e5cd4-e384-4b3e-b231-c28e3de0b60c/\", \"task_id\": \"b29e5cd4-e384-4b3e-b231-c28e3de0b60c\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:46:05-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:46:06-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f17e5ca013067bd77387\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f17d33a7d3a2e73beef2\"}, \"id\": \"5432f17d5ca0134a6f279180\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/414344ba-15aa-440f-a24b-d3fe18193f3c/\", \"task_id\": \"414344ba-15aa-440f-a24b-d3fe18193f3c\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:49:52Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:49:52Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/64a30d0a-a1fa-493c-9575-7d2e17c6997a/\", \"task_id\": \"64a30d0a-a1fa-493c-9575-7d2e17c6997a\"}, {\"_href\": \"/pulp/api/v2/tasks/38810435-0427-461a-b4df-6d72aa7b5a80/\", \"task_id\": \"38810435-0427-461a-b4df-6d72aa7b5a80\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:49:51-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:49:51-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f25f5ca013067bd773a5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f25f33a7d3a2e73beef6\"}, \"id\": \"5432f25f5ca0134a6f279191\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/41feb23d-f675-4fc6-acac-8cf5216c990f/\", \"task_id\": \"41feb23d-f675-4fc6-acac-8cf5216c990f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:49:58Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:49:57Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/e4f51fbb-8022-4860-831a-8bbc4089b131/\", \"task_id\": \"e4f51fbb-8022-4860-831a-8bbc4089b131\"}, {\"_href\": \"/pulp/api/v2/tasks/1475aa92-d403-4f9f-9acf-d860f88fde15/\", \"task_id\": \"1475aa92-d403-4f9f-9acf-d860f88fde15\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:49:56-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:49:56-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f2645ca013067bd773c3\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f26433a7d3a2e73beefa\"}, \"id\": \"5432f2645ca0134a6f2791bc\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/44a9e382-ea7a-4503-b99f-e0c72a2c4f37/\", \"task_id\": \"44a9e382-ea7a-4503-b99f-e0c72a2c4f37\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:04:36Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:04:36Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/1df64b16-c4c4-4c33-ae97-bff80fed7be3/\", \"task_id\": \"1df64b16-c4c4-4c33-ae97-bff80fed7be3\"}, {\"_href\": \"/pulp/api/v2/tasks/1b7e349e-6d62-4d79-906e-bc8ff19e4e47/\", \"task_id\": \"1b7e349e-6d62-4d79-906e-bc8ff19e4e47\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:04:35-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:04:35-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f5d35ca013067bd773e1\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f5d333a7d3a2e73bef01\"}, \"id\": \"5432f5d35ca0134a6f2791e6\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/45de3728-4202-4385-95f2-6b4de282f9f4/\", \"task_id\": \"45de3728-4202-4385-95f2-6b4de282f9f4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:04:44Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:04:43Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/861f71cc-339a-4504-9c5d-3e99aea73e41/\", \"task_id\": \"861f71cc-339a-4504-9c5d-3e99aea73e41\"}, {\"_href\": \"/pulp/api/v2/tasks/6f8a3759-c7c1-4969-a3dc-7c406ac25919/\", \"task_id\": \"6f8a3759-c7c1-4969-a3dc-7c406ac25919\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:04:42-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:04:42-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f5da5ca013067bd773ff\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f5da33a7d3a2e73bef05\"}, \"id\": \"5432f5da5ca0134a6f279227\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/a48186d6-3734-4626-b5b8-252e6d4c6c34/\", \"task_id\": \"a48186d6-3734-4626-b5b8-252e6d4c6c34\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:05:11Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:05:10Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/d880cf54-205d-4bad-9b98-6b0dbd624429/\", \"task_id\": \"d880cf54-205d-4bad-9b98-6b0dbd624429\"}, {\"_href\": \"/pulp/api/v2/tasks/5a58416c-91eb-472f-8aa9-b56c7ac12925/\", \"task_id\": \"5a58416c-91eb-472f-8aa9-b56c7ac12925\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:05:09-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:05:10-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 13, \"error_message\": null, \"updated_count\": 2, \"details\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f5f65ca013067bd7742f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f5e733a7d3a2e73bef10\"}, \"id\": \"5432f5e75ca0134a6f279256\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/7280be4e-bbae-4a19-aff6-1c4bf171b764/\", \"task_id\": \"7280be4e-bbae-4a19-aff6-1c4bf171b764\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:07:36Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:07:35Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/2913a1f8-72bd-4a81-8795-c37ea04f93a1/\", \"task_id\": \"2913a1f8-72bd-4a81-8795-c37ea04f93a1\"}, {\"_href\": \"/pulp/api/v2/tasks/70b39e0a-39e3-4e59-978b-61b6e0989e60/\", \"task_id\": \"70b39e0a-39e3-4e59-978b-61b6e0989e60\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:07:34-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:07:34-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f6865ca013067bd7744d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f68633a7d3a2e73bef18\"}, \"id\": \"5432f6865ca0134a6f27928c\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/5a16309d-070d-4b23-a9ba-d47ec9383cbc/\", \"task_id\": \"5a16309d-070d-4b23-a9ba-d47ec9383cbc\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:07:43Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:07:42Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/c7fca782-8543-461f-8997-d0cbc9f47af2/\", \"task_id\": \"c7fca782-8543-461f-8997-d0cbc9f47af2\"}, {\"_href\": \"/pulp/api/v2/tasks/f60f4e08-808d-454a-9e13-310a5441dba2/\", \"task_id\": \"f60f4e08-808d-454a-9e13-310a5441dba2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:07:41-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:07:41-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f68d5ca013067bd7746b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f68d33a7d3a2e73bef1c\"}, \"id\": \"5432f68d5ca0134a6f2792cd\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/659f962f-9c98-406b-a82b-f001942e40be/\", \"task_id\": \"659f962f-9c98-406b-a82b-f001942e40be\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:08:01Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:08:00Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/c28f02a3-9b26-469b-9652-818c44767852/\", \"task_id\": \"c28f02a3-9b26-469b-9652-818c44767852\"}, {\"_href\": \"/pulp/api/v2/tasks/6992fd30-7789-4c6d-ac09-864f8cbcbf0f/\", \"task_id\": \"6992fd30-7789-4c6d-ac09-864f8cbcbf0f\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:07:59-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:08:00-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 13, \"error_message\": null, \"updated_count\": 2, \"details\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f6a05ca013067bd7749b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f69a33a7d3a2e73bef27\"}, \"id\": \"5432f69a5ca0134a6f2792fc\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/9c6477ff-cad4-4648-bb52-53c5725b7c40/\", \"task_id\": \"9c6477ff-cad4-4648-bb52-53c5725b7c40\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T12:56:03Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T12:56:03Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/eba6e1ef-251d-4158-b9a4-aa4b544490d2/\", \"task_id\": \"eba6e1ef-251d-4158-b9a4-aa4b544490d2\"}, {\"_href\": \"/pulp/api/v2/tasks/e4148351-9347-4c27-aa55-9e273c462511/\", \"task_id\": \"e4148351-9347-4c27-aa55-9e273c462511\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T08:56:02-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T08:56:02-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e2e25ca013067bd774d7\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e2e233a7d3a2e73bef32\"}, \"id\": \"5433e2e25ca0134a6f279343\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/5ca23d78-a417-4f59-9e47-a5de86fd91c9/\", \"task_id\": \"5ca23d78-a417-4f59-9e47-a5de86fd91c9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:00:43Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:00:42Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8edc7f56-5a80-4fd8-8ac7-358d9da75e1a/\", \"task_id\": \"8edc7f56-5a80-4fd8-8ac7-358d9da75e1a\"}, {\"_href\": \"/pulp/api/v2/tasks/c1c2d8d9-d562-4c10-821c-dcc2717343a2/\", \"task_id\": \"c1c2d8d9-d562-4c10-821c-dcc2717343a2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:00:41-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:00:42-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e3fa5ca013067bd774f5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e3f933a7d3a2e73bef36\"}, \"id\": \"5433e3f95ca0134a6f279355\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/92836870-1c59-4282-937d-9b2213b3f95d/\", \"task_id\": \"92836870-1c59-4282-937d-9b2213b3f95d\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:00:49Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:00:48Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/cd7d3d30-b92a-47f5-b46b-f546a9e0d5d3/\", \"task_id\": \"cd7d3d30-b92a-47f5-b46b-f546a9e0d5d3\"}, {\"_href\": \"/pulp/api/v2/tasks/cde88818-1ba7-4254-9153-ca4a65a29dea/\", \"task_id\": \"cde88818-1ba7-4254-9153-ca4a65a29dea\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:00:48-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:00:48-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e4005ca013067bd77513\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e40033a7d3a2e73bef3a\"}, \"id\": \"5433e4005ca0134a6f279383\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/64ee9346-1a9f-401c-8d3c-f3bae63ec715/\", \"task_id\": \"64ee9346-1a9f-401c-8d3c-f3bae63ec715\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:03:50Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:03:49Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/bffa56c1-239f-4217-bac4-a5b144e3951e/\", \"task_id\": \"bffa56c1-239f-4217-bac4-a5b144e3951e\"}, {\"_href\": \"/pulp/api/v2/tasks/fb909e33-b8f2-4bfc-81d3-a17d826542c0/\", \"task_id\": \"fb909e33-b8f2-4bfc-81d3-a17d826542c0\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:03:49-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:03:49-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e4b55ca013067bd77531\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e4b533a7d3a2e73bef3e\"}, \"id\": \"5433e4b55ca0134a6f279395\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/e44e5ed0-39fc-46ff-a8a3-768e370d8836/\", \"task_id\": \"e44e5ed0-39fc-46ff-a8a3-768e370d8836\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:03:56Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:03:55Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a08e8ee8-078a-4c0f-8437-0c2f650ba2f6/\", \"task_id\": \"a08e8ee8-078a-4c0f-8437-0c2f650ba2f6\"}, {\"_href\": \"/pulp/api/v2/tasks/5911ac6a-516a-41cd-8e9c-b29a4efbb687/\", \"task_id\": \"5911ac6a-516a-41cd-8e9c-b29a4efbb687\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:03:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:03:54-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e4ba5ca013067bd7754f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e4ba33a7d3a2e73bef42\"}, \"id\": \"5433e4ba5ca0134a6f2793c1\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/92bdaac6-5419-48f1-b659-e98b26e83df4/\", \"task_id\": \"92bdaac6-5419-48f1-b659-e98b26e83df4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:12:39Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:12:38Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/3cb0cac5-f754-49eb-8f74-c0f3723e2f0a/\", \"task_id\": \"3cb0cac5-f754-49eb-8f74-c0f3723e2f0a\"}, {\"_href\": \"/pulp/api/v2/tasks/b3fc8eb5-9e5e-477a-b80a-c9c1572dba97/\", \"task_id\": \"b3fc8eb5-9e5e-477a-b80a-c9c1572dba97\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:12:37-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:12:38-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e6c65ca013067bd7756d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e6c533a7d3a2e73bef47\"}, \"id\": \"5433e6c55ca0134a6f2793d3\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/7acc93c7-7598-4b8f-8c8e-91162d2acf17/\", \"task_id\": \"7acc93c7-7598-4b8f-8c8e-91162d2acf17\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:12:45Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:12:44Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/6a4f9534-9278-4c72-9d8f-bb7a2f06aa54/\", \"task_id\": \"6a4f9534-9278-4c72-9d8f-bb7a2f06aa54\"}, {\"_href\": \"/pulp/api/v2/tasks/2e5369ba-7b3f-49e0-933a-55a0d9f555ff/\", \"task_id\": \"2e5369ba-7b3f-49e0-933a-55a0d9f555ff\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:12:43-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:12:43-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e6cb5ca013067bd7758b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e6cb33a7d3a2e73bef4b\"}, \"id\": \"5433e6cb5ca0134a6f2793ff\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/\", \"task_id\": \"96da0f16-4ba1-49d4-b38e-5fe435e0afac\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:16:34Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:33Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/82317804-bbf7-4b95-94ad-ce6f8c9ddf83/\", \"task_id\": \"82317804-bbf7-4b95-94ad-ce6f8c9ddf83\"}, {\"_href\": \"/pulp/api/v2/tasks/ad4132ba-5b47-4462-955a-2ddc767405d7/\", \"task_id\": \"ad4132ba-5b47-4462-955a-2ddc767405d7\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:16:32-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:16:33-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e7b15ca013067bd775a9\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e7b033a7d3a2e73bef52\"}, \"id\": \"5433e7b05ca0134a6f279427\"}]" + encoding: US-ASCII + string: "[{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/e218793a-86e4-4ef6-b04a-86d3fbf8203f/\", \"task_id\": \"e218793a-86e4-4ef6-b04a-86d3fbf8203f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-08-05T19:59:20Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:20Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/b4a64a10-382f-46fa-a69e-6314bb641915/\", \"task_id\": \"b4a64a10-382f-46fa-a69e-6314bb641915\"}, {\"_href\": \"/pulp/api/v2/tasks/34042c35-b752-46a2-8b70-c7a4c0fb55f4/\", \"task_id\": \"34042c35-b752-46a2-8b70-c7a4c0fb55f4\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-08-05T19:59:20Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-08-05T19:59:20Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 15, \"error_message\": null, \"updated_count\": 0, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55c26b18115138443de6e9cb\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55c26b187164df9aa32ab31d\"}, \"id\": \"55c26b181151384439db715d\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:38 GMT + recorded_at: Wed, 05 Aug 2015 19:59:23 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/?tag=pulp:action:sync + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/?tag=pulp:action:sync body: encoding: US-ASCII string: "" @@ -1202,7 +1572,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="5dCkTEFr5Z5wHTDRyxzKFwH4U2iEt5hMXcRO2dlVM", oauth_signature="doHu1yBbvXu77zCyyv2muOv2TzI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687798", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="B5Axz1GclibzlWHpDa8vWBqiKhVfVJs4mC46eiTU", oauth_signature="DvLe8OmX7npcJBBMUBratARIEVc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804763", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -1213,25 +1583,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:38 GMT + - Wed, 05 Aug 2015 19:59:23 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "82534" + - "2218" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "[{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/553a0a7f-c3b5-4d1f-b8d8-488fd6e1a268/\", \"task_id\": \"553a0a7f-c3b5-4d1f-b8d8-488fd6e1a268\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T18:55:20Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T18:55:20Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/47cb65cf-5de9-4ec5-a504-a1e35d136a7c/\", \"task_id\": \"47cb65cf-5de9-4ec5-a504-a1e35d136a7c\"}, {\"_href\": \"/pulp/api/v2/tasks/14f7aaa8-4bc6-462c-8288-6017e7cbe913/\", \"task_id\": \"14f7aaa8-4bc6-462c-8288-6017e7cbe913\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T14:55:17-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T14:55:19-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 13, \"error_message\": null, \"updated_count\": 2, \"details\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e5975ca013067bd77137\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e59533a7d3a2e73beea1\"}, \"id\": \"5432e5955ca0134a6f278ee7\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/0dbd485e-77e8-4be7-b48c-d698a017c32b/\", \"task_id\": \"0dbd485e-77e8-4be7-b48c-d698a017c32b\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T18:57:28Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T18:57:27Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/f3d2a603-6247-4a2d-8e66-0d2a78f4094c/\", \"task_id\": \"f3d2a603-6247-4a2d-8e66-0d2a78f4094c\"}, {\"_href\": \"/pulp/api/v2/tasks/70c07a5f-e0f2-4159-a62f-1bfa6b455771/\", \"task_id\": \"70c07a5f-e0f2-4159-a62f-1bfa6b455771\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T14:57:26-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T14:57:26-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e6165ca013067bd77155\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e61633a7d3a2e73beea5\"}, \"id\": \"5432e6165ca0134a6f278f4d\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/65c9d724-2d99-443e-a871-c32fa4aac918/\", \"task_id\": \"65c9d724-2d99-443e-a871-c32fa4aac918\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:11:12Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:11:11Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/737e5e96-2e9d-4820-a386-fca2de6400df/\", \"task_id\": \"737e5e96-2e9d-4820-a386-fca2de6400df\"}, {\"_href\": \"/pulp/api/v2/tasks/dbad6390-2f1f-49a5-ae9e-794ed2f03163/\", \"task_id\": \"dbad6390-2f1f-49a5-ae9e-794ed2f03163\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:11:10-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:11:11-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e94f5ca013067bd77173\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e94e33a7d3a2e73beea9\"}, \"id\": \"5432e94e5ca0134a6f278f5f\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/1c16b113-e1ae-414e-8c8d-f4ec2c6bf0bc/\", \"task_id\": \"1c16b113-e1ae-414e-8c8d-f4ec2c6bf0bc\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:11:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:11:16Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8a225336-1ea1-4eec-9e4d-1b2bcb30b146/\", \"task_id\": \"8a225336-1ea1-4eec-9e4d-1b2bcb30b146\"}, {\"_href\": \"/pulp/api/v2/tasks/2f5bb491-554b-47da-a286-810921d0c46f/\", \"task_id\": \"2f5bb491-554b-47da-a286-810921d0c46f\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:11:15-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:11:15-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e9535ca013067bd77191\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e95333a7d3a2e73beead\"}, \"id\": \"5432e9535ca0134a6f278f72\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/0e1d86ae-4603-47b5-b2f4-471c55180c0e/\", \"task_id\": \"0e1d86ae-4603-47b5-b2f4-471c55180c0e\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:18:55Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:18:55Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/5fc6be19-b539-4d58-923e-8539c74de4f2/\", \"task_id\": \"5fc6be19-b539-4d58-923e-8539c74de4f2\"}, {\"_href\": \"/pulp/api/v2/tasks/e78fd5ca-06f5-474f-819e-c03295e63450/\", \"task_id\": \"e78fd5ca-06f5-474f-819e-c03295e63450\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:18:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:18:54-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432eb1e5ca013067bd771af\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432eb1e33a7d3a2e73beeb2\"}, \"id\": \"5432eb1e5ca0134a6f278f84\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/43b939b4-8243-46e6-a07c-300c4824df7a/\", \"task_id\": \"43b939b4-8243-46e6-a07c-300c4824df7a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:19:03Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:19:03Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/dd469f38-b876-4517-89c6-872f0b2275f2/\", \"task_id\": \"dd469f38-b876-4517-89c6-872f0b2275f2\"}, {\"_href\": \"/pulp/api/v2/tasks/cbc613aa-e8f7-48cb-b9e2-af4800857473/\", \"task_id\": \"cbc613aa-e8f7-48cb-b9e2-af4800857473\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:19:01-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:19:02-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432eb265ca013067bd771cd\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432eb2533a7d3a2e73beeb6\"}, \"id\": \"5432eb255ca0134a6f278faf\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/613a3c28-e4ec-4f32-924a-8db076a9b6a9/\", \"task_id\": \"613a3c28-e4ec-4f32-924a-8db076a9b6a9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:21:56Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:21:55Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/80d744f1-95d0-41eb-aafd-8760da440f7d/\", \"task_id\": \"80d744f1-95d0-41eb-aafd-8760da440f7d\"}, {\"_href\": \"/pulp/api/v2/tasks/03534a8e-c315-4ddb-86be-d3c3fc0edddd/\", \"task_id\": \"03534a8e-c315-4ddb-86be-d3c3fc0edddd\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:21:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:21:55-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ebd35ca013067bd771eb\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ebd233a7d3a2e73beeba\"}, \"id\": \"5432ebd25ca0134a6f278fbf\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/06f0cf1c-4959-4569-98e2-3b71dda6e6ef/\", \"task_id\": \"06f0cf1c-4959-4569-98e2-3b71dda6e6ef\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:23:31Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:23:30Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/50075d91-b373-4dea-b05c-bb608ea446a9/\", \"task_id\": \"50075d91-b373-4dea-b05c-bb608ea446a9\"}, {\"_href\": \"/pulp/api/v2/tasks/4475a5c9-bc30-4c36-81c0-ca01d33ceb0b/\", \"task_id\": \"4475a5c9-bc30-4c36-81c0-ca01d33ceb0b\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:23:29-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:23:30-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ec325ca013067bd77209\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ec3133a7d3a2e73beebe\"}, \"id\": \"5432ec315ca0134a6f278feb\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/bfd7ea35-0234-428d-b64b-d5b6d5804f31/\", \"task_id\": \"bfd7ea35-0234-428d-b64b-d5b6d5804f31\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:25:40Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:25:39Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/b175f2d0-8940-494f-9de1-7b1362c1a5c7/\", \"task_id\": \"b175f2d0-8940-494f-9de1-7b1362c1a5c7\"}, {\"_href\": \"/pulp/api/v2/tasks/5ebd78e5-cce1-4eff-bb81-c8ff394c56e2/\", \"task_id\": \"5ebd78e5-cce1-4eff-bb81-c8ff394c56e2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:25:39-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:25:39-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ecb35ca013067bd7721f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ecb333a7d3a2e73beec2\"}, \"id\": \"5432ecb35ca0134a6f278ff5\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/e054346b-7350-4a58-8bf3-4e4792e00963/\", \"task_id\": \"e054346b-7350-4a58-8bf3-4e4792e00963\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:26:02Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:26:01Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/9ec67dc9-c4b9-412a-ac84-c454e37b30ff/\", \"task_id\": \"9ec67dc9-c4b9-412a-ac84-c454e37b30ff\"}, {\"_href\": \"/pulp/api/v2/tasks/91bc5df8-7369-4634-9f1f-f4dbc83fc1a2/\", \"task_id\": \"91bc5df8-7369-4634-9f1f-f4dbc83fc1a2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:26:00-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:26:01-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ecc95ca013067bd7723d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ecc833a7d3a2e73beec6\"}, \"id\": \"5432ecc85ca0134a6f27901f\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/e5f89be4-51a9-4bed-b965-5510683b2ccb/\", \"task_id\": \"e5f89be4-51a9-4bed-b965-5510683b2ccb\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:29:14Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:29:14Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/285355dd-2659-429a-a9e2-12dee30b5cb1/\", \"task_id\": \"285355dd-2659-429a-a9e2-12dee30b5cb1\"}, {\"_href\": \"/pulp/api/v2/tasks/dacc093a-1810-439c-97d8-01b390521778/\", \"task_id\": \"dacc093a-1810-439c-97d8-01b390521778\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:29:13-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:29:13-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ed895ca013067bd7725b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ed8933a7d3a2e73beeca\"}, \"id\": \"5432ed895ca0134a6f279031\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/104ec505-6321-497c-a3a5-7fa11da70421/\", \"task_id\": \"104ec505-6321-497c-a3a5-7fa11da70421\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:32:06Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:32:05Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/88b73d87-e682-4c59-9aa7-847cc8f4759a/\", \"task_id\": \"88b73d87-e682-4c59-9aa7-847cc8f4759a\"}, {\"_href\": \"/pulp/api/v2/tasks/e81db7ea-9ccc-4c94-91ed-c3b28106aa38/\", \"task_id\": \"e81db7ea-9ccc-4c94-91ed-c3b28106aa38\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:32:04-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:32:05-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ee355ca013067bd77279\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ee3433a7d3a2e73beece\"}, \"id\": \"5432ee345ca0134a6f27905d\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/ccd83270-f1bd-4e3c-8fa3-8838e6fccb81/\", \"task_id\": \"ccd83270-f1bd-4e3c-8fa3-8838e6fccb81\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:32:24Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:32:24Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/7e5b7f0a-f3da-45e6-832f-956a7a2b81b4/\", \"task_id\": \"7e5b7f0a-f3da-45e6-832f-956a7a2b81b4\"}, {\"_href\": \"/pulp/api/v2/tasks/418e20dd-bf5a-48e0-b6b7-3f3e38f235a7/\", \"task_id\": \"418e20dd-bf5a-48e0-b6b7-3f3e38f235a7\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:32:23-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:32:23-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ee475ca013067bd77297\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ee4733a7d3a2e73beed2\"}, \"id\": \"5432ee475ca0134a6f279088\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/cc44e362-0c30-4878-b82c-e7dbee7fe9af/\", \"task_id\": \"cc44e362-0c30-4878-b82c-e7dbee7fe9af\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:36:25Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:36:25Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a5e65ee3-fc30-46a7-a2f0-217adbaad98d/\", \"task_id\": \"a5e65ee3-fc30-46a7-a2f0-217adbaad98d\"}, {\"_href\": \"/pulp/api/v2/tasks/d443ec3c-6969-4e3d-95e5-a52d049bf288/\", \"task_id\": \"d443ec3c-6969-4e3d-95e5-a52d049bf288\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:36:24-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:36:24-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ef385ca013067bd772b5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ef3833a7d3a2e73beed6\"}, \"id\": \"5432ef385ca0134a6f27909a\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/c37de44c-51cc-4312-bc4b-300bf8fedbe4/\", \"task_id\": \"c37de44c-51cc-4312-bc4b-300bf8fedbe4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:36:32Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:36:31Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/21be9bc6-1480-45b1-bc54-c9d224f64b6a/\", \"task_id\": \"21be9bc6-1480-45b1-bc54-c9d224f64b6a\"}, {\"_href\": \"/pulp/api/v2/tasks/f3ee7f11-bcd0-4f82-af6f-0151676cf8a5/\", \"task_id\": \"f3ee7f11-bcd0-4f82-af6f-0151676cf8a5\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:36:30-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:36:30-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ef3e5ca013067bd772d3\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ef3e33a7d3a2e73beeda\"}, \"id\": \"5432ef3e5ca0134a6f2790c6\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/c48c488f-49c3-4cc7-8957-8009de750189/\", \"task_id\": \"c48c488f-49c3-4cc7-8957-8009de750189\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:39:10Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:39:10Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8016b11a-4800-4436-b7b4-baccdfee8f3d/\", \"task_id\": \"8016b11a-4800-4436-b7b4-baccdfee8f3d\"}, {\"_href\": \"/pulp/api/v2/tasks/6d60374d-086d-4a11-b759-da8c529aa8f9/\", \"task_id\": \"6d60374d-086d-4a11-b759-da8c529aa8f9\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:39:09-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:39:09-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432efdd5ca013067bd772f1\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432efdd33a7d3a2e73beede\"}, \"id\": \"5432efdd5ca0134a6f2790d8\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/06c15d7f-da77-4af0-8cb2-1f71e44084dd/\", \"task_id\": \"06c15d7f-da77-4af0-8cb2-1f71e44084dd\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:39:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:39:16Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a649c5eb-dfa0-460b-a1c5-3efeb59b49e9/\", \"task_id\": \"a649c5eb-dfa0-460b-a1c5-3efeb59b49e9\"}, {\"_href\": \"/pulp/api/v2/tasks/4e9418dc-d046-4147-b676-b467a40dfda6/\", \"task_id\": \"4e9418dc-d046-4147-b676-b467a40dfda6\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:39:15-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:39:16-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432efe45ca013067bd7730f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432efe333a7d3a2e73beee2\"}, \"id\": \"5432efe35ca0134a6f279105\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/00f1c9e5-c314-4d6f-ad24-e0e4b3b20433/\", \"task_id\": \"00f1c9e5-c314-4d6f-ad24-e0e4b3b20433\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:41:34Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:41:33Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/0a03f3d4-d743-4382-8440-fe1728f079d9/\", \"task_id\": \"0a03f3d4-d743-4382-8440-fe1728f079d9\"}, {\"_href\": \"/pulp/api/v2/tasks/42227d04-9001-4cb9-86be-a977fe891b5e/\", \"task_id\": \"42227d04-9001-4cb9-86be-a977fe891b5e\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:41:32-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:41:32-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f06c5ca013067bd7732d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f06c33a7d3a2e73beee6\"}, \"id\": \"5432f06c5ca0134a6f279117\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/62799e03-bd77-4e15-9823-740c272c8cf6/\", \"task_id\": \"62799e03-bd77-4e15-9823-740c272c8cf6\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:43:18Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:43:17Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/54404de2-353f-4cc6-b4c4-6811f19ec171/\", \"task_id\": \"54404de2-353f-4cc6-b4c4-6811f19ec171\"}, {\"_href\": \"/pulp/api/v2/tasks/f81d1d1a-ee59-44ba-83d0-31fbb27885e2/\", \"task_id\": \"f81d1d1a-ee59-44ba-83d0-31fbb27885e2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:43:16-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:43:16-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f0d45ca013067bd7734b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f0d433a7d3a2e73beeea\"}, \"id\": \"5432f0d45ca0134a6f279142\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/f98962c6-f288-43f0-bef0-9d59a35f2bb7/\", \"task_id\": \"f98962c6-f288-43f0-bef0-9d59a35f2bb7\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:46:00Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:46:00Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/5eac3d4a-e8c5-4c7c-8835-6d1c40d27f1d/\", \"task_id\": \"5eac3d4a-e8c5-4c7c-8835-6d1c40d27f1d\"}, {\"_href\": \"/pulp/api/v2/tasks/c72d6b00-c6f3-4f17-8067-6700d08a3b58/\", \"task_id\": \"c72d6b00-c6f3-4f17-8067-6700d08a3b58\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:45:59-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:45:59-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f1775ca013067bd77369\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f17733a7d3a2e73beeee\"}, \"id\": \"5432f1775ca0134a6f279154\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/a8bceadf-bebf-48d4-a8e1-f2d40541231f/\", \"task_id\": \"a8bceadf-bebf-48d4-a8e1-f2d40541231f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:46:06Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:46:06Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a39f02ad-ed5c-4998-945c-5e2bbbb06a5a/\", \"task_id\": \"a39f02ad-ed5c-4998-945c-5e2bbbb06a5a\"}, {\"_href\": \"/pulp/api/v2/tasks/b29e5cd4-e384-4b3e-b231-c28e3de0b60c/\", \"task_id\": \"b29e5cd4-e384-4b3e-b231-c28e3de0b60c\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:46:05-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:46:06-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f17e5ca013067bd77387\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f17d33a7d3a2e73beef2\"}, \"id\": \"5432f17d5ca0134a6f279180\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/414344ba-15aa-440f-a24b-d3fe18193f3c/\", \"task_id\": \"414344ba-15aa-440f-a24b-d3fe18193f3c\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:49:52Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:49:52Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/64a30d0a-a1fa-493c-9575-7d2e17c6997a/\", \"task_id\": \"64a30d0a-a1fa-493c-9575-7d2e17c6997a\"}, {\"_href\": \"/pulp/api/v2/tasks/38810435-0427-461a-b4df-6d72aa7b5a80/\", \"task_id\": \"38810435-0427-461a-b4df-6d72aa7b5a80\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:49:51-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:49:51-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f25f5ca013067bd773a5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f25f33a7d3a2e73beef6\"}, \"id\": \"5432f25f5ca0134a6f279191\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/41feb23d-f675-4fc6-acac-8cf5216c990f/\", \"task_id\": \"41feb23d-f675-4fc6-acac-8cf5216c990f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:49:58Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:49:57Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/e4f51fbb-8022-4860-831a-8bbc4089b131/\", \"task_id\": \"e4f51fbb-8022-4860-831a-8bbc4089b131\"}, {\"_href\": \"/pulp/api/v2/tasks/1475aa92-d403-4f9f-9acf-d860f88fde15/\", \"task_id\": \"1475aa92-d403-4f9f-9acf-d860f88fde15\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:49:56-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:49:56-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f2645ca013067bd773c3\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f26433a7d3a2e73beefa\"}, \"id\": \"5432f2645ca0134a6f2791bc\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/44a9e382-ea7a-4503-b99f-e0c72a2c4f37/\", \"task_id\": \"44a9e382-ea7a-4503-b99f-e0c72a2c4f37\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:04:36Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:04:36Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/1df64b16-c4c4-4c33-ae97-bff80fed7be3/\", \"task_id\": \"1df64b16-c4c4-4c33-ae97-bff80fed7be3\"}, {\"_href\": \"/pulp/api/v2/tasks/1b7e349e-6d62-4d79-906e-bc8ff19e4e47/\", \"task_id\": \"1b7e349e-6d62-4d79-906e-bc8ff19e4e47\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:04:35-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:04:35-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f5d35ca013067bd773e1\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f5d333a7d3a2e73bef01\"}, \"id\": \"5432f5d35ca0134a6f2791e6\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/45de3728-4202-4385-95f2-6b4de282f9f4/\", \"task_id\": \"45de3728-4202-4385-95f2-6b4de282f9f4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:04:44Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:04:43Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/861f71cc-339a-4504-9c5d-3e99aea73e41/\", \"task_id\": \"861f71cc-339a-4504-9c5d-3e99aea73e41\"}, {\"_href\": \"/pulp/api/v2/tasks/6f8a3759-c7c1-4969-a3dc-7c406ac25919/\", \"task_id\": \"6f8a3759-c7c1-4969-a3dc-7c406ac25919\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:04:42-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:04:42-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f5da5ca013067bd773ff\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f5da33a7d3a2e73bef05\"}, \"id\": \"5432f5da5ca0134a6f279227\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/a48186d6-3734-4626-b5b8-252e6d4c6c34/\", \"task_id\": \"a48186d6-3734-4626-b5b8-252e6d4c6c34\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:05:11Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:05:10Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/d880cf54-205d-4bad-9b98-6b0dbd624429/\", \"task_id\": \"d880cf54-205d-4bad-9b98-6b0dbd624429\"}, {\"_href\": \"/pulp/api/v2/tasks/5a58416c-91eb-472f-8aa9-b56c7ac12925/\", \"task_id\": \"5a58416c-91eb-472f-8aa9-b56c7ac12925\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:05:09-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:05:10-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 13, \"error_message\": null, \"updated_count\": 2, \"details\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f5f65ca013067bd7742f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f5e733a7d3a2e73bef10\"}, \"id\": \"5432f5e75ca0134a6f279256\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/7280be4e-bbae-4a19-aff6-1c4bf171b764/\", \"task_id\": \"7280be4e-bbae-4a19-aff6-1c4bf171b764\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:07:36Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:07:35Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/2913a1f8-72bd-4a81-8795-c37ea04f93a1/\", \"task_id\": \"2913a1f8-72bd-4a81-8795-c37ea04f93a1\"}, {\"_href\": \"/pulp/api/v2/tasks/70b39e0a-39e3-4e59-978b-61b6e0989e60/\", \"task_id\": \"70b39e0a-39e3-4e59-978b-61b6e0989e60\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:07:34-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:07:34-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f6865ca013067bd7744d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f68633a7d3a2e73bef18\"}, \"id\": \"5432f6865ca0134a6f27928c\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/5a16309d-070d-4b23-a9ba-d47ec9383cbc/\", \"task_id\": \"5a16309d-070d-4b23-a9ba-d47ec9383cbc\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:07:43Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:07:42Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/c7fca782-8543-461f-8997-d0cbc9f47af2/\", \"task_id\": \"c7fca782-8543-461f-8997-d0cbc9f47af2\"}, {\"_href\": \"/pulp/api/v2/tasks/f60f4e08-808d-454a-9e13-310a5441dba2/\", \"task_id\": \"f60f4e08-808d-454a-9e13-310a5441dba2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:07:41-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:07:41-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f68d5ca013067bd7746b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f68d33a7d3a2e73bef1c\"}, \"id\": \"5432f68d5ca0134a6f2792cd\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/659f962f-9c98-406b-a82b-f001942e40be/\", \"task_id\": \"659f962f-9c98-406b-a82b-f001942e40be\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:08:01Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:08:00Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/c28f02a3-9b26-469b-9652-818c44767852/\", \"task_id\": \"c28f02a3-9b26-469b-9652-818c44767852\"}, {\"_href\": \"/pulp/api/v2/tasks/6992fd30-7789-4c6d-ac09-864f8cbcbf0f/\", \"task_id\": \"6992fd30-7789-4c6d-ac09-864f8cbcbf0f\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:07:59-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:08:00-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 13, \"error_message\": null, \"updated_count\": 2, \"details\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f6a05ca013067bd7749b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f69a33a7d3a2e73bef27\"}, \"id\": \"5432f69a5ca0134a6f2792fc\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/9c6477ff-cad4-4648-bb52-53c5725b7c40/\", \"task_id\": \"9c6477ff-cad4-4648-bb52-53c5725b7c40\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T12:56:03Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T12:56:03Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/eba6e1ef-251d-4158-b9a4-aa4b544490d2/\", \"task_id\": \"eba6e1ef-251d-4158-b9a4-aa4b544490d2\"}, {\"_href\": \"/pulp/api/v2/tasks/e4148351-9347-4c27-aa55-9e273c462511/\", \"task_id\": \"e4148351-9347-4c27-aa55-9e273c462511\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T08:56:02-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T08:56:02-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e2e25ca013067bd774d7\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e2e233a7d3a2e73bef32\"}, \"id\": \"5433e2e25ca0134a6f279343\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/5ca23d78-a417-4f59-9e47-a5de86fd91c9/\", \"task_id\": \"5ca23d78-a417-4f59-9e47-a5de86fd91c9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:00:43Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:00:42Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8edc7f56-5a80-4fd8-8ac7-358d9da75e1a/\", \"task_id\": \"8edc7f56-5a80-4fd8-8ac7-358d9da75e1a\"}, {\"_href\": \"/pulp/api/v2/tasks/c1c2d8d9-d562-4c10-821c-dcc2717343a2/\", \"task_id\": \"c1c2d8d9-d562-4c10-821c-dcc2717343a2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:00:41-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:00:42-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e3fa5ca013067bd774f5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e3f933a7d3a2e73bef36\"}, \"id\": \"5433e3f95ca0134a6f279355\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/92836870-1c59-4282-937d-9b2213b3f95d/\", \"task_id\": \"92836870-1c59-4282-937d-9b2213b3f95d\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:00:49Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:00:48Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/cd7d3d30-b92a-47f5-b46b-f546a9e0d5d3/\", \"task_id\": \"cd7d3d30-b92a-47f5-b46b-f546a9e0d5d3\"}, {\"_href\": \"/pulp/api/v2/tasks/cde88818-1ba7-4254-9153-ca4a65a29dea/\", \"task_id\": \"cde88818-1ba7-4254-9153-ca4a65a29dea\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:00:48-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:00:48-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e4005ca013067bd77513\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e40033a7d3a2e73bef3a\"}, \"id\": \"5433e4005ca0134a6f279383\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/64ee9346-1a9f-401c-8d3c-f3bae63ec715/\", \"task_id\": \"64ee9346-1a9f-401c-8d3c-f3bae63ec715\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:03:50Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:03:49Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/bffa56c1-239f-4217-bac4-a5b144e3951e/\", \"task_id\": \"bffa56c1-239f-4217-bac4-a5b144e3951e\"}, {\"_href\": \"/pulp/api/v2/tasks/fb909e33-b8f2-4bfc-81d3-a17d826542c0/\", \"task_id\": \"fb909e33-b8f2-4bfc-81d3-a17d826542c0\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:03:49-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:03:49-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e4b55ca013067bd77531\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e4b533a7d3a2e73bef3e\"}, \"id\": \"5433e4b55ca0134a6f279395\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/e44e5ed0-39fc-46ff-a8a3-768e370d8836/\", \"task_id\": \"e44e5ed0-39fc-46ff-a8a3-768e370d8836\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:03:56Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:03:55Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a08e8ee8-078a-4c0f-8437-0c2f650ba2f6/\", \"task_id\": \"a08e8ee8-078a-4c0f-8437-0c2f650ba2f6\"}, {\"_href\": \"/pulp/api/v2/tasks/5911ac6a-516a-41cd-8e9c-b29a4efbb687/\", \"task_id\": \"5911ac6a-516a-41cd-8e9c-b29a4efbb687\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:03:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:03:54-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e4ba5ca013067bd7754f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e4ba33a7d3a2e73bef42\"}, \"id\": \"5433e4ba5ca0134a6f2793c1\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/92bdaac6-5419-48f1-b659-e98b26e83df4/\", \"task_id\": \"92bdaac6-5419-48f1-b659-e98b26e83df4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:12:39Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:12:38Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/3cb0cac5-f754-49eb-8f74-c0f3723e2f0a/\", \"task_id\": \"3cb0cac5-f754-49eb-8f74-c0f3723e2f0a\"}, {\"_href\": \"/pulp/api/v2/tasks/b3fc8eb5-9e5e-477a-b80a-c9c1572dba97/\", \"task_id\": \"b3fc8eb5-9e5e-477a-b80a-c9c1572dba97\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:12:37-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:12:38-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e6c65ca013067bd7756d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e6c533a7d3a2e73bef47\"}, \"id\": \"5433e6c55ca0134a6f2793d3\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/7acc93c7-7598-4b8f-8c8e-91162d2acf17/\", \"task_id\": \"7acc93c7-7598-4b8f-8c8e-91162d2acf17\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:12:45Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:12:44Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/6a4f9534-9278-4c72-9d8f-bb7a2f06aa54/\", \"task_id\": \"6a4f9534-9278-4c72-9d8f-bb7a2f06aa54\"}, {\"_href\": \"/pulp/api/v2/tasks/2e5369ba-7b3f-49e0-933a-55a0d9f555ff/\", \"task_id\": \"2e5369ba-7b3f-49e0-933a-55a0d9f555ff\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:12:43-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:12:43-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e6cb5ca013067bd7758b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e6cb33a7d3a2e73bef4b\"}, \"id\": \"5433e6cb5ca0134a6f2793ff\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/\", \"task_id\": \"96da0f16-4ba1-49d4-b38e-5fe435e0afac\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:16:34Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:33Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/82317804-bbf7-4b95-94ad-ce6f8c9ddf83/\", \"task_id\": \"82317804-bbf7-4b95-94ad-ce6f8c9ddf83\"}, {\"_href\": \"/pulp/api/v2/tasks/ad4132ba-5b47-4462-955a-2ddc767405d7/\", \"task_id\": \"ad4132ba-5b47-4462-955a-2ddc767405d7\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:16:32-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:16:33-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e7b15ca013067bd775a9\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e7b033a7d3a2e73bef52\"}, \"id\": \"5433e7b05ca0134a6f279427\"}]" + encoding: US-ASCII + string: "[{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/e218793a-86e4-4ef6-b04a-86d3fbf8203f/\", \"task_id\": \"e218793a-86e4-4ef6-b04a-86d3fbf8203f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-08-05T19:59:20Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:20Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/b4a64a10-382f-46fa-a69e-6314bb641915/\", \"task_id\": \"b4a64a10-382f-46fa-a69e-6314bb641915\"}, {\"_href\": \"/pulp/api/v2/tasks/34042c35-b752-46a2-8b70-c7a4c0fb55f4/\", \"task_id\": \"34042c35-b752-46a2-8b70-c7a4c0fb55f4\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-08-05T19:59:20Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-08-05T19:59:20Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 15, \"error_message\": null, \"updated_count\": 0, \"details\": {\"content\": {\"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 8, \"rpm_done\": 8, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55c26b18115138443de6e9cb\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55c26b187164df9aa32ab31d\"}, \"id\": \"55c26b181151384439db715d\"}]" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:38 GMT + recorded_at: Wed, 05 Aug 2015 19:59:23 GMT - request: - method: get - uri: https://localhost/pulp/api/v2/tasks/?tag=pulp:action:sync + method: delete + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/ body: encoding: US-ASCII string: "" @@ -1243,36 +1611,36 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="QucWdmHF1PYMVKPWaFqEMwijdIzqxs4AFJTNM1XmG4", oauth_signature="JpAys%2Fz%2Bojvg16QHbu9lhFCTCJ0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687798", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="H8IWTAJkS05InDTBCh1FnROFIvfZnsuGNLzZ0y7dJN4", oauth_signature="Rh%2BkGVTZ298Qn4NfZzmbiDrEqTc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804763", oauth_version="1.0" Pulp-User: - admin User-Agent: - Ruby response: status: - code: 200 - message: OK + code: 202 + message: Accepted headers: Date: - - Tue, 07 Oct 2014 13:16:38 GMT + - Wed, 05 Aug 2015 19:59:23 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) + Content-Encoding: + - utf-8 Content-Length: - - "82534" + - "172" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "[{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/553a0a7f-c3b5-4d1f-b8d8-488fd6e1a268/\", \"task_id\": \"553a0a7f-c3b5-4d1f-b8d8-488fd6e1a268\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T18:55:20Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T18:55:20Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/47cb65cf-5de9-4ec5-a504-a1e35d136a7c/\", \"task_id\": \"47cb65cf-5de9-4ec5-a504-a1e35d136a7c\"}, {\"_href\": \"/pulp/api/v2/tasks/14f7aaa8-4bc6-462c-8288-6017e7cbe913/\", \"task_id\": \"14f7aaa8-4bc6-462c-8288-6017e7cbe913\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T14:55:17-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T14:55:19-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 13, \"error_message\": null, \"updated_count\": 2, \"details\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e5975ca013067bd77137\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e59533a7d3a2e73beea1\"}, \"id\": \"5432e5955ca0134a6f278ee7\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/0dbd485e-77e8-4be7-b48c-d698a017c32b/\", \"task_id\": \"0dbd485e-77e8-4be7-b48c-d698a017c32b\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T18:57:28Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T18:57:27Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/f3d2a603-6247-4a2d-8e66-0d2a78f4094c/\", \"task_id\": \"f3d2a603-6247-4a2d-8e66-0d2a78f4094c\"}, {\"_href\": \"/pulp/api/v2/tasks/70c07a5f-e0f2-4159-a62f-1bfa6b455771/\", \"task_id\": \"70c07a5f-e0f2-4159-a62f-1bfa6b455771\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T14:57:26-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T14:57:26-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e6165ca013067bd77155\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e61633a7d3a2e73beea5\"}, \"id\": \"5432e6165ca0134a6f278f4d\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/65c9d724-2d99-443e-a871-c32fa4aac918/\", \"task_id\": \"65c9d724-2d99-443e-a871-c32fa4aac918\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:11:12Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:11:11Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/737e5e96-2e9d-4820-a386-fca2de6400df/\", \"task_id\": \"737e5e96-2e9d-4820-a386-fca2de6400df\"}, {\"_href\": \"/pulp/api/v2/tasks/dbad6390-2f1f-49a5-ae9e-794ed2f03163/\", \"task_id\": \"dbad6390-2f1f-49a5-ae9e-794ed2f03163\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:11:10-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:11:11-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e94f5ca013067bd77173\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e94e33a7d3a2e73beea9\"}, \"id\": \"5432e94e5ca0134a6f278f5f\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/1c16b113-e1ae-414e-8c8d-f4ec2c6bf0bc/\", \"task_id\": \"1c16b113-e1ae-414e-8c8d-f4ec2c6bf0bc\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:11:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:11:16Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8a225336-1ea1-4eec-9e4d-1b2bcb30b146/\", \"task_id\": \"8a225336-1ea1-4eec-9e4d-1b2bcb30b146\"}, {\"_href\": \"/pulp/api/v2/tasks/2f5bb491-554b-47da-a286-810921d0c46f/\", \"task_id\": \"2f5bb491-554b-47da-a286-810921d0c46f\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:11:15-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:11:15-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432e9535ca013067bd77191\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432e95333a7d3a2e73beead\"}, \"id\": \"5432e9535ca0134a6f278f72\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/0e1d86ae-4603-47b5-b2f4-471c55180c0e/\", \"task_id\": \"0e1d86ae-4603-47b5-b2f4-471c55180c0e\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:18:55Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:18:55Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/5fc6be19-b539-4d58-923e-8539c74de4f2/\", \"task_id\": \"5fc6be19-b539-4d58-923e-8539c74de4f2\"}, {\"_href\": \"/pulp/api/v2/tasks/e78fd5ca-06f5-474f-819e-c03295e63450/\", \"task_id\": \"e78fd5ca-06f5-474f-819e-c03295e63450\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:18:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:18:54-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432eb1e5ca013067bd771af\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432eb1e33a7d3a2e73beeb2\"}, \"id\": \"5432eb1e5ca0134a6f278f84\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/43b939b4-8243-46e6-a07c-300c4824df7a/\", \"task_id\": \"43b939b4-8243-46e6-a07c-300c4824df7a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:19:03Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:19:03Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/dd469f38-b876-4517-89c6-872f0b2275f2/\", \"task_id\": \"dd469f38-b876-4517-89c6-872f0b2275f2\"}, {\"_href\": \"/pulp/api/v2/tasks/cbc613aa-e8f7-48cb-b9e2-af4800857473/\", \"task_id\": \"cbc613aa-e8f7-48cb-b9e2-af4800857473\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:19:01-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:19:02-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432eb265ca013067bd771cd\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432eb2533a7d3a2e73beeb6\"}, \"id\": \"5432eb255ca0134a6f278faf\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/613a3c28-e4ec-4f32-924a-8db076a9b6a9/\", \"task_id\": \"613a3c28-e4ec-4f32-924a-8db076a9b6a9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:21:56Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:21:55Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/80d744f1-95d0-41eb-aafd-8760da440f7d/\", \"task_id\": \"80d744f1-95d0-41eb-aafd-8760da440f7d\"}, {\"_href\": \"/pulp/api/v2/tasks/03534a8e-c315-4ddb-86be-d3c3fc0edddd/\", \"task_id\": \"03534a8e-c315-4ddb-86be-d3c3fc0edddd\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:21:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:21:55-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ebd35ca013067bd771eb\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ebd233a7d3a2e73beeba\"}, \"id\": \"5432ebd25ca0134a6f278fbf\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/06f0cf1c-4959-4569-98e2-3b71dda6e6ef/\", \"task_id\": \"06f0cf1c-4959-4569-98e2-3b71dda6e6ef\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:23:31Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:23:30Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/50075d91-b373-4dea-b05c-bb608ea446a9/\", \"task_id\": \"50075d91-b373-4dea-b05c-bb608ea446a9\"}, {\"_href\": \"/pulp/api/v2/tasks/4475a5c9-bc30-4c36-81c0-ca01d33ceb0b/\", \"task_id\": \"4475a5c9-bc30-4c36-81c0-ca01d33ceb0b\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:23:29-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:23:30-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ec325ca013067bd77209\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ec3133a7d3a2e73beebe\"}, \"id\": \"5432ec315ca0134a6f278feb\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/bfd7ea35-0234-428d-b64b-d5b6d5804f31/\", \"task_id\": \"bfd7ea35-0234-428d-b64b-d5b6d5804f31\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:25:40Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:25:39Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/b175f2d0-8940-494f-9de1-7b1362c1a5c7/\", \"task_id\": \"b175f2d0-8940-494f-9de1-7b1362c1a5c7\"}, {\"_href\": \"/pulp/api/v2/tasks/5ebd78e5-cce1-4eff-bb81-c8ff394c56e2/\", \"task_id\": \"5ebd78e5-cce1-4eff-bb81-c8ff394c56e2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:25:39-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:25:39-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ecb35ca013067bd7721f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ecb333a7d3a2e73beec2\"}, \"id\": \"5432ecb35ca0134a6f278ff5\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/e054346b-7350-4a58-8bf3-4e4792e00963/\", \"task_id\": \"e054346b-7350-4a58-8bf3-4e4792e00963\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:26:02Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:26:01Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/9ec67dc9-c4b9-412a-ac84-c454e37b30ff/\", \"task_id\": \"9ec67dc9-c4b9-412a-ac84-c454e37b30ff\"}, {\"_href\": \"/pulp/api/v2/tasks/91bc5df8-7369-4634-9f1f-f4dbc83fc1a2/\", \"task_id\": \"91bc5df8-7369-4634-9f1f-f4dbc83fc1a2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:26:00-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:26:01-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ecc95ca013067bd7723d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ecc833a7d3a2e73beec6\"}, \"id\": \"5432ecc85ca0134a6f27901f\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/e5f89be4-51a9-4bed-b965-5510683b2ccb/\", \"task_id\": \"e5f89be4-51a9-4bed-b965-5510683b2ccb\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:29:14Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:29:14Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/285355dd-2659-429a-a9e2-12dee30b5cb1/\", \"task_id\": \"285355dd-2659-429a-a9e2-12dee30b5cb1\"}, {\"_href\": \"/pulp/api/v2/tasks/dacc093a-1810-439c-97d8-01b390521778/\", \"task_id\": \"dacc093a-1810-439c-97d8-01b390521778\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:29:13-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:29:13-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ed895ca013067bd7725b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ed8933a7d3a2e73beeca\"}, \"id\": \"5432ed895ca0134a6f279031\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/104ec505-6321-497c-a3a5-7fa11da70421/\", \"task_id\": \"104ec505-6321-497c-a3a5-7fa11da70421\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:32:06Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:32:05Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/88b73d87-e682-4c59-9aa7-847cc8f4759a/\", \"task_id\": \"88b73d87-e682-4c59-9aa7-847cc8f4759a\"}, {\"_href\": \"/pulp/api/v2/tasks/e81db7ea-9ccc-4c94-91ed-c3b28106aa38/\", \"task_id\": \"e81db7ea-9ccc-4c94-91ed-c3b28106aa38\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:32:04-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:32:05-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ee355ca013067bd77279\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ee3433a7d3a2e73beece\"}, \"id\": \"5432ee345ca0134a6f27905d\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/ccd83270-f1bd-4e3c-8fa3-8838e6fccb81/\", \"task_id\": \"ccd83270-f1bd-4e3c-8fa3-8838e6fccb81\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:32:24Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:32:24Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/7e5b7f0a-f3da-45e6-832f-956a7a2b81b4/\", \"task_id\": \"7e5b7f0a-f3da-45e6-832f-956a7a2b81b4\"}, {\"_href\": \"/pulp/api/v2/tasks/418e20dd-bf5a-48e0-b6b7-3f3e38f235a7/\", \"task_id\": \"418e20dd-bf5a-48e0-b6b7-3f3e38f235a7\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:32:23-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:32:23-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ee475ca013067bd77297\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ee4733a7d3a2e73beed2\"}, \"id\": \"5432ee475ca0134a6f279088\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/cc44e362-0c30-4878-b82c-e7dbee7fe9af/\", \"task_id\": \"cc44e362-0c30-4878-b82c-e7dbee7fe9af\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:36:25Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:36:25Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a5e65ee3-fc30-46a7-a2f0-217adbaad98d/\", \"task_id\": \"a5e65ee3-fc30-46a7-a2f0-217adbaad98d\"}, {\"_href\": \"/pulp/api/v2/tasks/d443ec3c-6969-4e3d-95e5-a52d049bf288/\", \"task_id\": \"d443ec3c-6969-4e3d-95e5-a52d049bf288\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:36:24-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:36:24-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ef385ca013067bd772b5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ef3833a7d3a2e73beed6\"}, \"id\": \"5432ef385ca0134a6f27909a\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/c37de44c-51cc-4312-bc4b-300bf8fedbe4/\", \"task_id\": \"c37de44c-51cc-4312-bc4b-300bf8fedbe4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:36:32Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:36:31Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/21be9bc6-1480-45b1-bc54-c9d224f64b6a/\", \"task_id\": \"21be9bc6-1480-45b1-bc54-c9d224f64b6a\"}, {\"_href\": \"/pulp/api/v2/tasks/f3ee7f11-bcd0-4f82-af6f-0151676cf8a5/\", \"task_id\": \"f3ee7f11-bcd0-4f82-af6f-0151676cf8a5\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:36:30-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:36:30-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432ef3e5ca013067bd772d3\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432ef3e33a7d3a2e73beeda\"}, \"id\": \"5432ef3e5ca0134a6f2790c6\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/c48c488f-49c3-4cc7-8957-8009de750189/\", \"task_id\": \"c48c488f-49c3-4cc7-8957-8009de750189\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:39:10Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:39:10Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8016b11a-4800-4436-b7b4-baccdfee8f3d/\", \"task_id\": \"8016b11a-4800-4436-b7b4-baccdfee8f3d\"}, {\"_href\": \"/pulp/api/v2/tasks/6d60374d-086d-4a11-b759-da8c529aa8f9/\", \"task_id\": \"6d60374d-086d-4a11-b759-da8c529aa8f9\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:39:09-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:39:09-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432efdd5ca013067bd772f1\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432efdd33a7d3a2e73beede\"}, \"id\": \"5432efdd5ca0134a6f2790d8\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/06c15d7f-da77-4af0-8cb2-1f71e44084dd/\", \"task_id\": \"06c15d7f-da77-4af0-8cb2-1f71e44084dd\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:39:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:39:16Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a649c5eb-dfa0-460b-a1c5-3efeb59b49e9/\", \"task_id\": \"a649c5eb-dfa0-460b-a1c5-3efeb59b49e9\"}, {\"_href\": \"/pulp/api/v2/tasks/4e9418dc-d046-4147-b676-b467a40dfda6/\", \"task_id\": \"4e9418dc-d046-4147-b676-b467a40dfda6\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:39:15-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:39:16-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432efe45ca013067bd7730f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432efe333a7d3a2e73beee2\"}, \"id\": \"5432efe35ca0134a6f279105\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/00f1c9e5-c314-4d6f-ad24-e0e4b3b20433/\", \"task_id\": \"00f1c9e5-c314-4d6f-ad24-e0e4b3b20433\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:41:34Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:41:33Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/0a03f3d4-d743-4382-8440-fe1728f079d9/\", \"task_id\": \"0a03f3d4-d743-4382-8440-fe1728f079d9\"}, {\"_href\": \"/pulp/api/v2/tasks/42227d04-9001-4cb9-86be-a977fe891b5e/\", \"task_id\": \"42227d04-9001-4cb9-86be-a977fe891b5e\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:41:32-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:41:32-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f06c5ca013067bd7732d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f06c33a7d3a2e73beee6\"}, \"id\": \"5432f06c5ca0134a6f279117\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/62799e03-bd77-4e15-9823-740c272c8cf6/\", \"task_id\": \"62799e03-bd77-4e15-9823-740c272c8cf6\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:43:18Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:43:17Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/54404de2-353f-4cc6-b4c4-6811f19ec171/\", \"task_id\": \"54404de2-353f-4cc6-b4c4-6811f19ec171\"}, {\"_href\": \"/pulp/api/v2/tasks/f81d1d1a-ee59-44ba-83d0-31fbb27885e2/\", \"task_id\": \"f81d1d1a-ee59-44ba-83d0-31fbb27885e2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:43:16-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:43:16-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f0d45ca013067bd7734b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f0d433a7d3a2e73beeea\"}, \"id\": \"5432f0d45ca0134a6f279142\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/f98962c6-f288-43f0-bef0-9d59a35f2bb7/\", \"task_id\": \"f98962c6-f288-43f0-bef0-9d59a35f2bb7\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:46:00Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:46:00Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/5eac3d4a-e8c5-4c7c-8835-6d1c40d27f1d/\", \"task_id\": \"5eac3d4a-e8c5-4c7c-8835-6d1c40d27f1d\"}, {\"_href\": \"/pulp/api/v2/tasks/c72d6b00-c6f3-4f17-8067-6700d08a3b58/\", \"task_id\": \"c72d6b00-c6f3-4f17-8067-6700d08a3b58\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:45:59-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:45:59-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f1775ca013067bd77369\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f17733a7d3a2e73beeee\"}, \"id\": \"5432f1775ca0134a6f279154\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/a8bceadf-bebf-48d4-a8e1-f2d40541231f/\", \"task_id\": \"a8bceadf-bebf-48d4-a8e1-f2d40541231f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:46:06Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:46:06Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a39f02ad-ed5c-4998-945c-5e2bbbb06a5a/\", \"task_id\": \"a39f02ad-ed5c-4998-945c-5e2bbbb06a5a\"}, {\"_href\": \"/pulp/api/v2/tasks/b29e5cd4-e384-4b3e-b231-c28e3de0b60c/\", \"task_id\": \"b29e5cd4-e384-4b3e-b231-c28e3de0b60c\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:46:05-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:46:06-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f17e5ca013067bd77387\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f17d33a7d3a2e73beef2\"}, \"id\": \"5432f17d5ca0134a6f279180\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/414344ba-15aa-440f-a24b-d3fe18193f3c/\", \"task_id\": \"414344ba-15aa-440f-a24b-d3fe18193f3c\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:49:52Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:49:52Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/64a30d0a-a1fa-493c-9575-7d2e17c6997a/\", \"task_id\": \"64a30d0a-a1fa-493c-9575-7d2e17c6997a\"}, {\"_href\": \"/pulp/api/v2/tasks/38810435-0427-461a-b4df-6d72aa7b5a80/\", \"task_id\": \"38810435-0427-461a-b4df-6d72aa7b5a80\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:49:51-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:49:51-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f25f5ca013067bd773a5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f25f33a7d3a2e73beef6\"}, \"id\": \"5432f25f5ca0134a6f279191\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/41feb23d-f675-4fc6-acac-8cf5216c990f/\", \"task_id\": \"41feb23d-f675-4fc6-acac-8cf5216c990f\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T19:49:58Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T19:49:57Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/e4f51fbb-8022-4860-831a-8bbc4089b131/\", \"task_id\": \"e4f51fbb-8022-4860-831a-8bbc4089b131\"}, {\"_href\": \"/pulp/api/v2/tasks/1475aa92-d403-4f9f-9acf-d860f88fde15/\", \"task_id\": \"1475aa92-d403-4f9f-9acf-d860f88fde15\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T15:49:56-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T15:49:56-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f2645ca013067bd773c3\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f26433a7d3a2e73beefa\"}, \"id\": \"5432f2645ca0134a6f2791bc\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/44a9e382-ea7a-4503-b99f-e0c72a2c4f37/\", \"task_id\": \"44a9e382-ea7a-4503-b99f-e0c72a2c4f37\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:04:36Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:04:36Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/1df64b16-c4c4-4c33-ae97-bff80fed7be3/\", \"task_id\": \"1df64b16-c4c4-4c33-ae97-bff80fed7be3\"}, {\"_href\": \"/pulp/api/v2/tasks/1b7e349e-6d62-4d79-906e-bc8ff19e4e47/\", \"task_id\": \"1b7e349e-6d62-4d79-906e-bc8ff19e4e47\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:04:35-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:04:35-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f5d35ca013067bd773e1\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f5d333a7d3a2e73bef01\"}, \"id\": \"5432f5d35ca0134a6f2791e6\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/45de3728-4202-4385-95f2-6b4de282f9f4/\", \"task_id\": \"45de3728-4202-4385-95f2-6b4de282f9f4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:04:44Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:04:43Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/861f71cc-339a-4504-9c5d-3e99aea73e41/\", \"task_id\": \"861f71cc-339a-4504-9c5d-3e99aea73e41\"}, {\"_href\": \"/pulp/api/v2/tasks/6f8a3759-c7c1-4969-a3dc-7c406ac25919/\", \"task_id\": \"6f8a3759-c7c1-4969-a3dc-7c406ac25919\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:04:42-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:04:42-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f5da5ca013067bd773ff\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f5da33a7d3a2e73bef05\"}, \"id\": \"5432f5da5ca0134a6f279227\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/a48186d6-3734-4626-b5b8-252e6d4c6c34/\", \"task_id\": \"a48186d6-3734-4626-b5b8-252e6d4c6c34\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:05:11Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:05:10Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/d880cf54-205d-4bad-9b98-6b0dbd624429/\", \"task_id\": \"d880cf54-205d-4bad-9b98-6b0dbd624429\"}, {\"_href\": \"/pulp/api/v2/tasks/5a58416c-91eb-472f-8aa9-b56c7ac12925/\", \"task_id\": \"5a58416c-91eb-472f-8aa9-b56c7ac12925\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:05:09-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:05:10-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 13, \"error_message\": null, \"updated_count\": 2, \"details\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f5f65ca013067bd7742f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f5e733a7d3a2e73bef10\"}, \"id\": \"5432f5e75ca0134a6f279256\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/7280be4e-bbae-4a19-aff6-1c4bf171b764/\", \"task_id\": \"7280be4e-bbae-4a19-aff6-1c4bf171b764\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:07:36Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:07:35Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/2913a1f8-72bd-4a81-8795-c37ea04f93a1/\", \"task_id\": \"2913a1f8-72bd-4a81-8795-c37ea04f93a1\"}, {\"_href\": \"/pulp/api/v2/tasks/70b39e0a-39e3-4e59-978b-61b6e0989e60/\", \"task_id\": \"70b39e0a-39e3-4e59-978b-61b6e0989e60\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:07:34-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:07:34-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f6865ca013067bd7744d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f68633a7d3a2e73bef18\"}, \"id\": \"5432f6865ca0134a6f27928c\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/5a16309d-070d-4b23-a9ba-d47ec9383cbc/\", \"task_id\": \"5a16309d-070d-4b23-a9ba-d47ec9383cbc\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:07:43Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:07:42Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/c7fca782-8543-461f-8997-d0cbc9f47af2/\", \"task_id\": \"c7fca782-8543-461f-8997-d0cbc9f47af2\"}, {\"_href\": \"/pulp/api/v2/tasks/f60f4e08-808d-454a-9e13-310a5441dba2/\", \"task_id\": \"f60f4e08-808d-454a-9e13-310a5441dba2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:07:41-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:07:41-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f68d5ca013067bd7746b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f68d33a7d3a2e73bef1c\"}, \"id\": \"5432f68d5ca0134a6f2792cd\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/659f962f-9c98-406b-a82b-f001942e40be/\", \"task_id\": \"659f962f-9c98-406b-a82b-f001942e40be\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-06T20:08:01Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-06T20:08:00Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/c28f02a3-9b26-469b-9652-818c44767852/\", \"task_id\": \"c28f02a3-9b26-469b-9652-818c44767852\"}, {\"_href\": \"/pulp/api/v2/tasks/6992fd30-7789-4c6d-ac09-864f8cbcbf0f/\", \"task_id\": \"6992fd30-7789-4c6d-ac09-864f8cbcbf0f\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-06T16:07:59-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-06T16:08:00-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 13, \"error_message\": null, \"updated_count\": 2, \"details\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5432f6a05ca013067bd7749b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5432f69a33a7d3a2e73bef27\"}, \"id\": \"5432f69a5ca0134a6f2792fc\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/9c6477ff-cad4-4648-bb52-53c5725b7c40/\", \"task_id\": \"9c6477ff-cad4-4648-bb52-53c5725b7c40\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T12:56:03Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T12:56:03Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/eba6e1ef-251d-4158-b9a4-aa4b544490d2/\", \"task_id\": \"eba6e1ef-251d-4158-b9a4-aa4b544490d2\"}, {\"_href\": \"/pulp/api/v2/tasks/e4148351-9347-4c27-aa55-9e273c462511/\", \"task_id\": \"e4148351-9347-4c27-aa55-9e273c462511\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T08:56:02-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T08:56:02-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e2e25ca013067bd774d7\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e2e233a7d3a2e73bef32\"}, \"id\": \"5433e2e25ca0134a6f279343\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/5ca23d78-a417-4f59-9e47-a5de86fd91c9/\", \"task_id\": \"5ca23d78-a417-4f59-9e47-a5de86fd91c9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:00:43Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:00:42Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8edc7f56-5a80-4fd8-8ac7-358d9da75e1a/\", \"task_id\": \"8edc7f56-5a80-4fd8-8ac7-358d9da75e1a\"}, {\"_href\": \"/pulp/api/v2/tasks/c1c2d8d9-d562-4c10-821c-dcc2717343a2/\", \"task_id\": \"c1c2d8d9-d562-4c10-821c-dcc2717343a2\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:00:41-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:00:42-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e3fa5ca013067bd774f5\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e3f933a7d3a2e73bef36\"}, \"id\": \"5433e3f95ca0134a6f279355\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/92836870-1c59-4282-937d-9b2213b3f95d/\", \"task_id\": \"92836870-1c59-4282-937d-9b2213b3f95d\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:00:49Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:00:48Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/cd7d3d30-b92a-47f5-b46b-f546a9e0d5d3/\", \"task_id\": \"cd7d3d30-b92a-47f5-b46b-f546a9e0d5d3\"}, {\"_href\": \"/pulp/api/v2/tasks/cde88818-1ba7-4254-9153-ca4a65a29dea/\", \"task_id\": \"cde88818-1ba7-4254-9153-ca4a65a29dea\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:00:48-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:00:48-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e4005ca013067bd77513\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e40033a7d3a2e73bef3a\"}, \"id\": \"5433e4005ca0134a6f279383\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/64ee9346-1a9f-401c-8d3c-f3bae63ec715/\", \"task_id\": \"64ee9346-1a9f-401c-8d3c-f3bae63ec715\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:03:50Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:03:49Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/bffa56c1-239f-4217-bac4-a5b144e3951e/\", \"task_id\": \"bffa56c1-239f-4217-bac4-a5b144e3951e\"}, {\"_href\": \"/pulp/api/v2/tasks/fb909e33-b8f2-4bfc-81d3-a17d826542c0/\", \"task_id\": \"fb909e33-b8f2-4bfc-81d3-a17d826542c0\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:03:49-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:03:49-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e4b55ca013067bd77531\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e4b533a7d3a2e73bef3e\"}, \"id\": \"5433e4b55ca0134a6f279395\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/e44e5ed0-39fc-46ff-a8a3-768e370d8836/\", \"task_id\": \"e44e5ed0-39fc-46ff-a8a3-768e370d8836\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:03:56Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:03:55Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/a08e8ee8-078a-4c0f-8437-0c2f650ba2f6/\", \"task_id\": \"a08e8ee8-078a-4c0f-8437-0c2f650ba2f6\"}, {\"_href\": \"/pulp/api/v2/tasks/5911ac6a-516a-41cd-8e9c-b29a4efbb687/\", \"task_id\": \"5911ac6a-516a-41cd-8e9c-b29a4efbb687\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:03:54-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:03:54-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e4ba5ca013067bd7754f\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e4ba33a7d3a2e73bef42\"}, \"id\": \"5433e4ba5ca0134a6f2793c1\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/92bdaac6-5419-48f1-b659-e98b26e83df4/\", \"task_id\": \"92bdaac6-5419-48f1-b659-e98b26e83df4\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:12:39Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:12:38Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/3cb0cac5-f754-49eb-8f74-c0f3723e2f0a/\", \"task_id\": \"3cb0cac5-f754-49eb-8f74-c0f3723e2f0a\"}, {\"_href\": \"/pulp/api/v2/tasks/b3fc8eb5-9e5e-477a-b80a-c9c1572dba97/\", \"task_id\": \"b3fc8eb5-9e5e-477a-b80a-c9c1572dba97\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:12:37-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:12:38-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e6c65ca013067bd7756d\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e6c533a7d3a2e73bef47\"}, \"id\": \"5433e6c55ca0134a6f2793d3\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/7acc93c7-7598-4b8f-8c8e-91162d2acf17/\", \"task_id\": \"7acc93c7-7598-4b8f-8c8e-91162d2acf17\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:12:45Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:12:44Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/6a4f9534-9278-4c72-9d8f-bb7a2f06aa54/\", \"task_id\": \"6a4f9534-9278-4c72-9d8f-bb7a2f06aa54\"}, {\"_href\": \"/pulp/api/v2/tasks/2e5369ba-7b3f-49e0-933a-55a0d9f555ff/\", \"task_id\": \"2e5369ba-7b3f-49e0-933a-55a0d9f555ff\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:12:43-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:12:43-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e6cb5ca013067bd7758b\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e6cb33a7d3a2e73bef4b\"}, \"id\": \"5433e6cb5ca0134a6f2793ff\"}, {\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/96da0f16-4ba1-49d4-b38e-5fe435e0afac/\", \"task_id\": \"96da0f16-4ba1-49d4-b38e-5fe435e0afac\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:16:34Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:33Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/82317804-bbf7-4b95-94ad-ce6f8c9ddf83/\", \"task_id\": \"82317804-bbf7-4b95-94ad-ce6f8c9ddf83\"}, {\"_href\": \"/pulp/api/v2/tasks/ad4132ba-5b47-4462-955a-2ddc767405d7/\", \"task_id\": \"ad4132ba-5b47-4462-955a-2ddc767405d7\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:16:32-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:16:33-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e7b15ca013067bd775a9\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e7b033a7d3a2e73bef52\"}, \"id\": \"5433e7b05ca0134a6f279427\"}]" + encoding: US-ASCII + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/870c4261-9d8a-46ae-afa5-6b5e72f4708c/\", \"task_id\": \"870c4261-9d8a-46ae-afa5-6b5e72f4708c\"}], \"result\": null, \"error\": null}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:38 GMT + recorded_at: Wed, 05 Aug 2015 19:59:23 GMT - request: - method: delete - uri: https://localhost/pulp/api/v2/repositories/1/ + method: get + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/870c4261-9d8a-46ae-afa5-6b5e72f4708c/ body: encoding: US-ASCII string: "" @@ -1284,36 +1652,34 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="vKr0RCctjvyjr5WPq27ockxPWQc1vj4GraMYnKagg", oauth_signature="g5npdnlLOVovvVDK3ACzPgNXoe4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687798", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="I1cvjH6eUrn1osm5wKMkH0QYpV6tf6tlTWpjNcCRVE", oauth_signature="EoR4pB8CScX83msdTIjEbsLFvs0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804763", oauth_version="1.0" Pulp-User: - admin User-Agent: - Ruby response: status: - code: 202 - message: Accepted + code: 200 + message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:38 GMT + - Wed, 05 Aug 2015 19:59:23 GMT Server: - - Apache/2.2.15 (Red Hat) - Content-Encoding: - - utf-8 + - Apache/2.4.6 (CentOS) Content-Length: - - "172" + - "519" Connection: - close Content-Type: - application/json body: encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/1d63c51e-afd8-4c89-ab9f-cd6cb270d12a/\", \"task_id\": \"1d63c51e-afd8-4c89-ab9f-cd6cb270d12a\"}], \"result\": null, \"error\": null}" + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/870c4261-9d8a-46ae-afa5-6b5e72f4708c/\", \"task_id\": \"870c4261-9d8a-46ae-afa5-6b5e72f4708c\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b1b7164df9aa32ab329\"}, \"id\": \"55c26b1b11513843aeb57141\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:38 GMT + recorded_at: Wed, 05 Aug 2015 19:59:23 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/1d63c51e-afd8-4c89-ab9f-cd6cb270d12a/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/870c4261-9d8a-46ae-afa5-6b5e72f4708c/ body: encoding: US-ASCII string: "" @@ -1325,7 +1691,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="ChYgUBnZRDMmUdZtLAlWkskkwiM9CJRFBQIoiGnoI", oauth_signature="UNVkF2%2BWQgS4jNdKjTztl%2FFG97w%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687798", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="VFLIWve7OR4ox3uSqQZ8wyJaIK5WL8DUPpAaRk2pbQA", oauth_signature="1IGn7DpjUG9BgDkzN64eBJ63jK4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804764", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -1336,20 +1702,18 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:39 GMT + - Wed, 05 Aug 2015 19:59:24 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "603" + - "678" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/1d63c51e-afd8-4c89-ab9f-cd6cb270d12a/\", \"task_id\": \"1d63c51e-afd8-4c89-ab9f-cd6cb270d12a\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2014-10-07T13:16:39Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:38Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7b633a7d3a2e73bef55\"}, \"id\": \"5433e7b65ca0134a6f279460\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/870c4261-9d8a-46ae-afa5-6b5e72f4708c/\", \"task_id\": \"870c4261-9d8a-46ae-afa5-6b5e72f4708c\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-08-05T19:59:23Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:23Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b1b7164df9aa32ab329\"}, \"id\": \"55c26b1b1151384439db716f\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:39 GMT + recorded_at: Wed, 05 Aug 2015 19:59:24 GMT recorded_with: VCR 2.9.3 diff --git a/test/fixtures/vcr_cassettes/pulp/repository/create.yml b/test/fixtures/vcr_cassettes/pulp/repository/create.yml index cc3eb82410d..21861b31333 100644 --- a/test/fixtures/vcr_cassettes/pulp/repository/create.yml +++ b/test/fixtures/vcr_cassettes/pulp/repository/create.yml @@ -1,8 +1,49 @@ --- http_interactions: +- request: + method: get + uri: https://localhost/pulp/api/v2/tasks/3e438fc6-235a-47af-ae3d-401881bd65eb/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="azsqfsnxB4JYYzfpQn9LuP1P6uIPbqXNRs7NuY5hM", oauth_signature="P5oFPW72SdDupbQ%2BPfMSulk9qJA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687824", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:17:04 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "603" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/3e438fc6-235a-47af-ae3d-401881bd65eb/\", \"task_id\": \"3e438fc6-235a-47af-ae3d-401881bd65eb\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2014-10-07T13:17:04Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:17:04Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7d033a7d3a2e73bef65\"}, \"id\": \"5433e7d05ca0134a6f2794a8\"}" + http_version: + recorded_at: Tue, 07 Oct 2014 13:17:04 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/ body: encoding: US-ASCII string: "{\"id\":\"1\",\"display_name\":\"Fedora 17 x86_64\",\"importer_type_id\":\"yum_importer\",\"importer_config\":{\"feed\":\"file:///var/www/test_repos/zoo\",\"ssl_ca_cert\":null,\"ssl_client_cert\":null,\"ssl_client_key\":null},\"notes\":{\"_repo-type\":\"rpm-repo\"},\"distributors\":[{\"distributor_type_id\":\"yum_distributor\",\"distributor_config\":{\"relative_url\":\"/test_path/\",\"http\":false,\"https\":true,\"protected\":true},\"auto_publish\":true,\"distributor_id\":\"1\"},{\"distributor_type_id\":\"yum_clone_distributor\",\"distributor_config\":{\"destination_distributor_id\":\"1\"},\"auto_publish\":false,\"distributor_id\":\"1_clone\"},{\"distributor_type_id\":\"nodes_http_distributor\",\"distributor_config\":{},\"auto_publish\":true,\"distributor_id\":\"1_nodes\"}]}" @@ -14,7 +55,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="OJQRQ5JAuiPj48ew8EiAVa5IGeqpPepopsqoA1LVkBk", oauth_signature="iwlJcVhjQRk8azLE3lmmUfSRZUI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687823", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="DqZ71ND6Q4YHNGXI4F449se6BuTSwBAgCzulDJloHY", oauth_signature="CWWsIXP7vPuiylOCJWDwou0KGxw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804778", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -27,27 +68,25 @@ http_interactions: message: Created headers: Date: - - Tue, 07 Oct 2014 13:17:03 GMT + - Wed, 05 Aug 2015 19:59:38 GMT Server: - - Apache/2.2.15 (Red Hat) + - Apache/2.4.6 (CentOS) Location: - "1" - Vary: - - Accept-Encoding Content-Length: - - "252" + - "304" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"5433e7d05ca0134a6f2794a2\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" + encoding: US-ASCII + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"last_unit_added\": null, \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"last_unit_removed\": null, \"content_unit_counts\": {}, \"_ns\": \"repos\", \"_id\": {\"$oid\": \"55c26b2a11513843aeb57199\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:17:04 GMT + recorded_at: Wed, 05 Aug 2015 19:59:38 GMT - request: method: delete - uri: https://localhost/pulp/api/v2/repositories/1/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/ body: encoding: US-ASCII string: "" @@ -59,7 +98,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="Y4nM8fh2iSE6VdFwYrvnWjEXIyFWscVOE44e3URA9bY", oauth_signature="VNVSNE48ZVUgwvlAiEGB4bLg8sU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687824", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="xTniQvnsxvkNbiwwcqBOKX3XE8ptnB8eTxcwzUv4IM", oauth_signature="2izcChFLwIkBmTOoCyE7iy17Qtw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804778", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -70,9 +109,9 @@ http_interactions: message: Accepted headers: Date: - - Tue, 07 Oct 2014 13:17:04 GMT + - Wed, 05 Aug 2015 19:59:38 GMT Server: - - Apache/2.2.15 (Red Hat) + - Apache/2.4.6 (CentOS) Content-Encoding: - utf-8 Content-Length: @@ -83,12 +122,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/3e438fc6-235a-47af-ae3d-401881bd65eb/\", \"task_id\": \"3e438fc6-235a-47af-ae3d-401881bd65eb\"}], \"result\": null, \"error\": null}" + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/dad06a80-1b24-4afc-a8cf-2f5a68ebfcf0/\", \"task_id\": \"dad06a80-1b24-4afc-a8cf-2f5a68ebfcf0\"}], \"result\": null, \"error\": null}" http_version: - recorded_at: Tue, 07 Oct 2014 13:17:04 GMT + recorded_at: Wed, 05 Aug 2015 19:59:38 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/3e438fc6-235a-47af-ae3d-401881bd65eb/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/dad06a80-1b24-4afc-a8cf-2f5a68ebfcf0/ body: encoding: US-ASCII string: "" @@ -100,7 +139,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="azsqfsnxB4JYYzfpQn9LuP1P6uIPbqXNRs7NuY5hM", oauth_signature="P5oFPW72SdDupbQ%2BPfMSulk9qJA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687824", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="7gkcx0AOSzfkYpl4rCjwWADdUeAz2wx6DZh67EPc", oauth_signature="GTcz7%2BEEmg3j4dpI3cBn7twbRrI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804778", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -111,20 +150,57 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:17:04 GMT + - Wed, 05 Aug 2015 19:59:38 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "603" + - "519" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/3e438fc6-235a-47af-ae3d-401881bd65eb/\", \"task_id\": \"3e438fc6-235a-47af-ae3d-401881bd65eb\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2014-10-07T13:17:04Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:17:04Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7d033a7d3a2e73bef65\"}, \"id\": \"5433e7d05ca0134a6f2794a8\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/dad06a80-1b24-4afc-a8cf-2f5a68ebfcf0/\", \"task_id\": \"dad06a80-1b24-4afc-a8cf-2f5a68ebfcf0\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b2a7164df9aa32ab368\"}, \"id\": \"55c26b2a11513843aeb5719f\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:17:04 GMT + recorded_at: Wed, 05 Aug 2015 19:59:38 GMT +- request: + method: get + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/dad06a80-1b24-4afc-a8cf-2f5a68ebfcf0/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="gVHiURudZIQzsni2zBQrsx3SdkP47eNxWJXX9Rj6B9Q", oauth_signature="eTx3GaA0ofJohpr7L1YhXPkwuk0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804779", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Wed, 05 Aug 2015 19:59:39 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "678" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/dad06a80-1b24-4afc-a8cf-2f5a68ebfcf0/\", \"task_id\": \"dad06a80-1b24-4afc-a8cf-2f5a68ebfcf0\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-08-05T19:59:39Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:39Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b2a7164df9aa32ab368\"}, \"id\": \"55c26b2a1151384439db71c6\"}" + http_version: + recorded_at: Wed, 05 Aug 2015 19:59:39 GMT recorded_with: VCR 2.9.3 diff --git a/test/fixtures/vcr_cassettes/pulp/repository/feed_change.yml b/test/fixtures/vcr_cassettes/pulp/repository/feed_change.yml index e36b209dc73..dd955cc7fb1 100644 --- a/test/fixtures/vcr_cassettes/pulp/repository/feed_change.yml +++ b/test/fixtures/vcr_cassettes/pulp/repository/feed_change.yml @@ -1,8 +1,49 @@ --- http_interactions: +- request: + method: get + uri: https://localhost/pulp/api/v2/tasks/81f464e4-8307-47dc-a650-655503d21b70/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="hdGLdmUZsbMrnFlftpvEhLBpk03aQl9HvPrXqqpMM", oauth_signature="9pX1owvIql3z8yVL1xMR4t4kVyo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687786", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:16:27 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "603" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/81f464e4-8307-47dc-a650-655503d21b70/\", \"task_id\": \"81f464e4-8307-47dc-a650-655503d21b70\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2014-10-07T13:16:27Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:26Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7aa33a7d3a2e73bef4f\"}, \"id\": \"5433e7aa5ca0134a6f27940f\"}" + http_version: + recorded_at: Tue, 07 Oct 2014 13:16:27 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/ body: encoding: US-ASCII string: "{\"id\":\"1\",\"display_name\":\"Fedora 17 x86_64\",\"importer_type_id\":\"yum_importer\",\"importer_config\":{\"feed\":\"file:///var/www/test_repos/zoo\",\"ssl_ca_cert\":null,\"ssl_client_cert\":null,\"ssl_client_key\":null},\"notes\":{\"_repo-type\":\"rpm-repo\"},\"distributors\":[{\"distributor_type_id\":\"yum_distributor\",\"distributor_config\":{\"relative_url\":\"/test_path/\",\"http\":false,\"https\":true,\"protected\":true},\"auto_publish\":true,\"distributor_id\":\"1\"},{\"distributor_type_id\":\"yum_clone_distributor\",\"distributor_config\":{\"destination_distributor_id\":\"1\"},\"auto_publish\":false,\"distributor_id\":\"1_clone\"},{\"distributor_type_id\":\"nodes_http_distributor\",\"distributor_config\":{},\"auto_publish\":true,\"distributor_id\":\"1_nodes\"}]}" @@ -14,7 +55,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="zunq8kNGE8Urkq69yVyb4PaWeKK1FJqxaQlDNUcJko", oauth_signature="ZOUI7LWL1rF95l%2FimgRrn%2Bcjj3A%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687786", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="Vch6lfVdUxJ76cRW5JHYnS9gEUXCxJ8t1MbKSebLU", oauth_signature="gs%2FWBf5wsScL%2FDZ4ckoTaACwqaU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804755", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -27,27 +68,25 @@ http_interactions: message: Created headers: Date: - - Tue, 07 Oct 2014 13:16:26 GMT + - Wed, 05 Aug 2015 19:59:15 GMT Server: - - Apache/2.2.15 (Red Hat) + - Apache/2.4.6 (CentOS) Location: - "1" - Vary: - - Accept-Encoding Content-Length: - - "252" + - "304" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"5433e7aa5ca0134a6f279409\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" + encoding: US-ASCII + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"last_unit_added\": null, \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"last_unit_removed\": null, \"content_unit_counts\": {}, \"_ns\": \"repos\", \"_id\": {\"$oid\": \"55c26b1311513843aeb570e2\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:26 GMT + recorded_at: Wed, 05 Aug 2015 19:59:15 GMT - request: method: delete - uri: https://localhost/pulp/api/v2/repositories/1/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/ body: encoding: US-ASCII string: "" @@ -59,7 +98,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="fpClbaYNxSaIUoNt0nJTBZfLelcm4WI1cCfC59v1oMM", oauth_signature="LW0ccVW4CtIHS%2FE2XEXsWxe02ws%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687786", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="e26JQxMhqaHsCeJbK3Z1tvcxZOo6KMRv94af803H52I", oauth_signature="TFA3jnROD0ljx3Zix2VDsBY40uk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804755", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -70,9 +109,9 @@ http_interactions: message: Accepted headers: Date: - - Tue, 07 Oct 2014 13:16:26 GMT + - Wed, 05 Aug 2015 19:59:15 GMT Server: - - Apache/2.2.15 (Red Hat) + - Apache/2.4.6 (CentOS) Content-Encoding: - utf-8 Content-Length: @@ -83,12 +122,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/81f464e4-8307-47dc-a650-655503d21b70/\", \"task_id\": \"81f464e4-8307-47dc-a650-655503d21b70\"}], \"result\": null, \"error\": null}" + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/2b0d59ab-9e1f-4fb5-909b-71e640e07226/\", \"task_id\": \"2b0d59ab-9e1f-4fb5-909b-71e640e07226\"}], \"result\": null, \"error\": null}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:26 GMT + recorded_at: Wed, 05 Aug 2015 19:59:15 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/81f464e4-8307-47dc-a650-655503d21b70/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/2b0d59ab-9e1f-4fb5-909b-71e640e07226/ body: encoding: US-ASCII string: "" @@ -100,7 +139,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="hdGLdmUZsbMrnFlftpvEhLBpk03aQl9HvPrXqqpMM", oauth_signature="9pX1owvIql3z8yVL1xMR4t4kVyo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687786", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="Ga9VOGBj0UOY1lq0HshcadiWp8fSefyQjvjCLUMvKEY", oauth_signature="q4SYI9oHPXNfPJ9bLJNgkyJ%2F33A%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804755", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -111,20 +150,57 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:27 GMT + - Wed, 05 Aug 2015 19:59:15 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "603" + - "519" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/81f464e4-8307-47dc-a650-655503d21b70/\", \"task_id\": \"81f464e4-8307-47dc-a650-655503d21b70\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2014-10-07T13:16:27Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:26Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7aa33a7d3a2e73bef4f\"}, \"id\": \"5433e7aa5ca0134a6f27940f\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/2b0d59ab-9e1f-4fb5-909b-71e640e07226/\", \"task_id\": \"2b0d59ab-9e1f-4fb5-909b-71e640e07226\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b137164df9aa32ab30a\"}, \"id\": \"55c26b1311513843aeb570e8\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:27 GMT + recorded_at: Wed, 05 Aug 2015 19:59:15 GMT +- request: + method: get + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/2b0d59ab-9e1f-4fb5-909b-71e640e07226/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="ZFVMbEgzavw9UqB5ogCtnCznUWYnXwxbUHabtT10jg", oauth_signature="DIuTvGMQ29mRtL2ou%2BiddB6ARkU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804756", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Wed, 05 Aug 2015 19:59:16 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "678" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/2b0d59ab-9e1f-4fb5-909b-71e640e07226/\", \"task_id\": \"2b0d59ab-9e1f-4fb5-909b-71e640e07226\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-08-05T19:59:16Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:16Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b137164df9aa32ab30a\"}, \"id\": \"55c26b131151384439db7148\"}" + http_version: + recorded_at: Wed, 05 Aug 2015 19:59:16 GMT recorded_with: VCR 2.9.3 diff --git a/test/fixtures/vcr_cassettes/pulp/repository/operations.yml b/test/fixtures/vcr_cassettes/pulp/repository/operations.yml index aaae88c5695..70a058a7052 100644 --- a/test/fixtures/vcr_cassettes/pulp/repository/operations.yml +++ b/test/fixtures/vcr_cassettes/pulp/repository/operations.yml @@ -1,11 +1,175 @@ --- http_interactions: +- request: + method: get + uri: https://localhost/pulp/api/v2/tasks/fb3f7c4b-95d7-4c71-b692-3f39ce560dd9/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="3GkavkO1amE95LhtQRhU9OPLkid8ylclRIIH2gAnyk", oauth_signature="jWKFtmUmM9ojpwl%2BJZw9cbVp2V8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687800", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:16:40 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "1024" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/fb3f7c4b-95d7-4c71-b692-3f39ce560dd9/\", \"task_id\": \"fb3f7c4b-95d7-4c71-b692-3f39ce560dd9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:40Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"NOT_STARTED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"IN_PROGRESS\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"running\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7b833a7d3a2e73bef56\"}, \"id\": \"5433e7b85ca0134a6f279468\"}" + http_version: + recorded_at: Tue, 07 Oct 2014 13:16:40 GMT +- request: + method: get + uri: https://localhost/pulp/api/v2/tasks/fb3f7c4b-95d7-4c71-b692-3f39ce560dd9/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="IcXVR6PEhf43qPU0H5paVhAmwYojNxtDS4EOyTF47eE", oauth_signature="PQdIpGTcTpko%2FSnm1K68R5PQcH8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687800", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:16:40 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "1021" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/fb3f7c4b-95d7-4c71-b692-3f39ce560dd9/\", \"task_id\": \"fb3f7c4b-95d7-4c71-b692-3f39ce560dd9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:40Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"IN_PROGRESS\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"running\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7b833a7d3a2e73bef56\"}, \"id\": \"5433e7b85ca0134a6f279468\"}" + http_version: + recorded_at: Tue, 07 Oct 2014 13:16:40 GMT +- request: + method: get + uri: https://localhost/pulp/api/v2/tasks/fb3f7c4b-95d7-4c71-b692-3f39ce560dd9/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="oghBWKUShocvlofKaWrE3aiWU1heDdMmhV39tsUJOk", oauth_signature="dfxQwvk%2BRPtndY8TAlrSWSyWAN4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687801", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:16:41 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "1009" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/fb3f7c4b-95d7-4c71-b692-3f39ce560dd9/\", \"task_id\": \"fb3f7c4b-95d7-4c71-b692-3f39ce560dd9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:41Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"running\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7b833a7d3a2e73bef56\"}, \"id\": \"5433e7b85ca0134a6f279468\"}" + http_version: + recorded_at: Tue, 07 Oct 2014 13:16:41 GMT +- request: + method: get + uri: https://localhost/pulp/api/v2/tasks/fb3f7c4b-95d7-4c71-b692-3f39ce560dd9/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="06vQFwXyLWsXGTmVuBiG87TsOXvd2vXlQ080t77Q", oauth_signature="OE%2FaLexFQdlOe9V2WpSCjebH8Zk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687802", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:16:42 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "2228" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/fb3f7c4b-95d7-4c71-b692-3f39ce560dd9/\", \"task_id\": \"fb3f7c4b-95d7-4c71-b692-3f39ce560dd9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:16:42Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:41Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/31e41c88-24b2-44e4-8ac9-918b6e600d77/\", \"task_id\": \"31e41c88-24b2-44e4-8ac9-918b6e600d77\"}, {\"_href\": \"/pulp/api/v2/tasks/25956da1-5100-4a56-ab46-3c7eba8c935e/\", \"task_id\": \"25956da1-5100-4a56-ab46-3c7eba8c935e\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:16:40-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:16:40-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e7b85ca013067bd775c7\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e7b833a7d3a2e73bef56\"}, \"id\": \"5433e7b85ca0134a6f279468\"}" + http_version: + recorded_at: Tue, 07 Oct 2014 13:16:42 GMT - request: method: post uri: https://localhost/pulp/api/v2/repositories/ body: encoding: US-ASCII - string: "{\"id\":\"1\",\"display_name\":\"Fedora 17 x86_64\",\"importer_type_id\":\"yum_importer\",\"importer_config\":{\"feed\":\"file:///var/www/test_repos/zoo\",\"ssl_ca_cert\":null,\"ssl_client_cert\":null,\"ssl_client_key\":null},\"notes\":{\"_repo-type\":\"rpm-repo\"},\"distributors\":[{\"distributor_type_id\":\"yum_distributor\",\"distributor_config\":{\"relative_url\":\"/test_path/\",\"http\":false,\"https\":true,\"protected\":true,\"checksum_type\":null},\"auto_publish\":true,\"distributor_id\":\"1\"},{\"distributor_type_id\":\"yum_clone_distributor\",\"distributor_config\":{\"destination_distributor_id\":\"1\"},\"auto_publish\":false,\"distributor_id\":\"1_clone\"},{\"distributor_type_id\":\"nodes_http_distributor\",\"distributor_config\":{},\"auto_publish\":true,\"distributor_id\":\"1_nodes\"}]}" + string: "{\"id\":\"2\",\"display_name\":\"Fedora 17 x86_64\",\"importer_type_id\":\"yum_importer\",\"importer_config\":{},\"notes\":{\"_repo-type\":\"rpm-repo\"},\"distributors\":[{\"distributor_type_id\":\"yum_distributor\",\"distributor_config\":{\"relative_url\":\"/dev_default_view_environment/\",\"http\":false,\"https\":true,\"protected\":true,\"checksum_type\":null},\"auto_publish\":true,\"distributor_id\":\"2\"},{\"distributor_type_id\":\"yum_clone_distributor\",\"distributor_config\":{\"destination_distributor_id\":\"2\"},\"auto_publish\":false,\"distributor_id\":\"2_clone\"},{\"distributor_type_id\":\"nodes_http_distributor\",\"distributor_config\":{},\"auto_publish\":true,\"distributor_id\":\"2_nodes\"}]}" headers: Accept: - application/json @@ -14,11 +178,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="FtueeuvC8QHU5a3VOJB6opGa4ARqNc3ZaXGy67P6rk", oauth_signature="pQZuZafJIbphckoFxqHUOjGdgBc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687799", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="TQDIJfs8KsADu2kh4gX8ZNatl5rIl8grnYZHEqwmzs", oauth_signature="%2FNPEiqftYOTPQe%2FYrRk54l6TtJw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687803", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "724" + - "640" User-Agent: - Ruby response: @@ -27,11 +191,11 @@ http_interactions: message: Created headers: Date: - - Tue, 07 Oct 2014 13:16:39 GMT + - Tue, 07 Oct 2014 13:16:43 GMT Server: - Apache/2.2.15 (Red Hat) Location: - - "1" + - "2" Vary: - Accept-Encoding Content-Length: @@ -42,15 +206,15 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"5433e7b75ca0134a6f279462\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"5433e7bb5ca0134a6f27946d\"}, \"id\": \"2\", \"_href\": \"/pulp/api/v2/repositories/2/\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:39 GMT + recorded_at: Tue, 07 Oct 2014 13:16:43 GMT - request: - method: post - uri: https://localhost/pulp/api/v2/repositories/1/actions/sync/ + method: get + uri: https://localhost/pulp/api/v2/tasks/0b7fa0fe-df6e-46b8-90b8-71970050ce16/ body: encoding: US-ASCII - string: "{\"override_config\":{\"num_threads\":4}}" + string: "" headers: Accept: - application/json @@ -59,38 +223,77 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="46FLfqOe7UKcVlnOqh4Nf4IM06MuyOTrzhYcB0voY", oauth_signature="UMjPukWFf1qi9JMa60qXpGzfEZE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687799", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="jo3TMMUhTiINFxvILwZinSiJkFICLUaqO5pcRriZhu8", oauth_signature="hjZZsGz%2FfsDjKj32gVcNpJRFiHo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687806", oauth_version="1.0" Pulp-User: - admin - Content-Length: - - "37" User-Agent: - Ruby response: status: - code: 202 - message: Accepted + code: 200 + message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:39 GMT + - Tue, 07 Oct 2014 13:16:46 GMT Server: - Apache/2.2.15 (Red Hat) - Content-Encoding: - - utf-8 + Vary: + - Accept-Encoding Content-Length: - - "172" + - "2485" Connection: - close Content-Type: - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/0b7fa0fe-df6e-46b8-90b8-71970050ce16/\", \"task_id\": \"0b7fa0fe-df6e-46b8-90b8-71970050ce16\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2014-10-07T13:16:44Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:43Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"units_successful\": [{\"unit_key\": {\"name\": \"penguin\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"walrus\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"squirrel\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"giraffe\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"monkey\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"elephant\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"cheetah\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"lion\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}]}, \"error\": null, \"_id\": {\"$oid\": \"5433e7bb33a7d3a2e73bef59\"}, \"id\": \"5433e7bb5ca0134a6f279474\"}" + http_version: + recorded_at: Tue, 07 Oct 2014 13:16:46 GMT +- request: + method: get + uri: https://localhost/pulp/api/v2/tasks/dee569af-83eb-4221-93f6-14971631562e/ body: encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/fb3f7c4b-95d7-4c71-b692-3f39ce560dd9/\", \"task_id\": \"fb3f7c4b-95d7-4c71-b692-3f39ce560dd9\"}], \"result\": null, \"error\": null}" + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="N3e7G9bKHcgizOSRBRgDiHFAtqe2iItRgCbpYxB3APc", oauth_signature="oRQDpKsgexk5Fg5nPyQD3SXK2DU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687806", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:16:46 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "847" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/dee569af-83eb-4221-93f6-14971631562e/\", \"task_id\": \"dee569af-83eb-4221-93f6-14971631562e\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2014-10-07T13:16:44Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:44Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"units_successful\": [{\"unit_key\": {\"variant\": \"TestVariant\", \"version\": \"16\", \"arch\": \"x86_64\", \"id\": \"ks-Test Family-TestVariant-16-x86_64\", \"family\": \"Test Family\"}, \"type_id\": \"distribution\"}]}, \"error\": null, \"_id\": {\"$oid\": \"5433e7bc33a7d3a2e73bef5a\"}, \"id\": \"5433e7bc5ca0134a6f279476\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:40 GMT + recorded_at: Tue, 07 Oct 2014 13:16:46 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/fb3f7c4b-95d7-4c71-b692-3f39ce560dd9/ + uri: https://localhost/pulp/api/v2/tasks/c7b66d14-6a84-495f-b00f-6eec9eb7527f/ body: encoding: US-ASCII string: "" @@ -102,7 +305,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="3GkavkO1amE95LhtQRhU9OPLkid8ylclRIIH2gAnyk", oauth_signature="jWKFtmUmM9ojpwl%2BJZw9cbVp2V8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687800", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="bkc6mkhl6VRKL3Ggui9CaBkS6A03ovy6vC3cRbYtk", oauth_signature="Bnq3tuj4ULj1fHGyAGJB0umVJJc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687806", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -113,25 +316,25 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:40 GMT + - Tue, 07 Oct 2014 13:16:46 GMT Server: - Apache/2.2.15 (Red Hat) Vary: - Accept-Encoding Content-Length: - - "1024" + - "858" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/fb3f7c4b-95d7-4c71-b692-3f39ce560dd9/\", \"task_id\": \"fb3f7c4b-95d7-4c71-b692-3f39ce560dd9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:40Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"NOT_STARTED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"IN_PROGRESS\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"running\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7b833a7d3a2e73bef56\"}, \"id\": \"5433e7b85ca0134a6f279468\"}" + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/c7b66d14-6a84-495f-b00f-6eec9eb7527f/\", \"task_id\": \"c7b66d14-6a84-495f-b00f-6eec9eb7527f\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2014-10-07T13:16:45Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:45Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"units_successful\": [{\"unit_key\": {\"id\": \"RHEA-2010:0001\"}, \"type_id\": \"erratum\"}, {\"unit_key\": {\"id\": \"RHEA-2010:0002\"}, \"type_id\": \"erratum\"}, {\"unit_key\": {\"id\": \"RHSA-2010:0858\"}, \"type_id\": \"erratum\"}]}, \"error\": null, \"_id\": {\"$oid\": \"5433e7bd33a7d3a2e73bef5b\"}, \"id\": \"5433e7bd5ca0134a6f279478\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:40 GMT + recorded_at: Tue, 07 Oct 2014 13:16:46 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/fb3f7c4b-95d7-4c71-b692-3f39ce560dd9/ + uri: https://localhost/pulp/api/v2/tasks/bd1583b3-3699-45f4-ae4d-ec359ba3664b/ body: encoding: US-ASCII string: "" @@ -143,7 +346,462 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="IcXVR6PEhf43qPU0H5paVhAmwYojNxtDS4EOyTF47eE", oauth_signature="PQdIpGTcTpko%2FSnm1K68R5PQcH8%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687800", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="f7E7gghrJIuprn8P9K4rbpMqWGlN0ibbTuJE2YvPC0", oauth_signature="ND1rnYV5k1O3cHi2gW1f6Ax6lOU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687806", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:16:47 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "822" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/bd1583b3-3699-45f4-ae4d-ec359ba3664b/\", \"task_id\": \"bd1583b3-3699-45f4-ae4d-ec359ba3664b\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2014-10-07T13:16:46Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:46Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"units_successful\": [{\"unit_key\": {\"repo_id\": \"2\", \"id\": \"bird\"}, \"type_id\": \"package_group\"}, {\"unit_key\": {\"repo_id\": \"2\", \"id\": \"mammal\"}, \"type_id\": \"package_group\"}]}, \"error\": null, \"_id\": {\"$oid\": \"5433e7be33a7d3a2e73bef5c\"}, \"id\": \"5433e7be5ca0134a6f27947a\"}" + http_version: + recorded_at: Tue, 07 Oct 2014 13:16:47 GMT +- request: + method: get + uri: https://localhost/pulp/api/v2/tasks/ea27b5fe-2430-4c55-9d66-dbaf9ca09066/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="tXwPqe5L7t10ZbLmJv9Cy5TBbPgkB91cO4BzsZvg0A", oauth_signature="0OqyZYEmYRS5RxJ2C9g3frGmzKk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687807", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:16:47 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "674" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/ea27b5fe-2430-4c55-9d66-dbaf9ca09066/\", \"task_id\": \"ea27b5fe-2430-4c55-9d66-dbaf9ca09066\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2014-10-07T13:16:46Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:46Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"units_successful\": []}, \"error\": null, \"_id\": {\"$oid\": \"5433e7be33a7d3a2e73bef5d\"}, \"id\": \"5433e7be5ca0134a6f27947c\"}" + http_version: + recorded_at: Tue, 07 Oct 2014 13:16:47 GMT +- request: + method: get + uri: https://localhost/pulp/api/v2/tasks/0b7fa0fe-df6e-46b8-90b8-71970050ce16/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="yjbX6SIb9UHJWGjiCdoHZmsshHEeLFoBTgDwPN9mH4", oauth_signature="Y38jb%2FFg7p1ODtZRxlA%2BqER%2FNyQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687807", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:16:47 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "2485" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/0b7fa0fe-df6e-46b8-90b8-71970050ce16/\", \"task_id\": \"0b7fa0fe-df6e-46b8-90b8-71970050ce16\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2014-10-07T13:16:44Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:43Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"units_successful\": [{\"unit_key\": {\"name\": \"penguin\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"walrus\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"squirrel\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"giraffe\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"monkey\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"elephant\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"cheetah\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"lion\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}]}, \"error\": null, \"_id\": {\"$oid\": \"5433e7bb33a7d3a2e73bef59\"}, \"id\": \"5433e7bb5ca0134a6f279474\"}" + http_version: + recorded_at: Tue, 07 Oct 2014 13:16:47 GMT +- request: + method: get + uri: https://localhost/pulp/api/v2/tasks/dee569af-83eb-4221-93f6-14971631562e/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="JUlYfXCM2jnWrYnahZXXXdd2pfkkrLxd3WhJE0v8M", oauth_signature="JvTOR0qVc9rIUcK8REw81dScfVI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687807", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:16:47 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "847" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/dee569af-83eb-4221-93f6-14971631562e/\", \"task_id\": \"dee569af-83eb-4221-93f6-14971631562e\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2014-10-07T13:16:44Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:44Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"units_successful\": [{\"unit_key\": {\"variant\": \"TestVariant\", \"version\": \"16\", \"arch\": \"x86_64\", \"id\": \"ks-Test Family-TestVariant-16-x86_64\", \"family\": \"Test Family\"}, \"type_id\": \"distribution\"}]}, \"error\": null, \"_id\": {\"$oid\": \"5433e7bc33a7d3a2e73bef5a\"}, \"id\": \"5433e7bc5ca0134a6f279476\"}" + http_version: + recorded_at: Tue, 07 Oct 2014 13:16:47 GMT +- request: + method: get + uri: https://localhost/pulp/api/v2/tasks/c7b66d14-6a84-495f-b00f-6eec9eb7527f/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="A96cejRIGuHhWy6w71H9QghXe1BnuafPKdo5zz5yg", oauth_signature="BsfB8IwU5QiXYF%2B8Vca6R77B%2F5A%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687808", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:16:48 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "858" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/c7b66d14-6a84-495f-b00f-6eec9eb7527f/\", \"task_id\": \"c7b66d14-6a84-495f-b00f-6eec9eb7527f\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2014-10-07T13:16:45Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:45Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"units_successful\": [{\"unit_key\": {\"id\": \"RHEA-2010:0001\"}, \"type_id\": \"erratum\"}, {\"unit_key\": {\"id\": \"RHEA-2010:0002\"}, \"type_id\": \"erratum\"}, {\"unit_key\": {\"id\": \"RHSA-2010:0858\"}, \"type_id\": \"erratum\"}]}, \"error\": null, \"_id\": {\"$oid\": \"5433e7bd33a7d3a2e73bef5b\"}, \"id\": \"5433e7bd5ca0134a6f279478\"}" + http_version: + recorded_at: Tue, 07 Oct 2014 13:16:48 GMT +- request: + method: get + uri: https://localhost/pulp/api/v2/tasks/bd1583b3-3699-45f4-ae4d-ec359ba3664b/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="SU3Sa47rj1fSl0KW1WggPy3S9xD2JhBYbtBeMMaNEg", oauth_signature="dft8VRGVw8m%2FMFi4%2BUdtEpz09hM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687808", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:16:48 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "822" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/bd1583b3-3699-45f4-ae4d-ec359ba3664b/\", \"task_id\": \"bd1583b3-3699-45f4-ae4d-ec359ba3664b\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2014-10-07T13:16:46Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:46Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"units_successful\": [{\"unit_key\": {\"repo_id\": \"2\", \"id\": \"bird\"}, \"type_id\": \"package_group\"}, {\"unit_key\": {\"repo_id\": \"2\", \"id\": \"mammal\"}, \"type_id\": \"package_group\"}]}, \"error\": null, \"_id\": {\"$oid\": \"5433e7be33a7d3a2e73bef5c\"}, \"id\": \"5433e7be5ca0134a6f27947a\"}" + http_version: + recorded_at: Tue, 07 Oct 2014 13:16:48 GMT +- request: + method: get + uri: https://localhost/pulp/api/v2/tasks/ea27b5fe-2430-4c55-9d66-dbaf9ca09066/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="eAMgEfhw7GkgaOjP3yNglmHXjIYq9WAYry9kHraRfc", oauth_signature="eLFleZRT%2BG0AUsy3Yh5iUWLHUSs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687809", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:16:49 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "674" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/ea27b5fe-2430-4c55-9d66-dbaf9ca09066/\", \"task_id\": \"ea27b5fe-2430-4c55-9d66-dbaf9ca09066\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2014-10-07T13:16:46Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:46Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"units_successful\": []}, \"error\": null, \"_id\": {\"$oid\": \"5433e7be33a7d3a2e73bef5d\"}, \"id\": \"5433e7be5ca0134a6f27947c\"}" + http_version: + recorded_at: Tue, 07 Oct 2014 13:16:49 GMT +- request: + method: get + uri: https://localhost/pulp/api/v2/tasks/cf8e118e-2963-4a5d-83e0-fed91a921d71/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="nlbZAu4likUhhQSzYB5TVFv4f9MmzS3TbBwdejCe8", oauth_signature="Z9OQfOR55Aq4RMtfVkjjT0xF4%2Fg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687810", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:16:50 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "603" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/cf8e118e-2963-4a5d-83e0-fed91a921d71/\", \"task_id\": \"cf8e118e-2963-4a5d-83e0-fed91a921d71\", \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"finish_time\": \"2014-10-07T13:16:50Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:50Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7c233a7d3a2e73bef5e\"}, \"id\": \"5433e7c25ca0134a6f279487\"}" + http_version: + recorded_at: Tue, 07 Oct 2014 13:16:50 GMT +- request: + method: get + uri: https://localhost/pulp/api/v2/tasks/77e9ca9e-3b24-4aa4-8060-07ea79c49e52/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="eAphJSy0w3tLaQvqew1HMJgPlVVJ0oB00XVUZcDR90", oauth_signature="W0h1%2F7VtponQMDX2x7ic%2FpcjoP0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687811", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:16:51 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "603" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/77e9ca9e-3b24-4aa4-8060-07ea79c49e52/\", \"task_id\": \"77e9ca9e-3b24-4aa4-8060-07ea79c49e52\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2014-10-07T13:16:51Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:51Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7c333a7d3a2e73bef5f\"}, \"id\": \"5433e7c35ca0134a6f279489\"}" + http_version: + recorded_at: Tue, 07 Oct 2014 13:16:51 GMT +- request: + method: post + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/ + body: + encoding: US-ASCII + string: "{\"id\":\"1\",\"display_name\":\"Fedora 17 x86_64\",\"importer_type_id\":\"yum_importer\",\"importer_config\":{\"feed\":\"file:///var/www/test_repos/zoo\",\"ssl_ca_cert\":null,\"ssl_client_cert\":null,\"ssl_client_key\":null},\"notes\":{\"_repo-type\":\"rpm-repo\"},\"distributors\":[{\"distributor_type_id\":\"yum_distributor\",\"distributor_config\":{\"relative_url\":\"/test_path/\",\"http\":false,\"https\":true,\"protected\":true,\"checksum_type\":null},\"auto_publish\":true,\"distributor_id\":\"1\"},{\"distributor_type_id\":\"yum_clone_distributor\",\"distributor_config\":{\"destination_distributor_id\":\"1\"},\"auto_publish\":false,\"distributor_id\":\"1_clone\"},{\"distributor_type_id\":\"nodes_http_distributor\",\"distributor_config\":{},\"auto_publish\":true,\"distributor_id\":\"1_nodes\"}]}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="535tMrSJsKULJmqPZgLQ3J74sGWyJXXc306fnD0X02g", oauth_signature="TMbKqGPWrG7DJ7bizF75cAPmV6Y%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804764", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "724" + User-Agent: + - Ruby + response: + status: + code: 201 + message: Created + headers: + Date: + - Wed, 05 Aug 2015 19:59:24 GMT + Server: + - Apache/2.4.6 (CentOS) + Location: + - "1" + Content-Length: + - "304" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"last_unit_added\": null, \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"last_unit_removed\": null, \"content_unit_counts\": {}, \"_ns\": \"repos\", \"_id\": {\"$oid\": \"55c26b1c11513843aeb57146\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" + http_version: + recorded_at: Wed, 05 Aug 2015 19:59:24 GMT +- request: + method: post + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/actions/sync/ + body: + encoding: US-ASCII + string: "{\"override_config\":{\"num_threads\":4}}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="gwjHRUbxCk2e7Nm8GlwrkVu9luzot6lTs1h4EzAihE", oauth_signature="WeQity83e7Xh6CnJgu%2BWya85OAc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804764", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "37" + User-Agent: + - Ruby + response: + status: + code: 202 + message: Accepted + headers: + Date: + - Wed, 05 Aug 2015 19:59:24 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Encoding: + - utf-8 + Content-Length: + - "172" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/20084638-a265-42e1-ac2c-abb76bae745e/\", \"task_id\": \"20084638-a265-42e1-ac2c-abb76bae745e\"}], \"result\": null, \"error\": null}" + http_version: + recorded_at: Wed, 05 Aug 2015 19:59:24 GMT +- request: + method: get + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/20084638-a265-42e1-ac2c-abb76bae745e/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="Kq55zIGBk3lbsiy6v78A7VGIHygZdw03WG16xpFhI94", oauth_signature="dKxyejQbUk675V8EsImMGmvDYXc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804764", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -154,25 +812,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:40 GMT + - Wed, 05 Aug 2015 19:59:24 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "1021" + - "617" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/fb3f7c4b-95d7-4c71-b692-3f39ce560dd9/\", \"task_id\": \"fb3f7c4b-95d7-4c71-b692-3f39ce560dd9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:40Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"IN_PROGRESS\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"running\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7b833a7d3a2e73bef56\"}, \"id\": \"5433e7b85ca0134a6f279468\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/20084638-a265-42e1-ac2c-abb76bae745e/\", \"task_id\": \"20084638-a265-42e1-ac2c-abb76bae745e\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b1c7164df9aa32ab32d\"}, \"id\": \"55c26b1c1151384439db7176\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:40 GMT + recorded_at: Wed, 05 Aug 2015 19:59:24 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/fb3f7c4b-95d7-4c71-b692-3f39ce560dd9/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/20084638-a265-42e1-ac2c-abb76bae745e/ body: encoding: US-ASCII string: "" @@ -184,7 +840,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="oghBWKUShocvlofKaWrE3aiWU1heDdMmhV39tsUJOk", oauth_signature="dfxQwvk%2BRPtndY8TAlrSWSyWAN4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687801", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="oSfqFgnj1S60pdLU4ao4I0TpvvS07ByArO0h5Bp1c", oauth_signature="ztEkLnfmfY5LTtp2IOf7tHzfxaw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804764", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -195,25 +851,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:41 GMT + - Wed, 05 Aug 2015 19:59:24 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "1009" + - "1083" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/fb3f7c4b-95d7-4c71-b692-3f39ce560dd9/\", \"task_id\": \"fb3f7c4b-95d7-4c71-b692-3f39ce560dd9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:41Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"running\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7b833a7d3a2e73bef56\"}, \"id\": \"5433e7b85ca0134a6f279468\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/20084638-a265-42e1-ac2c-abb76bae745e/\", \"task_id\": \"20084638-a265-42e1-ac2c-abb76bae745e\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:24Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"NOT_STARTED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"distribution\": {\"items_total\": 0, \"state\": \"NOT_STARTED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"IN_PROGRESS\"}}}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"running\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b1c7164df9aa32ab32d\"}, \"id\": \"55c26b1c1151384439db7176\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:41 GMT + recorded_at: Wed, 05 Aug 2015 19:59:24 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/fb3f7c4b-95d7-4c71-b692-3f39ce560dd9/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/20084638-a265-42e1-ac2c-abb76bae745e/ body: encoding: US-ASCII string: "" @@ -225,7 +879,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="06vQFwXyLWsXGTmVuBiG87TsOXvd2vXlQ080t77Q", oauth_signature="OE%2FaLexFQdlOe9V2WpSCjebH8Zk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687802", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="Bh7bnkTBzkX9DjSlHSgEWzgROFGxXMKZ7HuBUlictEQ", oauth_signature="vgxldnNZ2fTeI0vCLWUsc%2FDVuY0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804765", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -236,28 +890,26 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:42 GMT + - Wed, 05 Aug 2015 19:59:25 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "2228" + - "2277" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/fb3f7c4b-95d7-4c71-b692-3f39ce560dd9/\", \"task_id\": \"fb3f7c4b-95d7-4c71-b692-3f39ce560dd9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:16:42Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:41Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/31e41c88-24b2-44e4-8ac9-918b6e600d77/\", \"task_id\": \"31e41c88-24b2-44e4-8ac9-918b6e600d77\"}, {\"_href\": \"/pulp/api/v2/tasks/25956da1-5100-4a56-ab46-3c7eba8c935e/\", \"task_id\": \"25956da1-5100-4a56-ab46-3c7eba8c935e\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:16:40-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:16:40-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e7b85ca013067bd775c7\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e7b833a7d3a2e73bef56\"}, \"id\": \"5433e7b85ca0134a6f279468\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/20084638-a265-42e1-ac2c-abb76bae745e/\", \"task_id\": \"20084638-a265-42e1-ac2c-abb76bae745e\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-08-05T19:59:25Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:24Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/46695a27-e998-467f-a7b7-12126ef50492/\", \"task_id\": \"46695a27-e998-467f-a7b7-12126ef50492\"}, {\"_href\": \"/pulp/api/v2/tasks/592ae3d1-3b15-45b4-a590-39e3cf4ad439/\", \"task_id\": \"592ae3d1-3b15-45b4-a590-39e3cf4ad439\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-08-05T19:59:24Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-08-05T19:59:25Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 0, \"error_message\": null, \"updated_count\": 15, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55c26b1d115138443de6e9e9\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55c26b1c7164df9aa32ab32d\"}, \"id\": \"55c26b1c1151384439db7176\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:42 GMT + recorded_at: Wed, 05 Aug 2015 19:59:25 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/ body: encoding: US-ASCII - string: "{\"id\":\"2\",\"display_name\":\"Fedora 17 x86_64\",\"importer_type_id\":\"yum_importer\",\"importer_config\":{},\"notes\":{\"_repo-type\":\"rpm-repo\"},\"distributors\":[{\"distributor_type_id\":\"yum_distributor\",\"distributor_config\":{\"relative_url\":\"/dev_default_view_environment/\",\"http\":false,\"https\":true,\"protected\":true,\"checksum_type\":null},\"auto_publish\":true,\"distributor_id\":\"2\"},{\"distributor_type_id\":\"yum_clone_distributor\",\"distributor_config\":{\"destination_distributor_id\":\"2\"},\"auto_publish\":false,\"distributor_id\":\"2_clone\"},{\"distributor_type_id\":\"nodes_http_distributor\",\"distributor_config\":{},\"auto_publish\":true,\"distributor_id\":\"2_nodes\"}]}" + string: "{\"id\":\"2\",\"display_name\":\"Fedora 17 x86_64 dev\",\"importer_type_id\":\"yum_importer\",\"importer_config\":{},\"notes\":{\"_repo-type\":\"rpm-repo\"},\"distributors\":[{\"distributor_type_id\":\"yum_distributor\",\"distributor_config\":{\"relative_url\":\"/dev_default_view_environment/\",\"http\":false,\"https\":true,\"protected\":true,\"checksum_type\":null},\"auto_publish\":true,\"distributor_id\":\"2\"},{\"distributor_type_id\":\"yum_clone_distributor\",\"distributor_config\":{\"destination_distributor_id\":\"2\"},\"auto_publish\":false,\"distributor_id\":\"2_clone\"},{\"distributor_type_id\":\"nodes_http_distributor\",\"distributor_config\":{},\"auto_publish\":true,\"distributor_id\":\"2_nodes\"}]}" headers: Accept: - application/json @@ -266,11 +918,11 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="TQDIJfs8KsADu2kh4gX8ZNatl5rIl8grnYZHEqwmzs", oauth_signature="%2FNPEiqftYOTPQe%2FYrRk54l6TtJw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687803", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="JIJtOKpdk0BB85sUJ4b3e9FRIbzRxJbrWKQGMwUY5rY", oauth_signature="bOFoG4ocsqPUe4ydUk35XEaOFIY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804766", oauth_version="1.0" Pulp-User: - admin Content-Length: - - "640" + - "644" User-Agent: - Ruby response: @@ -279,27 +931,25 @@ http_interactions: message: Created headers: Date: - - Tue, 07 Oct 2014 13:16:43 GMT + - Wed, 05 Aug 2015 19:59:26 GMT Server: - - Apache/2.2.15 (Red Hat) + - Apache/2.4.6 (CentOS) Location: - "2" - Vary: - - Accept-Encoding Content-Length: - - "252" + - "308" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"5433e7bb5ca0134a6f27946d\"}, \"id\": \"2\", \"_href\": \"/pulp/api/v2/repositories/2/\"}" + encoding: US-ASCII + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64 dev\", \"description\": null, \"last_unit_added\": null, \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"last_unit_removed\": null, \"content_unit_counts\": {}, \"_ns\": \"repos\", \"_id\": {\"$oid\": \"55c26b1e11513843aeb57153\"}, \"id\": \"2\", \"_href\": \"/pulp/api/v2/repositories/2/\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:43 GMT + recorded_at: Wed, 05 Aug 2015 19:59:26 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/2/actions/associate/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/2/actions/associate/ body: encoding: US-ASCII string: "{\"source_repo_id\":\"1\",\"criteria\":{\"type_ids\":[\"rpm\"],\"filters\":{},\"fields\":{\"unit\":[\"name\",\"epoch\",\"version\",\"release\",\"arch\",\"checksumtype\",\"checksum\"]}}}" @@ -311,7 +961,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="V4CTqVV7bTxnfyxpQGIdxrRmSIqYpPwv5BTCcJnnB6c", oauth_signature="1eCsv9vYxvpk%2FZVi5SJLaoy57yE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687803", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="719r65duOvcYJn3M2SsXUMrCEiPDJFPKKnzRZl0PY", oauth_signature="QNjlCM8hFDtqMkHADLKeoQPlCYE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804766", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -324,9 +974,9 @@ http_interactions: message: Accepted headers: Date: - - Tue, 07 Oct 2014 13:16:43 GMT + - Wed, 05 Aug 2015 19:59:26 GMT Server: - - Apache/2.2.15 (Red Hat) + - Apache/2.4.6 (CentOS) Content-Encoding: - utf-8 Content-Length: @@ -337,12 +987,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/0b7fa0fe-df6e-46b8-90b8-71970050ce16/\", \"task_id\": \"0b7fa0fe-df6e-46b8-90b8-71970050ce16\"}], \"result\": null, \"error\": null}" + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/2b98b69a-34cd-4ed0-9e44-bb9258f4986b/\", \"task_id\": \"2b98b69a-34cd-4ed0-9e44-bb9258f4986b\"}], \"result\": null, \"error\": null}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:43 GMT + recorded_at: Wed, 05 Aug 2015 19:59:26 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/2/actions/associate/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/2/actions/associate/ body: encoding: US-ASCII string: "{\"source_repo_id\":\"1\",\"criteria\":{\"type_ids\":[\"distribution\"],\"filters\":{}}}" @@ -354,7 +1004,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="YKZdpJXB2AfFq4Pj2LMel6K29fjrySukp6ehvihZFNI", oauth_signature="qaUfxOMApdFy76tKywyJKWuxchM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687803", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="39IhfTaKcsdGxE4PpW7T8aZdJiyvezHyqllVq3ZfDQ", oauth_signature="BkW%2BCKVqwQE9ObBW4kd%2BYCKywmI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804766", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -367,9 +1017,9 @@ http_interactions: message: Accepted headers: Date: - - Tue, 07 Oct 2014 13:16:44 GMT + - Wed, 05 Aug 2015 19:59:26 GMT Server: - - Apache/2.2.15 (Red Hat) + - Apache/2.4.6 (CentOS) Content-Encoding: - utf-8 Content-Length: @@ -380,12 +1030,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/dee569af-83eb-4221-93f6-14971631562e/\", \"task_id\": \"dee569af-83eb-4221-93f6-14971631562e\"}], \"result\": null, \"error\": null}" + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/18a8cf08-bfa0-4c9f-8c02-6e06c54f88ad/\", \"task_id\": \"18a8cf08-bfa0-4c9f-8c02-6e06c54f88ad\"}], \"result\": null, \"error\": null}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:44 GMT + recorded_at: Wed, 05 Aug 2015 19:59:26 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/2/actions/associate/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/2/actions/associate/ body: encoding: US-ASCII string: "{\"source_repo_id\":\"1\",\"criteria\":{\"type_ids\":[\"erratum\"],\"filters\":{}}}" @@ -397,7 +1047,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="C9OyqxYvHwaRcC3E2FIujn04QbTn3IECCNm6IUnyMQc", oauth_signature="GBiqwxL1cZ7OS21KTA7wOfonO6w%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687804", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="D82ysWYBfMX9mSjnpIvcCvrKOEsrHm3aVKmgolHAh0", oauth_signature="y91OCkw1sD2tZyyt4iUh5r3Tn50%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804766", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -410,9 +1060,9 @@ http_interactions: message: Accepted headers: Date: - - Tue, 07 Oct 2014 13:16:44 GMT + - Wed, 05 Aug 2015 19:59:26 GMT Server: - - Apache/2.2.15 (Red Hat) + - Apache/2.4.6 (CentOS) Content-Encoding: - utf-8 Content-Length: @@ -423,12 +1073,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/c7b66d14-6a84-495f-b00f-6eec9eb7527f/\", \"task_id\": \"c7b66d14-6a84-495f-b00f-6eec9eb7527f\"}], \"result\": null, \"error\": null}" + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/d0a12fb8-093c-4ca6-a317-b1e3737e3436/\", \"task_id\": \"d0a12fb8-093c-4ca6-a317-b1e3737e3436\"}], \"result\": null, \"error\": null}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:45 GMT + recorded_at: Wed, 05 Aug 2015 19:59:26 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/2/actions/associate/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/2/actions/associate/ body: encoding: US-ASCII string: "{\"source_repo_id\":\"1\",\"criteria\":{\"type_ids\":[\"package_group\"],\"filters\":{}}}" @@ -440,7 +1090,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="gZhV8eik9KqClOrPehVAemUQbZKJlpaJ8BqLuGYU1FY", oauth_signature="n3OKfuzWvXl4yP3GSa8M9TVkTeQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687805", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="2zJWdGvSK9WRVbUuY4jBPflyhbdQh7oDW41Rn2qYrQ", oauth_signature="HBgcbQJOd7OlRQP%2FmCJ6WcrJllA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804766", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -453,9 +1103,9 @@ http_interactions: message: Accepted headers: Date: - - Tue, 07 Oct 2014 13:16:45 GMT + - Wed, 05 Aug 2015 19:59:26 GMT Server: - - Apache/2.2.15 (Red Hat) + - Apache/2.4.6 (CentOS) Content-Encoding: - utf-8 Content-Length: @@ -466,12 +1116,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/bd1583b3-3699-45f4-ae4d-ec359ba3664b/\", \"task_id\": \"bd1583b3-3699-45f4-ae4d-ec359ba3664b\"}], \"result\": null, \"error\": null}" + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/f7e0abe6-ba5a-4e5a-83b0-6763fc9ee7cf/\", \"task_id\": \"f7e0abe6-ba5a-4e5a-83b0-6763fc9ee7cf\"}], \"result\": null, \"error\": null}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:46 GMT + recorded_at: Wed, 05 Aug 2015 19:59:26 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/2/actions/associate/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/2/actions/associate/ body: encoding: US-ASCII string: "{\"source_repo_id\":\"1\",\"criteria\":{\"type_ids\":[\"yum_repo_metadata_file\"],\"filters\":{}}}" @@ -483,7 +1133,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="4XCsFbgGJqmKR5AVHSa2Vr23CkxS86caAAHFaYBFA", oauth_signature="FTzx%2BwwR2EbZBM4OcOcD1Qq8ztQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687806", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="Z0w4MZlCpNdS3ySwyfKXtCr4xLAYpCWyPNZPmohMO8", oauth_signature="KMGCBTteME9G0EylvvO8O2KF56c%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804766", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -496,9 +1146,9 @@ http_interactions: message: Accepted headers: Date: - - Tue, 07 Oct 2014 13:16:46 GMT + - Wed, 05 Aug 2015 19:59:26 GMT Server: - - Apache/2.2.15 (Red Hat) + - Apache/2.4.6 (CentOS) Content-Encoding: - utf-8 Content-Length: @@ -509,12 +1159,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/ea27b5fe-2430-4c55-9d66-dbaf9ca09066/\", \"task_id\": \"ea27b5fe-2430-4c55-9d66-dbaf9ca09066\"}], \"result\": null, \"error\": null}" + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8b7cc6e9-c93a-4ce1-b4ea-860ac63db191/\", \"task_id\": \"8b7cc6e9-c93a-4ce1-b4ea-860ac63db191\"}], \"result\": null, \"error\": null}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:46 GMT + recorded_at: Wed, 05 Aug 2015 19:59:26 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/0b7fa0fe-df6e-46b8-90b8-71970050ce16/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/2b98b69a-34cd-4ed0-9e44-bb9258f4986b/ body: encoding: US-ASCII string: "" @@ -526,7 +1176,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="jo3TMMUhTiINFxvILwZinSiJkFICLUaqO5pcRriZhu8", oauth_signature="hjZZsGz%2FfsDjKj32gVcNpJRFiHo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687806", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="h19b59D4HWQvC7WWAzZdhbx8MK3UZHswpQ8tkvbCZ4", oauth_signature="IZ7EUxM2t609bQIwqWNQlnxccAY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804766", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -537,25 +1187,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:46 GMT + - Wed, 05 Aug 2015 19:59:27 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "2485" + - "2560" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/0b7fa0fe-df6e-46b8-90b8-71970050ce16/\", \"task_id\": \"0b7fa0fe-df6e-46b8-90b8-71970050ce16\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2014-10-07T13:16:44Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:43Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"units_successful\": [{\"unit_key\": {\"name\": \"penguin\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"walrus\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"squirrel\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"giraffe\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"monkey\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"elephant\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"cheetah\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"lion\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}]}, \"error\": null, \"_id\": {\"$oid\": \"5433e7bb33a7d3a2e73bef59\"}, \"id\": \"5433e7bb5ca0134a6f279474\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/2b98b69a-34cd-4ed0-9e44-bb9258f4986b/\", \"task_id\": \"2b98b69a-34cd-4ed0-9e44-bb9258f4986b\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2015-08-05T19:59:26Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:26Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": {\"units_successful\": [{\"unit_key\": {\"name\": \"penguin\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"walrus\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"squirrel\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"giraffe\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"monkey\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"elephant\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"cheetah\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"lion\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}]}, \"error\": null, \"_id\": {\"$oid\": \"55c26b1e7164df9aa32ab339\"}, \"id\": \"55c26b1e1151384439db7188\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:46 GMT + recorded_at: Wed, 05 Aug 2015 19:59:27 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/dee569af-83eb-4221-93f6-14971631562e/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/18a8cf08-bfa0-4c9f-8c02-6e06c54f88ad/ body: encoding: US-ASCII string: "" @@ -567,7 +1215,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="N3e7G9bKHcgizOSRBRgDiHFAtqe2iItRgCbpYxB3APc", oauth_signature="oRQDpKsgexk5Fg5nPyQD3SXK2DU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687806", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="UpISOmnDqLEwSYGzsYkq0MXocbj6EIo58roU5YuDk", oauth_signature="uXc%2FThZvdCgW5t7Suk03lPaugxQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804767", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -578,25 +1226,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:46 GMT + - Wed, 05 Aug 2015 19:59:27 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "847" + - "670" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/dee569af-83eb-4221-93f6-14971631562e/\", \"task_id\": \"dee569af-83eb-4221-93f6-14971631562e\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2014-10-07T13:16:44Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:44Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"units_successful\": [{\"unit_key\": {\"variant\": \"TestVariant\", \"version\": \"16\", \"arch\": \"x86_64\", \"id\": \"ks-Test Family-TestVariant-16-x86_64\", \"family\": \"Test Family\"}, \"type_id\": \"distribution\"}]}, \"error\": null, \"_id\": {\"$oid\": \"5433e7bc33a7d3a2e73bef5a\"}, \"id\": \"5433e7bc5ca0134a6f279476\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/18a8cf08-bfa0-4c9f-8c02-6e06c54f88ad/\", \"task_id\": \"18a8cf08-bfa0-4c9f-8c02-6e06c54f88ad\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b1e7164df9aa32ab33b\"}, \"id\": \"55c26b1e1151384439db718c\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:46 GMT + recorded_at: Wed, 05 Aug 2015 19:59:27 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/c7b66d14-6a84-495f-b00f-6eec9eb7527f/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/d0a12fb8-093c-4ca6-a317-b1e3737e3436/ body: encoding: US-ASCII string: "" @@ -608,7 +1254,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="bkc6mkhl6VRKL3Ggui9CaBkS6A03ovy6vC3cRbYtk", oauth_signature="Bnq3tuj4ULj1fHGyAGJB0umVJJc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687806", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="PDXVBbF2fglwGv7PthyauVHgtH7jcwU65ltDDOxXv0", oauth_signature="dbOEf4z5S1l%2F0j5aoySEETAovMs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804767", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -619,25 +1265,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:46 GMT + - Wed, 05 Aug 2015 19:59:27 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "858" + - "670" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/c7b66d14-6a84-495f-b00f-6eec9eb7527f/\", \"task_id\": \"c7b66d14-6a84-495f-b00f-6eec9eb7527f\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2014-10-07T13:16:45Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:45Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"units_successful\": [{\"unit_key\": {\"id\": \"RHEA-2010:0001\"}, \"type_id\": \"erratum\"}, {\"unit_key\": {\"id\": \"RHEA-2010:0002\"}, \"type_id\": \"erratum\"}, {\"unit_key\": {\"id\": \"RHSA-2010:0858\"}, \"type_id\": \"erratum\"}]}, \"error\": null, \"_id\": {\"$oid\": \"5433e7bd33a7d3a2e73bef5b\"}, \"id\": \"5433e7bd5ca0134a6f279478\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/d0a12fb8-093c-4ca6-a317-b1e3737e3436/\", \"task_id\": \"d0a12fb8-093c-4ca6-a317-b1e3737e3436\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b1e7164df9aa32ab33e\"}, \"id\": \"55c26b1e1151384439db7190\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:46 GMT + recorded_at: Wed, 05 Aug 2015 19:59:27 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/bd1583b3-3699-45f4-ae4d-ec359ba3664b/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/f7e0abe6-ba5a-4e5a-83b0-6763fc9ee7cf/ body: encoding: US-ASCII string: "" @@ -649,7 +1293,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="f7E7gghrJIuprn8P9K4rbpMqWGlN0ibbTuJE2YvPC0", oauth_signature="ND1rnYV5k1O3cHi2gW1f6Ax6lOU%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687806", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="oSiexdlKEYeRFNqjROgQwNuR6Dqgu2OxgDX5d7ZVRFo", oauth_signature="nEwCsTudS1M9I3GexI9g32ZCXzY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804767", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -660,25 +1304,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:47 GMT + - Wed, 05 Aug 2015 19:59:27 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "822" + - "670" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/bd1583b3-3699-45f4-ae4d-ec359ba3664b/\", \"task_id\": \"bd1583b3-3699-45f4-ae4d-ec359ba3664b\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2014-10-07T13:16:46Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:46Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"units_successful\": [{\"unit_key\": {\"repo_id\": \"2\", \"id\": \"bird\"}, \"type_id\": \"package_group\"}, {\"unit_key\": {\"repo_id\": \"2\", \"id\": \"mammal\"}, \"type_id\": \"package_group\"}]}, \"error\": null, \"_id\": {\"$oid\": \"5433e7be33a7d3a2e73bef5c\"}, \"id\": \"5433e7be5ca0134a6f27947a\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/f7e0abe6-ba5a-4e5a-83b0-6763fc9ee7cf/\", \"task_id\": \"f7e0abe6-ba5a-4e5a-83b0-6763fc9ee7cf\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b1e7164df9aa32ab340\"}, \"id\": \"55c26b1e1151384439db7194\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:47 GMT + recorded_at: Wed, 05 Aug 2015 19:59:27 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/ea27b5fe-2430-4c55-9d66-dbaf9ca09066/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/8b7cc6e9-c93a-4ce1-b4ea-860ac63db191/ body: encoding: US-ASCII string: "" @@ -690,7 +1332,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="tXwPqe5L7t10ZbLmJv9Cy5TBbPgkB91cO4BzsZvg0A", oauth_signature="0OqyZYEmYRS5RxJ2C9g3frGmzKk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687807", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="bPP0gVNuPUuZoSQdKpjsDiSIJJEVGLzdbbccibkXs2M", oauth_signature="FasPKL5t2pJx40668kL40jNhKG4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804767", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -701,25 +1343,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:47 GMT + - Wed, 05 Aug 2015 19:59:27 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "674" + - "670" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/ea27b5fe-2430-4c55-9d66-dbaf9ca09066/\", \"task_id\": \"ea27b5fe-2430-4c55-9d66-dbaf9ca09066\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2014-10-07T13:16:46Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:46Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"units_successful\": []}, \"error\": null, \"_id\": {\"$oid\": \"5433e7be33a7d3a2e73bef5d\"}, \"id\": \"5433e7be5ca0134a6f27947c\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/8b7cc6e9-c93a-4ce1-b4ea-860ac63db191/\", \"task_id\": \"8b7cc6e9-c93a-4ce1-b4ea-860ac63db191\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b1e7164df9aa32ab342\"}, \"id\": \"55c26b1f1151384439db7198\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:47 GMT + recorded_at: Wed, 05 Aug 2015 19:59:27 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/0b7fa0fe-df6e-46b8-90b8-71970050ce16/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/2b98b69a-34cd-4ed0-9e44-bb9258f4986b/ body: encoding: US-ASCII string: "" @@ -731,7 +1371,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="yjbX6SIb9UHJWGjiCdoHZmsshHEeLFoBTgDwPN9mH4", oauth_signature="Y38jb%2FFg7p1ODtZRxlA%2BqER%2FNyQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687807", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="BWe049qAcHKCMRH5ThIyjvCuuXv29ZAL7nwqdUyJVE", oauth_signature="FKzlab3mqrAK11Skh6FCXW0dr0c%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804767", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -742,25 +1382,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:47 GMT + - Wed, 05 Aug 2015 19:59:27 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "2485" + - "2560" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/0b7fa0fe-df6e-46b8-90b8-71970050ce16/\", \"task_id\": \"0b7fa0fe-df6e-46b8-90b8-71970050ce16\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2014-10-07T13:16:44Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:43Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"units_successful\": [{\"unit_key\": {\"name\": \"penguin\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"walrus\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"squirrel\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"giraffe\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"monkey\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"elephant\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"cheetah\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"lion\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}]}, \"error\": null, \"_id\": {\"$oid\": \"5433e7bb33a7d3a2e73bef59\"}, \"id\": \"5433e7bb5ca0134a6f279474\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/2b98b69a-34cd-4ed0-9e44-bb9258f4986b/\", \"task_id\": \"2b98b69a-34cd-4ed0-9e44-bb9258f4986b\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2015-08-05T19:59:26Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:26Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": {\"units_successful\": [{\"unit_key\": {\"name\": \"penguin\", \"checksum\": \"3fcb2c927de9e13bf68469032a28b139d3e5ad2e58564fc210fd6e48635be694\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"walrus\", \"checksum\": \"6e8d6dc057e3e2c9819f0dc7e6c7b7f86bf2e8571bba414adec7fb621a461dfd\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"squirrel\", \"checksum\": \"251768bdd15f13d78487c27638aa6aecd01551e253756093cde1c0ae878a17d2\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"giraffe\", \"checksum\": \"f25d67d1d9da04f12e57ca323247b43891ac46533e355b82de6d1922009f9f14\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"monkey\", \"checksum\": \"0e8fa50d0128fbabc7ccc5632e3fa25d39b0280169f6166cb8e2c84de8501db1\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"elephant\", \"checksum\": \"3e1c70cd1b421328acaf6397cb3d16145306bb95f65d1b095fc31372a0a701f3\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"cheetah\", \"checksum\": \"422d0baa0cd9d7713ae796e886a23e17f578f924f74880debdbb7d65fb368dae\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}, {\"unit_key\": {\"name\": \"lion\", \"checksum\": \"12400dc95c23a4c160725a908716cd3fcdd7a8981585437ab64cd62efa3e4ae4\", \"epoch\": \"0\", \"version\": \"0.3\", \"release\": \"0.8\", \"arch\": \"noarch\", \"checksumtype\": \"sha256\"}, \"type_id\": \"rpm\"}]}, \"error\": null, \"_id\": {\"$oid\": \"55c26b1e7164df9aa32ab339\"}, \"id\": \"55c26b1e1151384439db7188\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:47 GMT + recorded_at: Wed, 05 Aug 2015 19:59:27 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/dee569af-83eb-4221-93f6-14971631562e/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/18a8cf08-bfa0-4c9f-8c02-6e06c54f88ad/ body: encoding: US-ASCII string: "" @@ -772,7 +1410,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="JUlYfXCM2jnWrYnahZXXXdd2pfkkrLxd3WhJE0v8M", oauth_signature="JvTOR0qVc9rIUcK8REw81dScfVI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687807", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="LOeUrRwAwemwmsae9jkWa4w10dbkACUlwggkRxaYYpI", oauth_signature="FzJXpTtcNdrGajOcQeeMu9qAkWo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804767", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -783,25 +1421,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:47 GMT + - Wed, 05 Aug 2015 19:59:27 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "847" + - "922" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/dee569af-83eb-4221-93f6-14971631562e/\", \"task_id\": \"dee569af-83eb-4221-93f6-14971631562e\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2014-10-07T13:16:44Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:44Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"units_successful\": [{\"unit_key\": {\"variant\": \"TestVariant\", \"version\": \"16\", \"arch\": \"x86_64\", \"id\": \"ks-Test Family-TestVariant-16-x86_64\", \"family\": \"Test Family\"}, \"type_id\": \"distribution\"}]}, \"error\": null, \"_id\": {\"$oid\": \"5433e7bc33a7d3a2e73bef5a\"}, \"id\": \"5433e7bc5ca0134a6f279476\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/18a8cf08-bfa0-4c9f-8c02-6e06c54f88ad/\", \"task_id\": \"18a8cf08-bfa0-4c9f-8c02-6e06c54f88ad\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2015-08-05T19:59:27Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:27Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": {\"units_successful\": [{\"unit_key\": {\"variant\": \"TestVariant\", \"version\": \"16\", \"arch\": \"x86_64\", \"id\": \"ks-Test Family-TestVariant-16-x86_64\", \"family\": \"Test Family\"}, \"type_id\": \"distribution\"}]}, \"error\": null, \"_id\": {\"$oid\": \"55c26b1e7164df9aa32ab33b\"}, \"id\": \"55c26b1e1151384439db718c\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:47 GMT + recorded_at: Wed, 05 Aug 2015 19:59:27 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/c7b66d14-6a84-495f-b00f-6eec9eb7527f/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/d0a12fb8-093c-4ca6-a317-b1e3737e3436/ body: encoding: US-ASCII string: "" @@ -813,7 +1449,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="A96cejRIGuHhWy6w71H9QghXe1BnuafPKdo5zz5yg", oauth_signature="BsfB8IwU5QiXYF%2B8Vca6R77B%2F5A%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687808", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="iIfQJnWH0Grqm5IXPwuD2iz0OMxgKWAU5HvcEq4Ug", oauth_signature="r6Pl3gGxuB5imAEPEkYNAy%2B6PmE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804768", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -824,25 +1460,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:48 GMT + - Wed, 05 Aug 2015 19:59:28 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "858" + - "933" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/c7b66d14-6a84-495f-b00f-6eec9eb7527f/\", \"task_id\": \"c7b66d14-6a84-495f-b00f-6eec9eb7527f\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2014-10-07T13:16:45Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:45Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"units_successful\": [{\"unit_key\": {\"id\": \"RHEA-2010:0001\"}, \"type_id\": \"erratum\"}, {\"unit_key\": {\"id\": \"RHEA-2010:0002\"}, \"type_id\": \"erratum\"}, {\"unit_key\": {\"id\": \"RHSA-2010:0858\"}, \"type_id\": \"erratum\"}]}, \"error\": null, \"_id\": {\"$oid\": \"5433e7bd33a7d3a2e73bef5b\"}, \"id\": \"5433e7bd5ca0134a6f279478\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/d0a12fb8-093c-4ca6-a317-b1e3737e3436/\", \"task_id\": \"d0a12fb8-093c-4ca6-a317-b1e3737e3436\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2015-08-05T19:59:27Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:27Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": {\"units_successful\": [{\"unit_key\": {\"id\": \"RHEA-2010:0001\"}, \"type_id\": \"erratum\"}, {\"unit_key\": {\"id\": \"RHEA-2010:0002\"}, \"type_id\": \"erratum\"}, {\"unit_key\": {\"id\": \"RHSA-2010:0858\"}, \"type_id\": \"erratum\"}]}, \"error\": null, \"_id\": {\"$oid\": \"55c26b1e7164df9aa32ab33e\"}, \"id\": \"55c26b1e1151384439db7190\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:48 GMT + recorded_at: Wed, 05 Aug 2015 19:59:28 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/bd1583b3-3699-45f4-ae4d-ec359ba3664b/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/f7e0abe6-ba5a-4e5a-83b0-6763fc9ee7cf/ body: encoding: US-ASCII string: "" @@ -854,7 +1488,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="SU3Sa47rj1fSl0KW1WggPy3S9xD2JhBYbtBeMMaNEg", oauth_signature="dft8VRGVw8m%2FMFi4%2BUdtEpz09hM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687808", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="PeAwI4CNtKLQkAWnflWViCQ3p1jRKV8QlqBvLC4", oauth_signature="GUfsUvG%2FEih2Z04pnqytXFwBUwk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804768", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -865,25 +1499,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:48 GMT + - Wed, 05 Aug 2015 19:59:28 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "822" + - "897" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/bd1583b3-3699-45f4-ae4d-ec359ba3664b/\", \"task_id\": \"bd1583b3-3699-45f4-ae4d-ec359ba3664b\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2014-10-07T13:16:46Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:46Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"units_successful\": [{\"unit_key\": {\"repo_id\": \"2\", \"id\": \"bird\"}, \"type_id\": \"package_group\"}, {\"unit_key\": {\"repo_id\": \"2\", \"id\": \"mammal\"}, \"type_id\": \"package_group\"}]}, \"error\": null, \"_id\": {\"$oid\": \"5433e7be33a7d3a2e73bef5c\"}, \"id\": \"5433e7be5ca0134a6f27947a\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/f7e0abe6-ba5a-4e5a-83b0-6763fc9ee7cf/\", \"task_id\": \"f7e0abe6-ba5a-4e5a-83b0-6763fc9ee7cf\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2015-08-05T19:59:27Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:27Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": {\"units_successful\": [{\"unit_key\": {\"repo_id\": \"2\", \"id\": \"bird\"}, \"type_id\": \"package_group\"}, {\"unit_key\": {\"repo_id\": \"2\", \"id\": \"mammal\"}, \"type_id\": \"package_group\"}]}, \"error\": null, \"_id\": {\"$oid\": \"55c26b1e7164df9aa32ab340\"}, \"id\": \"55c26b1e1151384439db7194\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:48 GMT + recorded_at: Wed, 05 Aug 2015 19:59:28 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/ea27b5fe-2430-4c55-9d66-dbaf9ca09066/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/8b7cc6e9-c93a-4ce1-b4ea-860ac63db191/ body: encoding: US-ASCII string: "" @@ -895,7 +1527,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="eAMgEfhw7GkgaOjP3yNglmHXjIYq9WAYry9kHraRfc", oauth_signature="eLFleZRT%2BG0AUsy3Yh5iUWLHUSs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687809", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="gasdytGObDmjmJcfkjFt7EytzmABIvioY84z9KsYyAI", oauth_signature="mHWRlyLh%2BNLFwLWyKUqZ19RRQG0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804769", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -906,25 +1538,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:49 GMT + - Wed, 05 Aug 2015 19:59:29 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "674" + - "749" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/ea27b5fe-2430-4c55-9d66-dbaf9ca09066/\", \"task_id\": \"ea27b5fe-2430-4c55-9d66-dbaf9ca09066\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2014-10-07T13:16:46Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:46Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"units_successful\": []}, \"error\": null, \"_id\": {\"$oid\": \"5433e7be33a7d3a2e73bef5d\"}, \"id\": \"5433e7be5ca0134a6f27947c\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.unit_association.associate_from_repo\", \"_href\": \"/pulp/api/v2/tasks/8b7cc6e9-c93a-4ce1-b4ea-860ac63db191/\", \"task_id\": \"8b7cc6e9-c93a-4ce1-b4ea-860ac63db191\", \"tags\": [\"pulp:repository:2\", \"pulp:repository:1\", \"pulp:action:associate\"], \"finish_time\": \"2015-08-05T19:59:27Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:27Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": {\"units_successful\": []}, \"error\": null, \"_id\": {\"$oid\": \"55c26b1e7164df9aa32ab342\"}, \"id\": \"55c26b1f1151384439db7198\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:49 GMT + recorded_at: Wed, 05 Aug 2015 19:59:29 GMT - request: method: delete - uri: https://localhost/pulp/api/v2/repositories/2/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/2/ body: encoding: US-ASCII string: "" @@ -936,7 +1566,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="bS0m9rhr4WSo3ESZzZbAJ2Sci6CtfYt6xxfzMUMkIb0", oauth_signature="Ji0Clo3loqMl8gMdhu4p0O72C00%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687809", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="jGyqGH18GGXbarBZK2a93ba2LmIcOe03kwDkDUSx0g", oauth_signature="1wNSYQlVqw%2FhKlwplmYxGGa7MVE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804770", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -947,9 +1577,9 @@ http_interactions: message: Accepted headers: Date: - - Tue, 07 Oct 2014 13:16:49 GMT + - Wed, 05 Aug 2015 19:59:30 GMT Server: - - Apache/2.2.15 (Red Hat) + - Apache/2.4.6 (CentOS) Content-Encoding: - utf-8 Content-Length: @@ -960,12 +1590,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/cf8e118e-2963-4a5d-83e0-fed91a921d71/\", \"task_id\": \"cf8e118e-2963-4a5d-83e0-fed91a921d71\"}], \"result\": null, \"error\": null}" + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/d9cf3338-a26f-4f90-8d37-4a212cf8fafc/\", \"task_id\": \"d9cf3338-a26f-4f90-8d37-4a212cf8fafc\"}], \"result\": null, \"error\": null}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:50 GMT + recorded_at: Wed, 05 Aug 2015 19:59:30 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/cf8e118e-2963-4a5d-83e0-fed91a921d71/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/d9cf3338-a26f-4f90-8d37-4a212cf8fafc/ body: encoding: US-ASCII string: "" @@ -977,7 +1607,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="nlbZAu4likUhhQSzYB5TVFv4f9MmzS3TbBwdejCe8", oauth_signature="Z9OQfOR55Aq4RMtfVkjjT0xF4%2Fg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687810", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="hTMKiBProR4YBMmX8Ayu6B3He3z6y0iL7zCHB4Mq7M", oauth_signature="LtHAAjZQ9CvE19GQmxCYicBU90c%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804770", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -988,25 +1618,62 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:50 GMT + - Wed, 05 Aug 2015 19:59:30 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "603" + - "619" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/cf8e118e-2963-4a5d-83e0-fed91a921d71/\", \"task_id\": \"cf8e118e-2963-4a5d-83e0-fed91a921d71\", \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"finish_time\": \"2014-10-07T13:16:50Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:50Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7c233a7d3a2e73bef5e\"}, \"id\": \"5433e7c25ca0134a6f279487\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/d9cf3338-a26f-4f90-8d37-4a212cf8fafc/\", \"task_id\": \"d9cf3338-a26f-4f90-8d37-4a212cf8fafc\", \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b227164df9aa32ab34d\"}, \"id\": \"55c26b221151384439db719f\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:50 GMT + recorded_at: Wed, 05 Aug 2015 19:59:30 GMT +- request: + method: get + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/d9cf3338-a26f-4f90-8d37-4a212cf8fafc/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="aUiqMTeXrw68sTaKe3PxzRmsjjHMuZ74PhMnoNdJ04c", oauth_signature="XGE1CkYLMKj1l0LTo0tErDZodRI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804770", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Wed, 05 Aug 2015 19:59:30 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "678" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/d9cf3338-a26f-4f90-8d37-4a212cf8fafc/\", \"task_id\": \"d9cf3338-a26f-4f90-8d37-4a212cf8fafc\", \"tags\": [\"pulp:repository:2\", \"pulp:action:delete\"], \"finish_time\": \"2015-08-05T19:59:30Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:30Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b227164df9aa32ab34d\"}, \"id\": \"55c26b221151384439db719f\"}" + http_version: + recorded_at: Wed, 05 Aug 2015 19:59:30 GMT - request: method: delete - uri: https://localhost/pulp/api/v2/repositories/1/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/ body: encoding: US-ASCII string: "" @@ -1018,7 +1685,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="Eu8mGhbvgqHcN9woncvnsuLmidqAGNd0r1J60jrE", oauth_signature="g2IOdGxncvbCDRrV6Oi9R%2BOVVfg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687811", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="bVUA1iArZM2qT4NGCxMoDnCYcxgGa5ptpG5yx89OM", oauth_signature="cLJTQeZ91qYdpTf29vGKgpXKJmE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804771", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -1029,9 +1696,9 @@ http_interactions: message: Accepted headers: Date: - - Tue, 07 Oct 2014 13:16:51 GMT + - Wed, 05 Aug 2015 19:59:31 GMT Server: - - Apache/2.2.15 (Red Hat) + - Apache/2.4.6 (CentOS) Content-Encoding: - utf-8 Content-Length: @@ -1042,12 +1709,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/77e9ca9e-3b24-4aa4-8060-07ea79c49e52/\", \"task_id\": \"77e9ca9e-3b24-4aa4-8060-07ea79c49e52\"}], \"result\": null, \"error\": null}" + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/13b4a441-46c8-4a14-92fa-e01d609e12b9/\", \"task_id\": \"13b4a441-46c8-4a14-92fa-e01d609e12b9\"}], \"result\": null, \"error\": null}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:51 GMT + recorded_at: Wed, 05 Aug 2015 19:59:31 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/77e9ca9e-3b24-4aa4-8060-07ea79c49e52/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/13b4a441-46c8-4a14-92fa-e01d609e12b9/ body: encoding: US-ASCII string: "" @@ -1059,7 +1726,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="eAphJSy0w3tLaQvqew1HMJgPlVVJ0oB00XVUZcDR90", oauth_signature="W0h1%2F7VtponQMDX2x7ic%2FpcjoP0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687811", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="YQJrFe798inn69rUnXxRvEcZ36BenKZYgYOZyg8T204", oauth_signature="9Ew42pvFXr5W4PzN4CkHOczMsa0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804771", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -1070,20 +1737,57 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:51 GMT + - Wed, 05 Aug 2015 19:59:31 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "603" + - "519" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/77e9ca9e-3b24-4aa4-8060-07ea79c49e52/\", \"task_id\": \"77e9ca9e-3b24-4aa4-8060-07ea79c49e52\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2014-10-07T13:16:51Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:51Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7c333a7d3a2e73bef5f\"}, \"id\": \"5433e7c35ca0134a6f279489\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/13b4a441-46c8-4a14-92fa-e01d609e12b9/\", \"task_id\": \"13b4a441-46c8-4a14-92fa-e01d609e12b9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b237164df9aa32ab351\"}, \"id\": \"55c26b2311513843aeb5717c\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:51 GMT + recorded_at: Wed, 05 Aug 2015 19:59:31 GMT +- request: + method: get + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/13b4a441-46c8-4a14-92fa-e01d609e12b9/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="W7x1R9RY6o6wA1Ikf3lJFbM23mlNitTkQ2LkySEURU", oauth_signature="UHgGv2aP5gd4EcxT0DlB%2FN76%2FHo%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804771", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Wed, 05 Aug 2015 19:59:31 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "678" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/13b4a441-46c8-4a14-92fa-e01d609e12b9/\", \"task_id\": \"13b4a441-46c8-4a14-92fa-e01d609e12b9\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-08-05T19:59:31Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:31Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b237164df9aa32ab351\"}, \"id\": \"55c26b231151384439db71a6\"}" + http_version: + recorded_at: Wed, 05 Aug 2015 19:59:31 GMT recorded_with: VCR 2.9.3 diff --git a/test/fixtures/vcr_cassettes/pulp/repository/puppet.yml b/test/fixtures/vcr_cassettes/pulp/repository/puppet.yml index d227ffc2476..5a66968bc89 100644 --- a/test/fixtures/vcr_cassettes/pulp/repository/puppet.yml +++ b/test/fixtures/vcr_cassettes/pulp/repository/puppet.yml @@ -1,8 +1,49 @@ --- http_interactions: +- request: + method: get + uri: https://localhost/pulp/api/v2/tasks/7f91bdc5-1694-4c92-bdd9-9f5325c500da/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="katello", oauth_nonce="UYKuUY2gcmlNDQmN9L7zIrtti5trlZ9AwWOP9duLQ", oauth_signature="YKmCngv6wJywVJXyx4k9R3SDaTQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687789", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 07 Oct 2014 13:16:29 GMT + Server: + - Apache/2.2.15 (Red Hat) + Vary: + - Accept-Encoding + Content-Length: + - "603" + Connection: + - close + Content-Type: + - application/json + body: + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/7f91bdc5-1694-4c92-bdd9-9f5325c500da/\", \"task_id\": \"7f91bdc5-1694-4c92-bdd9-9f5325c500da\", \"tags\": [\"pulp:repository:4\", \"pulp:action:delete\"], \"finish_time\": \"2014-10-07T13:16:29Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:29Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7ad33a7d3a2e73bef50\"}, \"id\": \"5433e7ad5ca0134a6f279417\"}" + http_version: + recorded_at: Tue, 07 Oct 2014 13:16:29 GMT - request: method: post - uri: https://localhost/pulp/api/v2/repositories/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/ body: encoding: US-ASCII string: "{\"id\":\"4\",\"display_name\":\"P Forge\",\"importer_type_id\":\"puppet_importer\",\"importer_config\":{\"feed\":\"http://davidd.fedorapeople.org/repos/random_puppet/\"},\"notes\":{\"_repo-type\":\"puppet-repo\"},\"distributors\":[{\"distributor_type_id\":\"puppet_install_distributor\",\"distributor_config\":{\"install_path\":\"/test_path/\",\"auto_publish\":true},\"auto_publish\":true,\"distributor_id\":\"4\"},{\"distributor_type_id\":\"nodes_http_distributor\",\"distributor_config\":{},\"auto_publish\":true,\"distributor_id\":\"4_nodes\"}]}" @@ -14,7 +55,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="pYEIwCu391s8HiMCZvBeeWQlMcaY77oRE6pN24KUT8", oauth_signature="BGWUFtCh2%2FGew4L4u%2FeSRCJ%2Bwt0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687788", oauth_version="1.0" + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="rRpbeK9FdX1FhXaus0D42kjn3ae7CRekD92Li0BI", oauth_signature="w%2F7WUlndYLiXpYYR8O0yCn%2FCeBM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804757", oauth_version="1.0" Pulp-User: - admin Content-Length: @@ -27,27 +68,25 @@ http_interactions: message: Created headers: Date: - - Tue, 07 Oct 2014 13:16:28 GMT + - Wed, 05 Aug 2015 19:59:17 GMT Server: - - Apache/2.2.15 (Red Hat) + - Apache/2.4.6 (CentOS) Location: - "4" - Vary: - - Accept-Encoding Content-Length: - - "246" + - "298" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"scratchpad\": {}, \"display_name\": \"P Forge\", \"description\": null, \"_ns\": \"repos\", \"notes\": {\"_repo-type\": \"puppet-repo\"}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"5433e7ac5ca0134a6f279411\"}, \"id\": \"4\", \"_href\": \"/pulp/api/v2/repositories/4/\"}" + encoding: US-ASCII + string: "{\"scratchpad\": {}, \"display_name\": \"P Forge\", \"description\": null, \"last_unit_added\": null, \"notes\": {\"_repo-type\": \"puppet-repo\"}, \"last_unit_removed\": null, \"content_unit_counts\": {}, \"_ns\": \"repos\", \"_id\": {\"$oid\": \"55c26b1511513843aeb570ed\"}, \"id\": \"4\", \"_href\": \"/pulp/api/v2/repositories/4/\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:28 GMT + recorded_at: Wed, 05 Aug 2015 19:59:17 GMT - request: method: get - uri: https://localhost/pulp/api/v2/repositories/4/?details=true + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/4/?details=true body: encoding: US-ASCII string: "" @@ -59,7 +98,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="oPRm3uWiqRP9UJPhLGeE0mr2Fp1yCg0gHxtlK8tSk", oauth_signature="TuD03RKAAAvK5j2O98JOZdMHIXM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687788", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="VTpyPJBFHJDBNunH96w1NGbdbIf7o1kyoCxF0tB4", oauth_signature="lIJllONDpi0HjNoBoOA1vYEE1Qg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804757", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -70,25 +109,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:28 GMT + - Wed, 05 Aug 2015 19:59:17 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "1081" + - "1133" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"scratchpad\": {}, \"display_name\": \"P Forge\", \"description\": null, \"distributors\": [{\"repo_id\": \"4\", \"_ns\": \"repo_distributors\", \"last_publish\": null, \"auto_publish\": true, \"scheduled_publishes\": [], \"distributor_type_id\": \"nodes_http_distributor\", \"_id\": {\"$oid\": \"5433e7ac5ca0134a6f279414\"}, \"config\": {}, \"id\": \"4_nodes\"}, {\"repo_id\": \"4\", \"_ns\": \"repo_distributors\", \"last_publish\": null, \"auto_publish\": true, \"scheduled_publishes\": [], \"distributor_type_id\": \"puppet_install_distributor\", \"_id\": {\"$oid\": \"5433e7ac5ca0134a6f279413\"}, \"config\": {\"install_path\": \"/test_path/\", \"auto_publish\": true}, \"id\": \"4\"}], \"_ns\": \"repos\", \"notes\": {\"_repo-type\": \"puppet-repo\"}, \"content_unit_counts\": {}, \"importers\": [{\"repo_id\": \"4\", \"_ns\": \"repo_importers\", \"importer_type_id\": \"puppet_importer\", \"last_sync\": null, \"scheduled_syncs\": [], \"_id\": {\"$oid\": \"5433e7ac5ca0134a6f279412\"}, \"config\": {\"feed\": \"http://davidd.fedorapeople.org/repos/random_puppet/\"}, \"id\": \"puppet_importer\"}], \"_id\": {\"$oid\": \"5433e7ac5ca0134a6f279411\"}, \"id\": \"4\", \"_href\": \"/pulp/api/v2/repositories/4/\"}" + encoding: US-ASCII + string: "{\"scratchpad\": {}, \"display_name\": \"P Forge\", \"description\": null, \"distributors\": [{\"repo_id\": \"4\", \"_ns\": \"repo_distributors\", \"last_publish\": null, \"auto_publish\": true, \"scheduled_publishes\": [], \"distributor_type_id\": \"nodes_http_distributor\", \"_id\": {\"$oid\": \"55c26b1511513843aeb570f0\"}, \"config\": {}, \"id\": \"4_nodes\"}, {\"repo_id\": \"4\", \"_ns\": \"repo_distributors\", \"last_publish\": null, \"auto_publish\": true, \"scheduled_publishes\": [], \"distributor_type_id\": \"puppet_install_distributor\", \"_id\": {\"$oid\": \"55c26b1511513843aeb570ef\"}, \"config\": {\"install_path\": \"/test_path/\", \"auto_publish\": true}, \"id\": \"4\"}], \"last_unit_added\": null, \"notes\": {\"_repo-type\": \"puppet-repo\"}, \"last_unit_removed\": null, \"content_unit_counts\": {}, \"_ns\": \"repos\", \"importers\": [{\"repo_id\": \"4\", \"_ns\": \"repo_importers\", \"importer_type_id\": \"puppet_importer\", \"last_sync\": null, \"scheduled_syncs\": [], \"_id\": {\"$oid\": \"55c26b1511513843aeb570ee\"}, \"config\": {\"feed\": \"http://davidd.fedorapeople.org/repos/random_puppet/\"}, \"id\": \"puppet_importer\"}], \"_id\": {\"$oid\": \"55c26b1511513843aeb570ed\"}, \"id\": \"4\", \"_href\": \"/pulp/api/v2/repositories/4/\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:28 GMT + recorded_at: Wed, 05 Aug 2015 19:59:17 GMT - request: method: delete - uri: https://localhost/pulp/api/v2/repositories/4/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/4/ body: encoding: US-ASCII string: "" @@ -100,7 +137,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="Jc0dax4k31qYbaqKjE8lMmfWusgXQOurqfzCpydtlE", oauth_signature="TUV4D8OW8Dc5KzfiTIFrksjnuPE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687789", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="desNFBbp2BmrSYOAdR2M805ACKWTVbriTbww0X50", oauth_signature="VQSlRV0JH5mjn8AfYhCFmNHr2Fs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804757", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -111,9 +148,9 @@ http_interactions: message: Accepted headers: Date: - - Tue, 07 Oct 2014 13:16:29 GMT + - Wed, 05 Aug 2015 19:59:17 GMT Server: - - Apache/2.2.15 (Red Hat) + - Apache/2.4.6 (CentOS) Content-Encoding: - utf-8 Content-Length: @@ -124,12 +161,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/7f91bdc5-1694-4c92-bdd9-9f5325c500da/\", \"task_id\": \"7f91bdc5-1694-4c92-bdd9-9f5325c500da\"}], \"result\": null, \"error\": null}" + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/1284a468-99b1-4725-af68-df7fce1eafbb/\", \"task_id\": \"1284a468-99b1-4725-af68-df7fce1eafbb\"}], \"result\": null, \"error\": null}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:29 GMT + recorded_at: Wed, 05 Aug 2015 19:59:17 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/7f91bdc5-1694-4c92-bdd9-9f5325c500da/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/1284a468-99b1-4725-af68-df7fce1eafbb/ body: encoding: US-ASCII string: "" @@ -141,7 +178,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="UYKuUY2gcmlNDQmN9L7zIrtti5trlZ9AwWOP9duLQ", oauth_signature="YKmCngv6wJywVJXyx4k9R3SDaTQ%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687789", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="D8iP70al24pOoStNHHaD4e8CJ16IMqZHL3h2MjUcPo", oauth_signature="FXwbBF%2BPyFSpz4WYchB38ZNtuhw%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804757", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -152,20 +189,57 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:29 GMT + - Wed, 05 Aug 2015 19:59:17 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "603" + - "519" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/7f91bdc5-1694-4c92-bdd9-9f5325c500da/\", \"task_id\": \"7f91bdc5-1694-4c92-bdd9-9f5325c500da\", \"tags\": [\"pulp:repository:4\", \"pulp:action:delete\"], \"finish_time\": \"2014-10-07T13:16:29Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:29Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7ad33a7d3a2e73bef50\"}, \"id\": \"5433e7ad5ca0134a6f279417\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/1284a468-99b1-4725-af68-df7fce1eafbb/\", \"task_id\": \"1284a468-99b1-4725-af68-df7fce1eafbb\", \"tags\": [\"pulp:repository:4\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b157164df9aa32ab315\"}, \"id\": \"55c26b1511513843aeb570f3\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:29 GMT + recorded_at: Wed, 05 Aug 2015 19:59:17 GMT +- request: + method: get + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/1284a468-99b1-4725-af68-df7fce1eafbb/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="eXPnj2NPsLsVYXUaxwmQj1gfhX9hiJpPyqc7nDDaOFQ", oauth_signature="2JcPop45Hxz%2B135lp6pl4p2ntOI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804758", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Wed, 05 Aug 2015 19:59:18 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "678" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/1284a468-99b1-4725-af68-df7fce1eafbb/\", \"task_id\": \"1284a468-99b1-4725-af68-df7fce1eafbb\", \"tags\": [\"pulp:repository:4\", \"pulp:action:delete\"], \"finish_time\": \"2015-08-05T19:59:17Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:17Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b157164df9aa32ab315\"}, \"id\": \"55c26b151151384439db714f\"}" + http_version: + recorded_at: Wed, 05 Aug 2015 19:59:18 GMT recorded_with: VCR 2.9.3 diff --git a/test/fixtures/vcr_cassettes/pulp/repository/repository.yml b/test/fixtures/vcr_cassettes/pulp/repository/repository.yml index 8b6bcdf0c6f..e4a01a13063 100644 --- a/test/fixtures/vcr_cassettes/pulp/repository/repository.yml +++ b/test/fixtures/vcr_cassettes/pulp/repository/repository.yml @@ -1,11 +1,11 @@ --- http_interactions: - request: - method: post - uri: https://localhost/pulp/api/v2/repositories/ + method: get + uri: https://localhost/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/ body: encoding: US-ASCII - string: "{\"id\":\"1\",\"display_name\":\"Fedora 17 x86_64\",\"importer_type_id\":\"yum_importer\",\"importer_config\":{\"feed\":\"file:///var/www/test_repos/zoo\",\"ssl_ca_cert\":null,\"ssl_client_cert\":null,\"ssl_client_key\":null},\"notes\":{\"_repo-type\":\"rpm-repo\"},\"distributors\":[{\"distributor_type_id\":\"yum_distributor\",\"distributor_config\":{\"relative_url\":\"/test_path/\",\"http\":false,\"https\":true,\"protected\":true},\"auto_publish\":true,\"distributor_id\":\"1\"},{\"distributor_type_id\":\"yum_clone_distributor\",\"distributor_config\":{\"destination_distributor_id\":\"1\"},\"auto_publish\":false,\"distributor_id\":\"1_clone\"},{\"distributor_type_id\":\"nodes_http_distributor\",\"distributor_config\":{},\"auto_publish\":true,\"distributor_id\":\"1_nodes\"}]}" + string: "" headers: Accept: - application/json @@ -14,40 +14,36 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="bzZLt8RlBuZVH3cLLi8L4YMMmSNXo0JthvsI0itug", oauth_signature="WJ%2FUrl5%2B2AE6mFafcZibWUDcq7I%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687812", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="iVkSabyavLxYxUYOrS6Fdd9aGladKr5VzJwL3UuAo", oauth_signature="JEmJl%2F9CTC4A6o5qJPOCKbo8ufk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687813", oauth_version="1.0" Pulp-User: - admin - Content-Length: - - "703" User-Agent: - Ruby response: status: - code: 201 - message: Created + code: 200 + message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:52 GMT + - Tue, 07 Oct 2014 13:16:53 GMT Server: - Apache/2.2.15 (Red Hat) - Location: - - "1" Vary: - Accept-Encoding Content-Length: - - "252" + - "558" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"_ns\": \"repos\", \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"content_unit_counts\": {}, \"_id\": {\"$oid\": \"5433e7c45ca0134a6f27948b\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/\", \"task_id\": \"54ac8f91-36e3-4e31-be25-025fa56d7b42\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"waiting\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7c533a7d3a2e73bef61\"}, \"id\": \"5433e7c55ca0134a6f279497\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:52 GMT + recorded_at: Tue, 07 Oct 2014 13:16:53 GMT - request: - method: delete - uri: https://localhost/pulp/api/v2/content/orphans/ + method: get + uri: https://localhost/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/ body: encoding: US-ASCII string: "" @@ -59,36 +55,36 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="1Za79tNFNIJgWo9UqEUESmtYUQ5pEPgC1WBcpCpdBo", oauth_signature="oF1BjQFuFyb2Y5UylPWh4F2VgLI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687812", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="q5dpiJgy4sViYphMWkWuAsDJkwcPxqA1gOa6iDwc", oauth_signature="QGP0Xdr6MruQhTV5dr7r8jZ4kJ4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687813", oauth_version="1.0" Pulp-User: - admin User-Agent: - Ruby response: status: - code: 202 - message: Accepted + code: 200 + message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:52 GMT + - Tue, 07 Oct 2014 13:16:54 GMT Server: - Apache/2.2.15 (Red Hat) - Content-Encoding: - - utf-8 + Vary: + - Accept-Encoding Content-Length: - - "172" + - "558" Connection: - close Content-Type: - application/json body: - encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/2458704d-35e1-42f5-a3fa-e8df65ea2a93/\", \"task_id\": \"2458704d-35e1-42f5-a3fa-e8df65ea2a93\"}], \"result\": null, \"error\": null}" + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/\", \"task_id\": \"54ac8f91-36e3-4e31-be25-025fa56d7b42\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"waiting\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7c533a7d3a2e73bef61\"}, \"id\": \"5433e7c55ca0134a6f279497\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:52 GMT + recorded_at: Tue, 07 Oct 2014 13:16:54 GMT - request: method: get - uri: https://localhost/pulp/api/v2/repositories/1/importers/yum_importer/schedules/sync/ + uri: https://localhost/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/ body: encoding: US-ASCII string: "" @@ -100,7 +96,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="Ce5hUw3uX6IGFI1inoCxHwpoG2Q8N7ugphcxagkM", oauth_signature="AI2Qt%2Bon1QXqVM9uMIYnGayPaWE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687812", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="2cvOi1FxXVmIgBF50Uxk8DrWHz1T9X9guXQUPr8M", oauth_signature="kIk%2FDaggNRr9bU%2BywAe1cd818AA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687815", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -111,28 +107,28 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:53 GMT + - Tue, 07 Oct 2014 13:16:55 GMT Server: - Apache/2.2.15 (Red Hat) Vary: - Accept-Encoding Content-Length: - - "2" + - "558" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: "[]" + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/\", \"task_id\": \"54ac8f91-36e3-4e31-be25-025fa56d7b42\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"waiting\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7c533a7d3a2e73bef61\"}, \"id\": \"5433e7c55ca0134a6f279497\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:53 GMT + recorded_at: Tue, 07 Oct 2014 13:16:55 GMT - request: - method: post - uri: https://localhost/pulp/api/v2/repositories/1/importers/yum_importer/schedules/sync/ + method: get + uri: https://localhost/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/ body: encoding: US-ASCII - string: "{\"schedule\":\"2013-08-01T00:00:00-04:00/P1D\"}" + string: "" headers: Accept: - application/json @@ -141,43 +137,39 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="8SmeFXKoyGHSTDtnPbP5UHlXmAlVXv5s0IjxkNGoU", oauth_signature="VgDOawne5zIBq2mL2qjxtQ07NUE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687813", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="AAsOhocbDl8MVixQdgs6E7fbTgr9BGWibhrGcx01iI", oauth_signature="Byb%2FPYcBpopyxsQfCj%2F0VRgryfs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687816", oauth_version="1.0" Pulp-User: - admin - Content-Length: - - "44" User-Agent: - Ruby response: status: - code: 201 - message: Created + code: 200 + message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:53 GMT + - Tue, 07 Oct 2014 13:16:56 GMT Server: - Apache/2.2.15 (Red Hat) - Location: - - /pulp/api/v2/repositories/1/importers/yum_importer/schedules/sync/5433e7c55ca0134a6f279494/ Vary: - Accept-Encoding Content-Length: - - "586" + - "558" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: "{\"next_run\": \"2014-10-07T13:16:53Z\", \"remaining_runs\": null, \"last_updated\": 1412687813.146884, \"first_run\": \"2013-08-01T00:00:00-04:00\", \"total_run_count\": 0, \"schedule\": \"2013-08-01T00:00:00-04:00/P1D\", \"kwargs\": {\"overrides\": {}}, \"args\": [\"1\"], \"enabled\": true, \"last_run_at\": null, \"task\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"failure_threshold\": null, \"resource\": \"pulp:importer:1:yum_importer\", \"_id\": \"5433e7c55ca0134a6f279494\", \"consecutive_failures\": 0, \"_href\": \"/pulp/api/v2/repositories/1/importers/yum_importer/schedules/sync/5433e7c55ca0134a6f279494/\"}" + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/\", \"task_id\": \"54ac8f91-36e3-4e31-be25-025fa56d7b42\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"waiting\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7c533a7d3a2e73bef61\"}, \"id\": \"5433e7c55ca0134a6f279497\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:53 GMT + recorded_at: Tue, 07 Oct 2014 13:16:56 GMT - request: - method: post - uri: https://localhost/pulp/api/v2/repositories/1/actions/sync/ + method: get + uri: https://localhost/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/ body: encoding: US-ASCII - string: "{\"override_config\":{\"num_threads\":4}}" + string: "" headers: Accept: - application/json @@ -186,35 +178,33 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="66leqOejeFgTyf1zocBry5S1hX5BHcI2oHkjAC7w3U", oauth_signature="P2xwcbGFzsz%2B7cojbTKFxNcQDEE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687813", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="nBAReCvFoWoyXpbKGjIvJVLUuF05ilLqFdZQPB9XU", oauth_signature="Fd96qD828pXalpCjrxHf4S3V%2B5Y%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687817", oauth_version="1.0" Pulp-User: - admin - Content-Length: - - "37" User-Agent: - Ruby response: status: - code: 202 - message: Accepted + code: 200 + message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:53 GMT + - Tue, 07 Oct 2014 13:16:57 GMT Server: - Apache/2.2.15 (Red Hat) - Content-Encoding: - - utf-8 + Vary: + - Accept-Encoding Content-Length: - - "172" + - "558" Connection: - close Content-Type: - application/json body: - encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/\", \"task_id\": \"54ac8f91-36e3-4e31-be25-025fa56d7b42\"}], \"result\": null, \"error\": null}" + encoding: ASCII-8BIT + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/\", \"task_id\": \"54ac8f91-36e3-4e31-be25-025fa56d7b42\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"waiting\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7c533a7d3a2e73bef61\"}, \"id\": \"5433e7c55ca0134a6f279497\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:53 GMT + recorded_at: Tue, 07 Oct 2014 13:16:57 GMT - request: method: get uri: https://localhost/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/ @@ -229,7 +219,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="iVkSabyavLxYxUYOrS6Fdd9aGladKr5VzJwL3UuAo", oauth_signature="JEmJl%2F9CTC4A6o5qJPOCKbo8ufk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687813", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="mDwqfGEXaT8teuqvFXci7PInELQRGaSlujSA4gVNMc", oauth_signature="j35VHvd7voKp%2B4E1w5wa3i9RMoM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687818", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -240,7 +230,7 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:53 GMT + - Tue, 07 Oct 2014 13:16:58 GMT Server: - Apache/2.2.15 (Red Hat) Vary: @@ -255,7 +245,7 @@ http_interactions: encoding: ASCII-8BIT string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/\", \"task_id\": \"54ac8f91-36e3-4e31-be25-025fa56d7b42\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"waiting\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7c533a7d3a2e73bef61\"}, \"id\": \"5433e7c55ca0134a6f279497\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:53 GMT + recorded_at: Tue, 07 Oct 2014 13:16:58 GMT - request: method: get uri: https://localhost/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/ @@ -270,7 +260,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="q5dpiJgy4sViYphMWkWuAsDJkwcPxqA1gOa6iDwc", oauth_signature="QGP0Xdr6MruQhTV5dr7r8jZ4kJ4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687813", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="bnmXYdDw21tNxQ5jSp3lea8gglDL3RArKqWdwj8ZPc", oauth_signature="NYCDIVZ9pMNAm31rWYFhOFiLtVg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687819", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -281,22 +271,22 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:54 GMT + - Tue, 07 Oct 2014 13:16:59 GMT Server: - Apache/2.2.15 (Red Hat) Vary: - Accept-Encoding Content-Length: - - "558" + - "1013" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/\", \"task_id\": \"54ac8f91-36e3-4e31-be25-025fa56d7b42\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"waiting\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7c533a7d3a2e73bef61\"}, \"id\": \"5433e7c55ca0134a6f279497\"}" + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/\", \"task_id\": \"54ac8f91-36e3-4e31-be25-025fa56d7b42\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:59Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"running\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7c533a7d3a2e73bef61\"}, \"id\": \"5433e7c55ca0134a6f279497\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:54 GMT + recorded_at: Tue, 07 Oct 2014 13:16:59 GMT - request: method: get uri: https://localhost/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/ @@ -311,7 +301,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="2cvOi1FxXVmIgBF50Uxk8DrWHz1T9X9guXQUPr8M", oauth_signature="kIk%2FDaggNRr9bU%2BywAe1cd818AA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687815", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="I8gJpjCyhSobNp69a6iVGmmJW7D1ZjmsPqy5r8Keqt4", oauth_signature="76IwrqB2lY%2B%2Fjdj1liEQbWHNDhE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687821", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -322,25 +312,25 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:55 GMT + - Tue, 07 Oct 2014 13:17:01 GMT Server: - Apache/2.2.15 (Red Hat) Vary: - Accept-Encoding Content-Length: - - "558" + - "2236" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/\", \"task_id\": \"54ac8f91-36e3-4e31-be25-025fa56d7b42\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"waiting\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7c533a7d3a2e73bef61\"}, \"id\": \"5433e7c55ca0134a6f279497\"}" + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/\", \"task_id\": \"54ac8f91-36e3-4e31-be25-025fa56d7b42\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:17:00Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:59Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/e626b12c-d3d4-4a2c-9adf-f581f6f0f0e1/\", \"task_id\": \"e626b12c-d3d4-4a2c-9adf-f581f6f0f0e1\"}, {\"_href\": \"/pulp/api/v2/tasks/266c64db-8d4f-4230-9a8f-9c2390f472b0/\", \"task_id\": \"266c64db-8d4f-4230-9a8f-9c2390f472b0\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:16:58-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:16:59-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 13, \"error_message\": null, \"updated_count\": 2, \"details\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e7cb5ca013067bd775f7\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e7c533a7d3a2e73bef61\"}, \"id\": \"5433e7c55ca0134a6f279497\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:55 GMT + recorded_at: Tue, 07 Oct 2014 13:17:01 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/ + uri: https://localhost/pulp/api/v2/tasks/29eb92ff-34b8-41c1-a0fc-9b19b59c7e99/ body: encoding: US-ASCII string: "" @@ -352,7 +342,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="AAsOhocbDl8MVixQdgs6E7fbTgr9BGWibhrGcx01iI", oauth_signature="Byb%2FPYcBpopyxsQfCj%2F0VRgryfs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687816", oauth_version="1.0" + - OAuth oauth_consumer_key="katello", oauth_nonce="O8g9wPAC8wXA8FBsjIHrbo7Cg7ydKkkjMbAvfD3zAA", oauth_signature="OlwY3kya32on2U%2BaJXNZ5tEZsgs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687822", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -363,25 +353,152 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:56 GMT + - Tue, 07 Oct 2014 13:17:02 GMT Server: - Apache/2.2.15 (Red Hat) Vary: - Accept-Encoding Content-Length: - - "558" + - "603" Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/\", \"task_id\": \"54ac8f91-36e3-4e31-be25-025fa56d7b42\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"waiting\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7c533a7d3a2e73bef61\"}, \"id\": \"5433e7c55ca0134a6f279497\"}" + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/29eb92ff-34b8-41c1-a0fc-9b19b59c7e99/\", \"task_id\": \"29eb92ff-34b8-41c1-a0fc-9b19b59c7e99\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2014-10-07T13:17:02Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:17:02Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7ce33a7d3a2e73bef64\"}, \"id\": \"5433e7ce5ca0134a6f2794a0\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:56 GMT + recorded_at: Tue, 07 Oct 2014 13:17:02 GMT +- request: + method: post + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/ + body: + encoding: US-ASCII + string: "{\"id\":\"1\",\"display_name\":\"Fedora 17 x86_64\",\"importer_type_id\":\"yum_importer\",\"importer_config\":{\"feed\":\"file:///var/www/test_repos/zoo\",\"ssl_ca_cert\":null,\"ssl_client_cert\":null,\"ssl_client_key\":null},\"notes\":{\"_repo-type\":\"rpm-repo\"},\"distributors\":[{\"distributor_type_id\":\"yum_distributor\",\"distributor_config\":{\"relative_url\":\"/test_path/\",\"http\":false,\"https\":true,\"protected\":true},\"auto_publish\":true,\"distributor_id\":\"1\"},{\"distributor_type_id\":\"yum_clone_distributor\",\"distributor_config\":{\"destination_distributor_id\":\"1\"},\"auto_publish\":false,\"distributor_id\":\"1_clone\"},{\"distributor_type_id\":\"nodes_http_distributor\",\"distributor_config\":{},\"auto_publish\":true,\"distributor_id\":\"1_nodes\"}]}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="07qknUIEQ8Xaeu766LizyuSVaxsZ4Cb7cM5wZet6f4", oauth_signature="WYmWbj8jaCrYps7YNIg%2Fp37qSbc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804772", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "703" + User-Agent: + - Ruby + response: + status: + code: 201 + message: Created + headers: + Date: + - Wed, 05 Aug 2015 19:59:32 GMT + Server: + - Apache/2.4.6 (CentOS) + Location: + - "1" + Content-Length: + - "304" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"scratchpad\": {}, \"display_name\": \"Fedora 17 x86_64\", \"description\": null, \"last_unit_added\": null, \"notes\": {\"_repo-type\": \"rpm-repo\"}, \"last_unit_removed\": null, \"content_unit_counts\": {}, \"_ns\": \"repos\", \"_id\": {\"$oid\": \"55c26b2411513843aeb57181\"}, \"id\": \"1\", \"_href\": \"/pulp/api/v2/repositories/1/\"}" + http_version: + recorded_at: Wed, 05 Aug 2015 19:59:32 GMT +- request: + method: delete + uri: https://katello-devel1.example.com/pulp/api/v2/content/orphans/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="t38XsMoJ4hFC4hYucs4wHdhEDXPXfa3iIelzZ9GZQ", oauth_signature="%2FX4ht9HEudIoYGsPg%2BXJ0kKroFE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804772", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 202 + message: Accepted + headers: + Date: + - Wed, 05 Aug 2015 19:59:32 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Encoding: + - utf-8 + Content-Length: + - "172" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/8926e5b4-d88e-4c84-833a-779f1fe60637/\", \"task_id\": \"8926e5b4-d88e-4c84-833a-779f1fe60637\"}], \"result\": null, \"error\": null}" + http_version: + recorded_at: Wed, 05 Aug 2015 19:59:32 GMT +- request: + method: post + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/actions/sync/ + body: + encoding: US-ASCII + string: "{\"override_config\":{\"num_threads\":4}}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="yv4N5P82n9scESzlBZEEM5meSV0LGPHOBMcyMgRrmCs", oauth_signature="vtJr%2FSpwRSMi6mHgyXU%2BbxNCHcE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804772", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "37" + User-Agent: + - Ruby + response: + status: + code: 202 + message: Accepted + headers: + Date: + - Wed, 05 Aug 2015 19:59:32 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Encoding: + - utf-8 + Content-Length: + - "172" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/074c12f0-332f-4ce5-9fe1-f0da2d45fba1/\", \"task_id\": \"074c12f0-332f-4ce5-9fe1-f0da2d45fba1\"}], \"result\": null, \"error\": null}" + http_version: + recorded_at: Wed, 05 Aug 2015 19:59:33 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/074c12f0-332f-4ce5-9fe1-f0da2d45fba1/ body: encoding: US-ASCII string: "" @@ -393,7 +510,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="nBAReCvFoWoyXpbKGjIvJVLUuF05ilLqFdZQPB9XU", oauth_signature="Fd96qD828pXalpCjrxHf4S3V%2B5Y%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687817", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="ygiKfn7gAwZsFdfI8tr3ircPmJMgDX3V7rJbv3o", oauth_signature="46iHxWTwC1lR%2FAy%2BRJqbz50yO%2B4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804773", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -404,25 +521,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:57 GMT + - Wed, 05 Aug 2015 19:59:33 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "558" + - "517" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/\", \"task_id\": \"54ac8f91-36e3-4e31-be25-025fa56d7b42\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"waiting\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7c533a7d3a2e73bef61\"}, \"id\": \"5433e7c55ca0134a6f279497\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/074c12f0-332f-4ce5-9fe1-f0da2d45fba1/\", \"task_id\": \"074c12f0-332f-4ce5-9fe1-f0da2d45fba1\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b257164df9aa32ab356\"}, \"id\": \"55c26b2511513843aeb57188\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:57 GMT + recorded_at: Wed, 05 Aug 2015 19:59:33 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/074c12f0-332f-4ce5-9fe1-f0da2d45fba1/ body: encoding: US-ASCII string: "" @@ -434,7 +549,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="mDwqfGEXaT8teuqvFXci7PInELQRGaSlujSA4gVNMc", oauth_signature="j35VHvd7voKp%2B4E1w5wa3i9RMoM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687818", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="C16bSF9OvGfnjm5IN9LunUSDdmiI9vIQslqayoxzA", oauth_signature="T%2B4NpVC7DI6dGaW3VgSgowuD1dI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804773", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -445,25 +560,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:58 GMT + - Wed, 05 Aug 2015 19:59:33 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "558" + - "617" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/\", \"task_id\": \"54ac8f91-36e3-4e31-be25-025fa56d7b42\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"waiting\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7c533a7d3a2e73bef61\"}, \"id\": \"5433e7c55ca0134a6f279497\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/074c12f0-332f-4ce5-9fe1-f0da2d45fba1/\", \"task_id\": \"074c12f0-332f-4ce5-9fe1-f0da2d45fba1\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"waiting\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b257164df9aa32ab356\"}, \"id\": \"55c26b251151384439db71ad\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:58 GMT + recorded_at: Wed, 05 Aug 2015 19:59:33 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/074c12f0-332f-4ce5-9fe1-f0da2d45fba1/ body: encoding: US-ASCII string: "" @@ -475,7 +588,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="bnmXYdDw21tNxQ5jSp3lea8gglDL3RArKqWdwj8ZPc", oauth_signature="NYCDIVZ9pMNAm31rWYFhOFiLtVg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687819", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="LiTt80ETVBjM40oIbjzSsnSq1bUarP04UQ0tVkb7qE", oauth_signature="OxJAteW6jebNfGobtmJVKAGJrwk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804774", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -486,25 +599,23 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:16:59 GMT + - Wed, 05 Aug 2015 19:59:34 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "1013" + - "2277" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/\", \"task_id\": \"54ac8f91-36e3-4e31-be25-025fa56d7b42\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": null, \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:59Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"running\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7c533a7d3a2e73bef61\"}, \"id\": \"5433e7c55ca0134a6f279497\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.managers.repo.sync.sync\", \"_href\": \"/pulp/api/v2/tasks/074c12f0-332f-4ce5-9fe1-f0da2d45fba1/\", \"task_id\": \"074c12f0-332f-4ce5-9fe1-f0da2d45fba1\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2015-08-05T19:59:33Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:33Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/17182e72-85b4-46ed-9683-4de2ae0a7406/\", \"task_id\": \"17182e72-85b4-46ed-9683-4de2ae0a7406\"}, {\"_href\": \"/pulp/api/v2/tasks/66951de3-568e-473c-9082-0554ac47ab2e/\", \"task_id\": \"66951de3-568e-473c-9082-0554ac47ab2e\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2015-08-05T19:59:33Z\", \"_ns\": \"repo_sync_results\", \"completed\": \"2015-08-05T19:59:33Z\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 5, \"error_message\": null, \"updated_count\": 10, \"details\": {\"content\": {\"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 0, \"rpm_done\": 0, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"55c26b25115138443de6ea19\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"55c26b257164df9aa32ab356\"}, \"id\": \"55c26b251151384439db71ad\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:16:59 GMT + recorded_at: Wed, 05 Aug 2015 19:59:34 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/importers/yum_importer/schedules/sync/ body: encoding: US-ASCII string: "" @@ -516,7 +627,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="I8gJpjCyhSobNp69a6iVGmmJW7D1ZjmsPqy5r8Keqt4", oauth_signature="76IwrqB2lY%2B%2Fjdj1liEQbWHNDhE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687821", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="ZUK27eqlJ4CfiogfKzkIMSm2coGwWgZU6bviEPsNSw", oauth_signature="O5jVwOkHE66nRE92yokc2rQQegM%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804775", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -527,25 +638,66 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:17:01 GMT + - Wed, 05 Aug 2015 19:59:35 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "2236" + - "2" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"_href\": \"/pulp/api/v2/tasks/54ac8f91-36e3-4e31-be25-025fa56d7b42/\", \"task_id\": \"54ac8f91-36e3-4e31-be25-025fa56d7b42\", \"tags\": [\"pulp:repository:1\", \"pulp:action:sync\"], \"finish_time\": \"2014-10-07T13:17:00Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:16:59Z\", \"traceback\": null, \"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/e626b12c-d3d4-4a2c-9adf-f581f6f0f0e1/\", \"task_id\": \"e626b12c-d3d4-4a2c-9adf-f581f6f0f0e1\"}, {\"_href\": \"/pulp/api/v2/tasks/266c64db-8d4f-4230-9a8f-9c2390f472b0/\", \"task_id\": \"266c64db-8d4f-4230-9a8f-9c2390f472b0\"}], \"progress_report\": {\"yum_importer\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": {\"importer_type_id\": \"yum_importer\", \"importer_id\": \"yum_importer\", \"exception\": null, \"repo_id\": \"1\", \"removed_count\": 0, \"started\": \"2014-10-07T09:16:58-04:00\", \"_ns\": \"repo_sync_results\", \"completed\": \"2014-10-07T09:16:59-04:00\", \"traceback\": null, \"summary\": {\"content\": {\"state\": \"FINISHED\"}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"added_count\": 13, \"error_message\": null, \"updated_count\": 2, \"details\": {\"content\": {\"size_total\": 15640, \"items_left\": 0, \"items_total\": 7, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"rpm_total\": 7, \"rpm_done\": 7, \"drpm_total\": 0, \"drpm_done\": 0}, \"error_details\": []}, \"comps\": {\"state\": \"FINISHED\"}, \"distribution\": {\"items_total\": 3, \"state\": \"FINISHED\", \"error_details\": [], \"items_left\": 0}, \"errata\": {\"state\": \"FINISHED\"}, \"metadata\": {\"state\": \"FINISHED\"}}, \"id\": \"5433e7cb5ca013067bd775f7\", \"result\": \"success\"}, \"error\": null, \"_id\": {\"$oid\": \"5433e7c533a7d3a2e73bef61\"}, \"id\": \"5433e7c55ca0134a6f279497\"}" + encoding: US-ASCII + string: "[]" http_version: - recorded_at: Tue, 07 Oct 2014 13:17:01 GMT + recorded_at: Wed, 05 Aug 2015 19:59:35 GMT +- request: + method: post + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/importers/yum_importer/schedules/sync/ + body: + encoding: US-ASCII + string: "{\"schedule\":\"2013-08-01T00:00:00-04:00/P1D\"}" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="1HA4atC9r3w8aNbXlvmQ3uUBThsRdXDpZdECkGg", oauth_signature="Rhgq95IbJXrN5dxeAZlLZj1OmWg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804775", oauth_version="1.0" + Pulp-User: + - admin + Content-Length: + - "44" + User-Agent: + - Ruby + response: + status: + code: 201 + message: Created + headers: + Date: + - Wed, 05 Aug 2015 19:59:35 GMT + Server: + - Apache/2.4.6 (CentOS) + Location: + - /pulp/api/v2/repositories/1/importers/yum_importer/schedules/sync/55c26b2711513843aeb57191/ + Content-Length: + - "586" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"next_run\": \"2015-08-05T19:59:35Z\", \"remaining_runs\": null, \"last_updated\": 1438804775.779849, \"first_run\": \"2013-08-01T00:00:00-04:00\", \"total_run_count\": 0, \"schedule\": \"2013-08-01T00:00:00-04:00/P1D\", \"kwargs\": {\"overrides\": {}}, \"args\": [\"1\"], \"enabled\": true, \"last_run_at\": null, \"task\": \"pulp.server.tasks.repository.sync_with_auto_publish\", \"failure_threshold\": null, \"resource\": \"pulp:importer:1:yum_importer\", \"_id\": \"55c26b2711513843aeb57191\", \"consecutive_failures\": 0, \"_href\": \"/pulp/api/v2/repositories/1/importers/yum_importer/schedules/sync/55c26b2711513843aeb57191/\"}" + http_version: + recorded_at: Wed, 05 Aug 2015 19:59:35 GMT - request: method: delete - uri: https://localhost/pulp/api/v2/repositories/1/ + uri: https://katello-devel1.example.com/pulp/api/v2/repositories/1/ body: encoding: US-ASCII string: "" @@ -557,7 +709,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="YitVX7FiFCxmANWBvgIRzTNYNm0tNvqszJtJIJpk4", oauth_signature="xI52zLkM4NtUij6i2A17i4K%2B0q0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687822", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="lgirh9sTckYJcbdcS4VwmMOzf5hdcX4FuHr87PRguVU", oauth_signature="3pUsh47zzHQ3ahsTiE27shO6dsA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804776", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -568,9 +720,9 @@ http_interactions: message: Accepted headers: Date: - - Tue, 07 Oct 2014 13:17:02 GMT + - Wed, 05 Aug 2015 19:59:36 GMT Server: - - Apache/2.2.15 (Red Hat) + - Apache/2.4.6 (CentOS) Content-Encoding: - utf-8 Content-Length: @@ -581,12 +733,12 @@ http_interactions: - application/json body: encoding: US-ASCII - string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/29eb92ff-34b8-41c1-a0fc-9b19b59c7e99/\", \"task_id\": \"29eb92ff-34b8-41c1-a0fc-9b19b59c7e99\"}], \"result\": null, \"error\": null}" + string: "{\"spawned_tasks\": [{\"_href\": \"/pulp/api/v2/tasks/5840769a-7dca-4cb9-afec-3038b5da9cda/\", \"task_id\": \"5840769a-7dca-4cb9-afec-3038b5da9cda\"}], \"result\": null, \"error\": null}" http_version: - recorded_at: Tue, 07 Oct 2014 13:17:02 GMT + recorded_at: Wed, 05 Aug 2015 19:59:36 GMT - request: method: get - uri: https://localhost/pulp/api/v2/tasks/29eb92ff-34b8-41c1-a0fc-9b19b59c7e99/ + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/5840769a-7dca-4cb9-afec-3038b5da9cda/ body: encoding: US-ASCII string: "" @@ -598,7 +750,7 @@ http_interactions: Content-Type: - application/json Authorization: - - OAuth oauth_consumer_key="katello", oauth_nonce="O8g9wPAC8wXA8FBsjIHrbo7Cg7ydKkkjMbAvfD3zAA", oauth_signature="OlwY3kya32on2U%2BaJXNZ5tEZsgs%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1412687822", oauth_version="1.0" + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="VbWkvk0exvI8FkExsMhGl3m3HXpaKCF9LHYIi1pn0", oauth_signature="7lO0c2zxSWhnGiLjXK%2FM4mnp5jk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804776", oauth_version="1.0" Pulp-User: - admin User-Agent: @@ -609,20 +761,57 @@ http_interactions: message: OK headers: Date: - - Tue, 07 Oct 2014 13:17:02 GMT + - Wed, 05 Aug 2015 19:59:36 GMT Server: - - Apache/2.2.15 (Red Hat) - Vary: - - Accept-Encoding + - Apache/2.4.6 (CentOS) Content-Length: - - "603" + - "519" Connection: - close Content-Type: - application/json body: - encoding: ASCII-8BIT - string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/29eb92ff-34b8-41c1-a0fc-9b19b59c7e99/\", \"task_id\": \"29eb92ff-34b8-41c1-a0fc-9b19b59c7e99\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2014-10-07T13:17:02Z\", \"_ns\": \"task_status\", \"start_time\": \"2014-10-07T13:17:02Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@abed.usersys.redhat.com.dq\", \"state\": \"finished\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"5433e7ce33a7d3a2e73bef64\"}, \"id\": \"5433e7ce5ca0134a6f2794a0\"}" + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/5840769a-7dca-4cb9-afec-3038b5da9cda/\", \"task_id\": \"5840769a-7dca-4cb9-afec-3038b5da9cda\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": null, \"start_time\": null, \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"None.dq\", \"state\": \"waiting\", \"worker_name\": null, \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b287164df9aa32ab364\"}, \"id\": \"55c26b2811513843aeb57194\"}" http_version: - recorded_at: Tue, 07 Oct 2014 13:17:02 GMT + recorded_at: Wed, 05 Aug 2015 19:59:36 GMT +- request: + method: get + uri: https://katello-devel1.example.com/pulp/api/v2/tasks/5840769a-7dca-4cb9-afec-3038b5da9cda/ + body: + encoding: US-ASCII + string: "" + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + Authorization: + - OAuth oauth_consumer_key="BtxTNYodsj9mERytNh2JqhSMYEviZDnp", oauth_nonce="fGFQuy55gi2sh0cxgIuDvgIXubJWWmKTTpiz2DHoyeA", oauth_signature="I3s3U1j4wTTR%2BMO95OdV9J3YPzk%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1438804777", oauth_version="1.0" + Pulp-User: + - admin + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Date: + - Wed, 05 Aug 2015 19:59:37 GMT + Server: + - Apache/2.4.6 (CentOS) + Content-Length: + - "678" + Connection: + - close + Content-Type: + - application/json + body: + encoding: US-ASCII + string: "{\"exception\": null, \"task_type\": \"pulp.server.tasks.repository.delete\", \"_href\": \"/pulp/api/v2/tasks/5840769a-7dca-4cb9-afec-3038b5da9cda/\", \"task_id\": \"5840769a-7dca-4cb9-afec-3038b5da9cda\", \"tags\": [\"pulp:repository:1\", \"pulp:action:delete\"], \"finish_time\": \"2015-08-05T19:59:37Z\", \"_ns\": \"task_status\", \"start_time\": \"2015-08-05T19:59:37Z\", \"traceback\": null, \"spawned_tasks\": [], \"progress_report\": {}, \"queue\": \"reserved_resource_worker-0@katello-devel1.example.com.dq\", \"state\": \"finished\", \"worker_name\": \"reserved_resource_worker-0@katello-devel1.example.com\", \"result\": null, \"error\": null, \"_id\": {\"$oid\": \"55c26b287164df9aa32ab364\"}, \"id\": \"55c26b291151384439db71bf\"}" + http_version: + recorded_at: Wed, 05 Aug 2015 19:59:37 GMT recorded_with: VCR 2.9.3 diff --git a/test/glue/pulp/package_group_test.rb b/test/glue/pulp/package_group_test.rb new file mode 100644 index 00000000000..fffd3c553c2 --- /dev/null +++ b/test/glue/pulp/package_group_test.rb @@ -0,0 +1,54 @@ +require 'katello_test_helper' +require 'support/pulp/repository_support' + +module Katello + class GluePackageGroupTestBase < ActiveSupport::TestCase + include RepositorySupport + + @@package_group_id = nil + + def self.before_suite + super + configure_runcible + + VCR.insert_cassette('pulp/content/package_group') + + repository_id = @loaded_fixtures['katello_repositories']['fedora_17_x86_64']['id'] + RepositorySupport.create_and_sync_repo(repository_id) + + @@package_groups = RepositorySupport.repo.package_groups + + @@package_group_names = ['bird', 'mammal'] + end + + def self.after_suite + run_as_admin do + RepositorySupport.destroy_repo + VCR.eject_cassette + end + end + end + + class GluePackageGroupTest < GluePackageGroupTestBase + def test_repo_package_groups + RepositorySupport.repo.index_db_package_groups + assert_equal 2, @@package_groups.length + assert_equal @@package_group_names, @@package_groups.map(&:name).sort + end + + def test_pulp_data + RepositorySupport.repo.index_db_package_groups + assert_equal @@package_group_names[0], PackageGroup.pulp_data(@@package_groups.sort_by(&:name).first.uuid)['id'] + end + + def test_update_from_json + RepositorySupport.repo.index_db_package_groups + uuid = @@package_groups.first.uuid + PackageGroup.where(:uuid => uuid).first.destroy! if PackageGroup.exists?(:uuid => uuid) + package_group = PackageGroup.create!(:uuid => uuid) + package_group_data = PackageGroup.pulp_data(uuid) + package_group.update_from_json(package_group_data) + assert_equal package_group.name, package_group_data["name"] + end + end +end diff --git a/test/glue/pulp/repository_test.rb b/test/glue/pulp/repository_test.rb index 6b3bf2a8d11..d376bae9a38 100644 --- a/test/glue/pulp/repository_test.rb +++ b/test/glue/pulp/repository_test.rb @@ -13,6 +13,7 @@ def self.before_suite super configure_runcible + @@fedora_17_x86_64_dev = Repository.find(@loaded_fixtures['katello_repositories']['fedora_17_x86_64_dev']['id']) @@fedora_17_x86_64 = Repository.find(@loaded_fixtures['katello_repositories']['fedora_17_x86_64']['id']) @@fedora_17_x86_64.relative_path = '/test_path/' @@fedora_17_x86_64.url = "file:///var/www/test_repos/zoo" @@ -285,9 +286,10 @@ def test_find_latest_packages_by_name end def test_package_groups - package_groups = @@fedora_17_x86_64.package_groups + @fedora_17_x86_64_dev = Repository.find(@loaded_fixtures['katello_repositories']['fedora_17_x86_64_dev']['id']) + package_groups = @fedora_17_x86_64_dev.package_groups - refute_empty package_groups.select { |group| group.name == 'mammal' } + refute_empty package_groups.select { |group| group.name == 'mammals' } end def test_package_group_categories diff --git a/test/lib/util/package_clause_generator_test.rb b/test/lib/util/package_clause_generator_test.rb index c68b45696b8..49cf0b02967 100644 --- a/test/lib/util/package_clause_generator_test.rb +++ b/test/lib/util/package_clause_generator_test.rb @@ -76,18 +76,10 @@ def test_package_group_names goo_rule = FactoryGirl.create(:katello_content_view_package_group_filter_rule, :filter => @filter, :name => "goo*") - search_results1 = array_to_struct([{:package_group_id => "300"}, - {:package_group_id => "302"}]) - expected_ids1 = search_results1.collect(&:package_group_id) - search_results2 = array_to_struct([{:package_group_id => "303"}, - {:package_group_id => "304"}]) - expected_ids2 = search_results2.collect(&:package_group_id) - - expected_group_clause = [{"id" => {"$in" => expected_ids1 + expected_ids2}}] - + expected_ids = @filter.package_group_rules.map(&:uuid) + expected_group_clause = [{"_id" => {"$in" => expected_ids}}] returned_packages = {'names' => {"$in" => ["foo", "bar"]}} - PackageGroup.expects(:legacy_search).twice.returns(search_results1, search_results2) clause_gen = setup_whitelist_filter([foo_rule, goo_rule]) do |gen| gen.expects(:package_clauses_for_group).once. with(expected_group_clause).returns(returned_packages) @@ -95,7 +87,6 @@ def test_package_group_names assert_equal returned_packages, clause_gen.copy_clause assert_nil clause_gen.remove_clause - PackageGroup.expects(:legacy_search).twice.returns(search_results1, search_results2) clause_gen = setup_blacklist_filter([foo_rule, goo_rule]) do |gen| gen.expects(:package_clauses_for_group).once. with(expected_group_clause).returns(returned_packages) diff --git a/test/models/content_view_version_test.rb b/test/models/content_view_version_test.rb index be9f0b8cf77..1164ffe9511 100644 --- a/test/models/content_view_version_test.rb +++ b/test/models/content_view_version_test.rb @@ -11,6 +11,7 @@ def setup @beta = create(:katello_environment, :organization => @cvv.organization, :prior => @dev, :name => 'beta') @composite_version = ContentViewVersion.find(katello_content_view_versions(:composite_view_version_1)) @cvv_with_repo = ContentViewVersion.find(katello_content_view_versions(:library_view_version_1)) + @cvv_with_package_groups = ContentViewVersion.find(katello_content_view_versions(:dev_default_version)) end def test_promotable_in_sequence @@ -75,6 +76,10 @@ def test_active_history_nil_task assert_empty @cvv.active_history end + def test_find_package_groups + assert @cvv_with_package_groups.package_groups.count > 0 + end + def test_search_equal_version assert_includes ContentViewVersion.search_for("version = 1.0"), @cvv query = ContentViewVersion.search_for("version = 1") diff --git a/test/models/package_group_test.rb b/test/models/package_group_test.rb new file mode 100644 index 00000000000..c5f7447dd5a --- /dev/null +++ b/test/models/package_group_test.rb @@ -0,0 +1,46 @@ +require 'katello_test_helper' + +module Katello + class PackageGroupTest < ActiveSupport::TestCase + def setup + @repo = katello_repositories(:fedora_17_x86_64_dev) + @server_pg = katello_package_groups(:server_pg) + @mammals_pg = katello_package_groups(:mammals_pg) + end + + def test_repositories + assert_includes @server_pg.repository_ids, @repo.id + assert_equal @server_pg.repository, @repo + assert_equal @repo.package_groups, [@server_pg, @mammals_pg] + end + + def test_create + uuid = "foo" + assert PackageGroup.create!(:uuid => uuid) + assert PackageGroup.find_by_uuid(uuid) + end + + def test_update_from_json + pg = PackageGroup.create!(:uuid => "foo") + json = pg.attributes.merge('description' => 'an update') + pg.update_from_json(json) + assert_equal pg.description, json['description'] + end + + def test_search_by_name + assert_equal PackageGroup.search_for("name = mammals").first, @mammals_pg + end + + def test_search_by_uuid + assert_equal PackageGroup.search_for("id = #{@mammals_pg.uuid}").first, @mammals_pg + end + + def test_search_returns_none + assert_equal PackageGroup.search_for("name = fake"), [] + end + + def test_search_by_repository + assert_includes PackageGroup.search_for('repository = "Fedora 17 x86_64 dev"'), @mammals_pg + end + end +end diff --git a/test/support/fixtures_support.rb b/test/support/fixtures_support.rb index 55848c71e95..358f701498a 100644 --- a/test/support/fixtures_support.rb +++ b/test/support/fixtures_support.rb @@ -17,6 +17,8 @@ module FixturesSupport :katello_environment_priors => "Katello::EnvironmentPrior", :katello_environments => "Katello::KTEnvironment", :katello_gpg_keys => "Katello::GpgKey", + :katello_package_groups => "Katello::PackageGroup", + :katello_repository_package_groups => "Katello::RepositoryPackageGroup", :katello_products => "Katello::Product", :katello_providers => "Katello::Provider", :katello_repositories => "Katello::Repository",