From 914a3405b02e54916a931201653bbf9658706b2d Mon Sep 17 00:00:00 2001 From: ncounter Date: Thu, 14 Mar 2024 11:38:53 +0100 Subject: [PATCH 1/8] Method implementation to retrieve if creator is maintainer --- src/api/app/models/bs_request_action_submit.rb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/api/app/models/bs_request_action_submit.rb b/src/api/app/models/bs_request_action_submit.rb index 7552f8674f8..c956e6944d0 100644 --- a/src/api/app/models/bs_request_action_submit.rb +++ b/src/api/app/models/bs_request_action_submit.rb @@ -139,6 +139,12 @@ def name "Submit #{uniq_key}" end + def creator_is_target_maintainer + request_creator = User.find_by_login(bs_request.creator) + target_package_object = Package.find_by_project_and_name(target_project, target_package) + request_creator.has_local_role?(Role.hashed['maintainer'], target_package_object) + end + #### Alias of methods end From dba3f1668e653021a51ba5438a73681cd89471d0 Mon Sep 17 00:00:00 2001 From: ncounter Date: Thu, 14 Mar 2024 11:43:15 +0100 Subject: [PATCH 2/8] Method implementation for submit request additional info --- src/api/.rubocop_todo.yml | 1 + .../app/models/bs_request_action_submit.rb | 34 +++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/src/api/.rubocop_todo.yml b/src/api/.rubocop_todo.yml index bd26ff080ea..4ae45a3ed2c 100644 --- a/src/api/.rubocop_todo.yml +++ b/src/api/.rubocop_todo.yml @@ -230,6 +230,7 @@ Metrics/ClassLength: - 'app/models/bs_request_action.rb' - 'app/models/bs_request_action_maintenance_incident.rb' - 'app/models/bs_request_action_maintenance_release.rb' + - 'app/models/bs_request_action_submit.rb' - 'app/models/bs_request_permission_check.rb' - 'app/models/buildresult.rb' - 'app/models/channel.rb' diff --git a/src/api/app/models/bs_request_action_submit.rb b/src/api/app/models/bs_request_action_submit.rb index c956e6944d0..abcd02aea4e 100644 --- a/src/api/app/models/bs_request_action_submit.rb +++ b/src/api/app/models/bs_request_action_submit.rb @@ -145,6 +145,40 @@ def creator_is_target_maintainer request_creator.has_local_role?(Role.hashed['maintainer'], target_package_object) end + # rubocop:disable Metrics/BlockNesting + def forward + forward_object = nil + target_package_object = Package.find_by_project_and_name(target_project, target_package) + + if target_package_object + linkinfo = target_package_object.linkinfo + target_package_object.developed_packages.each do |dev_pkg| + forward_object ||= [] + forward_object << { project: dev_pkg.project.name, package: dev_pkg.name, type: 'devel' } + end + if linkinfo + lprj = linkinfo['project'] + lpkg = linkinfo['package'] + link_is_already_devel = false + if forward_object + forward_object.each do |forward| + if forward[:project] == lprj && forward[:package] == lpkg + link_is_already_devel = true + break + end + end + end + unless link_is_already_devel + forward_object ||= [] + forward_object << { project: linkinfo['project'], package: linkinfo['package'], type: 'link' } + end + end + end + + forward_object + end + # rubocop:enable Metrics/BlockNesting + #### Alias of methods end From 0083665e5d184c2622c1aa78ddaa7423e4b60414 Mon Sep 17 00:00:00 2001 From: ncounter Date: Thu, 14 Mar 2024 11:48:42 +0100 Subject: [PATCH 3/8] Method implementation to retrieve whether diff is cached or not --- src/api/app/models/bs_request_action.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/api/app/models/bs_request_action.rb b/src/api/app/models/bs_request_action.rb index bbb2a145c58..7372a68e26f 100644 --- a/src/api/app/models/bs_request_action.rb +++ b/src/api/app/models/bs_request_action.rb @@ -269,6 +269,13 @@ def webui_sourcediff(opts = {}) sorted_filenames_from_sourcediff(sd) end + def diff_not_cached + return false if (sourcediff_results = webui_sourcediff) + + errors = sourcediff_results.pluck(:error).compact + errors.any? { |e| e.include?('diff not yet in cache') } + end + def find_action_with_same_target(other_bs_request) return nil if other_bs_request.blank? From 38b7d36beecd403f2185be2565c8e5253b031161 Mon Sep 17 00:00:00 2001 From: ncounter Date: Thu, 14 Mar 2024 14:56:51 +0100 Subject: [PATCH 4/8] Stop using actions in hash format, use former object instead DEPRECATING webui_action and action_details: For request_workflow_redesign beta feature stop using hash, use the BsRequestAction object instead: it implements all the methods to return the requested information. This is not aiming to touch the non-beta codepath, after the rollout those methods will be dropped instead. --- ...bs_request_action_description_component.rb | 75 +++++++++---------- .../controllers/webui/request_controller.rb | 6 +- src/api/app/models/bs_request.rb | 2 + src/api/app/models/bs_request_action.rb | 4 +- .../webui/request/_actions_details.html.haml | 2 +- ...st_action_description_component_preview.rb | 2 +- 6 files changed, 44 insertions(+), 47 deletions(-) diff --git a/src/api/app/components/bs_request_action_description_component.rb b/src/api/app/components/bs_request_action_description_component.rb index ee78a9bdc40..1b86959f740 100644 --- a/src/api/app/components/bs_request_action_description_component.rb +++ b/src/api/app/components/bs_request_action_description_component.rb @@ -8,61 +8,54 @@ class BsRequestActionDescriptionComponent < ApplicationComponent delegate :requester_str, to: :helpers delegate :creator_intentions, to: :helpers - def initialize(action:, creator:) + def initialize(action:) super @action = action - @creator = creator end # rubocop:disable Metrics/CyclomaticComplexity # rubocop:disable Rails/OutputSafety # rubocop:disable Style/FormatString def description - source_project_hash = { project: action[:sprj], package: action[:spkg], trim_to: nil } + creator = action.bs_request.creator + source_project_hash = { project: action.source_project, package: action.source_package, trim_to: nil } + target_project_hash = { project: action.target_project, package: action.target_package, trim_to: nil } - description = case action[:type] - when :submit - 'Submit %{source_container} to %{target_container}' % { - source_container: project_or_package_link(source_project_hash), - target_container: project_or_package_link(project: action[:tprj], package: action[:tpkg]) - } - when :delete - target_repository = "repository #{link_to(action[:trepo], repositories_path(project: action[:tprj], repository: action[:trepo]))} for " if action[:trepo] + source_container = project_or_package_link(source_project_hash) + target_container = project_or_package_link(target_project_hash) - 'Delete %{target_repository}%{target_container}' % { - target_repository: target_repository, - target_container: project_or_package_link(project: action[:tprj], package: action[:tpkg]) - } - when :add_role, :set_bugowner + description = case action.type + when 'submit' + 'Submit %{source_container} to %{target_container}' % + { source_container: source_container, target_container: target_container } + when 'delete' + target_repository = "repository #{link_to(action.target_repository, repositories_path(target_project_hash))} for " if action.target_repository + + 'Delete %{target_repository}%{target_container}' % + { target_repository: target_repository, target_container: target_container } + when 'add_role', 'set_bugowner' '%{creator} wants %{requester} to %{task} for %{target_container}' % { - creator: user_with_realname_and_icon(@creator), - requester: requester_str(@creator, action[:user], action[:group]), - task: creator_intentions(action[:role]), - target_container: project_or_package_link(project: action[:tprj], package: action[:tpkg]) - } - when :change_devel - 'Set %{source_container} to be devel project/package of %{target_container}' % { - source_container: project_or_package_link(source_project_hash), - target_container: project_or_package_link(project: action[:tprj], package: action[:tpkg]) - } - when :maintenance_incident - source_project_hash.update(homeproject: @creator) - 'Submit update from %{source_container} to %{target_container}' % { - source_container: project_or_package_link(source_project_hash), - target_container: project_or_package_link(project: action[:tprj], package: action[:tpkg], trim_to: nil) - } - when :maintenance_release - 'Maintenance release %{source_container} to %{target_container}' % { - source_container: project_or_package_link(source_project_hash), - target_container: project_or_package_link(project: action[:tprj], package: action[:tpkg], trim_to: nil) - } - when :release - 'Release %{source_container} to %{target_container}' % { - source_container: project_or_package_link(source_project_hash), - target_container: project_or_package_link(project: action[:tprj], package: action[:tpkg]) + creator: user_with_realname_and_icon(creator), + requester: requester_str(creator, action.person_name, action.group_name), + task: creator_intentions(action.role), + target_container: target_container } + when 'change_devel' + 'Set %{source_container} to be devel project/package of %{target_container}' % + { source_container: source_container, target_container: target_container } + when 'maintenance_incident' + 'Submit update from %{source_container} to %{target_container}' % + { source_container: source_container, target_container: target_container } + when 'maintenance_release' + 'Maintenance release %{source_container} to %{target_container}' % + { source_container: source_container, target_container: target_container } + when 'release' + 'Release %{source_container} to %{target_container}' % + { source_container: source_container, target_container: target_container } end + # HACK: this is just a porting of the already existing way of passing the string to the view + # TODO: refactor in order to get rid of the `html_safe` tagging description.html_safe end # rubocop:enable Metrics/CyclomaticComplexity diff --git a/src/api/app/controllers/webui/request_controller.rb b/src/api/app/controllers/webui/request_controller.rb index c44f90d43f6..b8ffd45b896 100644 --- a/src/api/app/controllers/webui/request_controller.rb +++ b/src/api/app/controllers/webui/request_controller.rb @@ -534,8 +534,8 @@ def prepare_request_data @diff_to_superseded_id = params[:diff_to_superseded] # Handling request actions - @action = @bs_request.webui_actions(diff_to_superseded: @diff_to_superseded, diffs: true, action_id: @action_id.to_i, cacheonly: 1).first - active_action_index = @supported_actions.index(@active_action) + @action = @active_action || @bs_request.bs_request_actions.first + active_action_index = @supported_actions.index(@action) if active_action_index @prev_action = @supported_actions[active_action_index - 1] unless active_action_index.zero? @next_action = @supported_actions[active_action_index + 1] if active_action_index + 1 < @supported_actions.length @@ -546,7 +546,7 @@ def prepare_request_data @staging_status = staging_status(@bs_request, target_project) if Staging::Workflow.find_by(project: target_project) # Collecting all issues in a hash. Each key is the issue name and the value is a hash containing all the issue details. - @issues = (@action.fetch(:sourcediff, []) || []).reduce({}) { |accumulator, sourcediff| accumulator.merge(sourcediff.fetch('issues', {})) } + @issues = @action.webui_sourcediff({ diff_to_superseded: @diff_to_superseded_id, cacheonly: 1 }).reduce({}) { |accumulator, sourcediff| accumulator.merge(sourcediff.fetch('issues', {})) } # retrieve a list of all package maintainers that are assigned to at least one target package @package_maintainers = target_package_maintainers diff --git a/src/api/app/models/bs_request.rb b/src/api/app/models/bs_request.rb index 58deeab69bb..0718a7fe4a4 100644 --- a/src/api/app/models/bs_request.rb +++ b/src/api/app/models/bs_request.rb @@ -917,6 +917,7 @@ def notify end end + # [DEPRECATED] TODO: drop this after request_workflow_redesign beta is rolled_out def webui_actions(opts = {}) actions = [] action_id = opts.delete(:action_id) @@ -985,6 +986,7 @@ def conclusive? FINAL_REQUEST_STATES.include?(state) end + # [DEPRECATED] TODO: drop this after request_workflow_redesign beta is rolled_out def action_details(opts = {}, xml:) with_diff = opts.delete(:diffs) action = { type: xml.action_type } diff --git a/src/api/app/models/bs_request_action.rb b/src/api/app/models/bs_request_action.rb index 7372a68e26f..1d70ed1f8fd 100644 --- a/src/api/app/models/bs_request_action.rb +++ b/src/api/app/models/bs_request_action.rb @@ -270,7 +270,9 @@ def webui_sourcediff(opts = {}) end def diff_not_cached - return false if (sourcediff_results = webui_sourcediff) + sourcediff_results = webui_sourcediff({ cacheonly: 1 }) + + return false if sourcediff_results.present? errors = sourcediff_results.pluck(:error).compact errors.any? { |e| e.include?('diff not yet in cache') } diff --git a/src/api/app/views/webui/request/_actions_details.html.haml b/src/api/app/views/webui/request/_actions_details.html.haml index cf8155877e4..669116cd270 100644 --- a/src/api/app/views/webui/request/_actions_details.html.haml +++ b/src/api/app/views/webui/request/_actions_details.html.haml @@ -42,7 +42,7 @@ = render ActionSeenByUserComponent.new(action: active_action, user: User.session!) %p.fst-italic - = render BsRequestActionDescriptionComponent.new(action: action, creator: bs_request.creator) + = render BsRequestActionDescriptionComponent.new(action: active_action) - if active_action.target_releaseproject %p.fst-italic Release in #{project_or_package_link(project: active_action.target_releaseproject)} diff --git a/src/api/spec/components/previews/bs_request_action_description_component_preview.rb b/src/api/spec/components/previews/bs_request_action_description_component_preview.rb index 55db70b0855..1831838fe5a 100644 --- a/src/api/spec/components/previews/bs_request_action_description_component_preview.rb +++ b/src/api/spec/components/previews/bs_request_action_description_component_preview.rb @@ -2,7 +2,7 @@ class BsRequestActionDescriptionComponentPreview < ViewComponent::Preview # Preview at http://HOST:PORT/rails/view_components/bs_request_action_description_component/submit_preview def submit_preview bs_request = BsRequest.joins(:bs_request_actions).where(bs_request_actions: { type: :submit }).last - render(BsRequestActionDescriptionComponent.new(action: bs_request.webui_actions.last, creator: bs_request.creator)) + render(BsRequestActionDescriptionComponent.new(action: bs_request.bs_request_actions.last)) end def add_role_preview From 628f32d4a9194d61a2f49a08b358cf41f742c125 Mon Sep 17 00:00:00 2001 From: ncounter Date: Thu, 14 Mar 2024 15:25:27 +0100 Subject: [PATCH 5/8] Use the action object everywhere else for the beta version --- .../bs_request_activity_timeline_component.rb | 5 ++--- .../request_decision_component.html.haml | 17 +++++++------- .../components/request_decision_component.rb | 2 +- .../components/sourcediff_component.html.haml | 16 +++++++------- .../app/components/sourcediff_component.rb | 8 +++---- .../controllers/webui/request_controller.rb | 22 +++++++------------ .../webui/request/_actions_details.html.haml | 2 +- .../views/webui/request/beta_show.html.haml | 2 +- .../webui/request/build_results.html.haml | 2 +- .../app/views/webui/request/changes.html.haml | 2 +- .../webui/request/mentioned_issues.html.haml | 2 +- .../views/webui/request/rpm_lint.html.haml | 6 ++--- 12 files changed, 40 insertions(+), 46 deletions(-) diff --git a/src/api/app/components/bs_request_activity_timeline_component.rb b/src/api/app/components/bs_request_activity_timeline_component.rb index 6ccd014571e..bdbbbf561c6 100644 --- a/src/api/app/components/bs_request_activity_timeline_component.rb +++ b/src/api/app/components/bs_request_activity_timeline_component.rb @@ -11,8 +11,7 @@ def initialize(bs_request:, request_reviews_for_non_staging_projects: []) @bs_request = bs_request @creator = User.find_by_login(bs_request.creator) || User.nobody action_comments = Comment.on_actions_for_request(@bs_request).without_parent.includes(:user) - commented_actions = action_comments.map { |c| c.commentable.id }.uniq.compact - @diffs = commented_actions.flat_map { |a| @bs_request.webui_actions(action_id: a, diffs: true, cacheonly: 1) } + @commented_actions = action_comments.map(&:commentable).uniq.compact # IDEA: Forge the first item to remove the need of having the hand-crafted "created request" haml fragment @timeline = ( @@ -27,7 +26,7 @@ def diff_for_ref(comment) return unless (ref = comment.diff_ref&.match(/diff_([0-9]+)/)) file_index = ref.captures.first - sourcediff = @diffs.find { |d| d[:id] == comment.commentable.id }[:sourcediff].first + sourcediff = @commented_actions.find(comment.commentable.id).first.webui_sourcediff.first filename = sourcediff.dig('filenames', file_index.to_i) sourcediff.dig('files', filename) end diff --git a/src/api/app/components/request_decision_component.html.haml b/src/api/app/components/request_decision_component.html.haml index 80765effef8..086e0d6f272 100644 --- a/src/api/app/components/request_decision_component.html.haml +++ b/src/api/app/components/request_decision_component.html.haml @@ -5,16 +5,17 @@ - if single_action_request && @is_target_maintainer && @bs_request.state.in?([:new, :review]) - if show_add_submitter_as_maintainer_option? .form-check.mb-2 - = check_box_tag('add_submitter_as_maintainer_0', "#{@action[:tprj]}_#_#{@action[:tpkg]}", false, class: 'form-check-input') + = check_box_tag('add_submitter_as_maintainer_0', "#{@action.target_project}_#_#{@action.target_package}", false, class: 'form-check-input') %label.form-check-label{ for: 'add_submitter_as_maintainer_0' } Add #{link_to(@bs_request.creator, user_path(@bs_request.creator))} as maintainer for - #{helpers.project_or_package_link(project: @action[:tprj], package: @action[:tpkg], short: true)} - - (@action[:forward] || []).each_with_index do |forward, index| - .form-check.mb-2 - = check_box_tag("forward-#{index}", "#{forward[:project]}_#_#{forward[:package]}", true, class: 'form-check-input') - %label.form-check-label{ for: "forward-#{index}" } - Forward submit request to - #{helpers.project_or_package_link(project: forward[:project], package: forward[:package], short: true)} + #{helpers.project_or_package_link(project: @action.target_project, package: @action.target_package, short: true)} + - if @action.type == 'submit' + - (@action.forward || []).each_with_index do |forward, index| + .form-check.mb-2 + = check_box_tag("forward-#{index}", "#{forward[:project]}_#_#{forward[:package]}", true, class: 'form-check-input') + %label.form-check-label{ for: "forward-#{index}" } + Forward submit request to + #{helpers.project_or_package_link(project: forward[:project], package: forward[:package], short: true)} - if policy(@bs_request).revoke_request? = submit_tag 'Revoke request', name: 'revoked', class: 'btn btn-danger me-2' - if can_reopen_request? diff --git a/src/api/app/components/request_decision_component.rb b/src/api/app/components/request_decision_component.rb index 1d0a7133780..ac0d0ea259f 100644 --- a/src/api/app/components/request_decision_component.rb +++ b/src/api/app/components/request_decision_component.rb @@ -24,7 +24,7 @@ def confirmation end def show_add_submitter_as_maintainer_option? - !@action[:creator_is_target_maintainer] && @action[:type] == :submit + @action.type == 'submit' && !@action.creator_is_target_maintainer end # TODO: Move all those "can_*" checks to a pundit policy diff --git a/src/api/app/components/sourcediff_component.html.haml b/src/api/app/components/sourcediff_component.html.haml index 567bf8c63da..3546b6b5618 100644 --- a/src/api/app/components/sourcediff_component.html.haml +++ b/src/api/app/components/sourcediff_component.html.haml @@ -1,17 +1,17 @@ .row .col - - if @action[:diff_not_cached] + - if @action.diff_not_cached .clearfix.mb-2.text-center - .btn.btn-outline-primary.cache-refresh{ title: 'Refresh results', onclick: "loadChanges(#{@bs_request.number}, #{@action[:id]});" } + .btn.btn-outline-primary.cache-refresh{ title: 'Refresh results', onclick: "loadChanges(#{@bs_request.number}, #{@action.id});" } Crunching the latest data. Refresh again in a few seconds %i.fas.fa-sync-alt{ id: "cache#0-reload" } - else - - (@action[:sourcediff] || []).each do |sourcediff| + - (@action.webui_sourcediff).each do |sourcediff| .clearfix.mb-2 .btn-group.float-end - %button.btn.btn-outline-secondary.expand-diffs{ data: { object: @action[:spkg] } } + %button.btn.btn-outline-secondary.expand-diffs{ data: { object: @action.source_package } } Expand all - %button.btn.btn-outline-secondary.collapse-diffs{ data: { object: @action[:spkg] } } + %button.btn.btn-outline-secondary.collapse-diffs{ data: { object: @action.source_package } } Collapse all - if sourcediff[:error] @@ -19,13 +19,13 @@ %i.error = sourcediff[:error] - else - - if @action[:sourcediff].length > 1 + - if @action.webui_sourcediff.length > 1 %h4 #{diff_label(sourcediff['new'])} – #{diff_label(sourcediff['old'])} - if sourcediff['filenames'].present? - diff_list = sourcediff['files'].sort_by { |k, _v| sourcediff['filenames'].find_index(k) }.to_h - = render(DiffListComponent.new(diff_list:, view_id: @action[:spkg], commentable:, source_package:, - target_package:, source_rev: @action[:srev])) + = render(DiffListComponent.new(diff_list:, view_id: @action.source_package, commentable:, source_package:, + target_package:, source_rev: @action.source_rev)) - else .mb-2 %p.lead diff --git a/src/api/app/components/sourcediff_component.rb b/src/api/app/components/sourcediff_component.rb index 0ce0e245421..e5aa9c3345a 100644 --- a/src/api/app/components/sourcediff_component.rb +++ b/src/api/app/components/sourcediff_component.rb @@ -12,19 +12,19 @@ def initialize(bs_request:, action:) end def commentable - BsRequestAction.find(@action[:id]) + BsRequestAction.find(@action.id) end def source_package - Package.get_by_project_and_name(@action[:sprj], @action[:spkg], { follow_multibuild: true }) + Package.get_by_project_and_name(@action.source_project, @action.source_package, { follow_multibuild: true }) rescue Package::UnknownObjectError, Project::Errors::UnknownObjectError end def target_package # For not accepted maintenance incident requests, the package is not there. - return nil unless @action[:tpkg] + return nil unless @action.target_package - Package.get_by_project_and_name(@action[:tprj], @action[:tpkg], { follow_multibuild: true }) + Package.get_by_project_and_name(@action.target_project, @action.target_package, { follow_multibuild: true }) rescue Package::UnknownObjectError, Project::Errors::UnknownObjectError end end diff --git a/src/api/app/controllers/webui/request_controller.rb b/src/api/app/controllers/webui/request_controller.rb index b8ffd45b896..4d2891e4508 100644 --- a/src/api/app/controllers/webui/request_controller.rb +++ b/src/api/app/controllers/webui/request_controller.rb @@ -176,12 +176,7 @@ def request_action end def request_action_changes - # TODO: Change @diff_limit to a local variable - @diff_limit = params[:full_diff] ? 0 : nil - # TODO: Change @actions to a local variable - @actions = @bs_request.webui_actions(filelimit: @diff_limit, tarlimit: @diff_limit, diff_to_superseded: @diff_to_superseded, diffs: true, - action_id: params['id'].to_i, cacheonly: 1) - @action = @actions.find { |action| action[:id] == params['id'].to_i } + @action = @bs_request.bs_request_actions.where(id: params['id'].to_i).first cache_diff_data @@ -287,8 +282,8 @@ def build_results redirect_to request_show_path(params[:number], params[:request_action_id]) unless @bs_request_action.tab_visibility.build @active_tab = 'build_results' - @project = @staging_project || @action[:sprj] - @buildable = @action[:spkg] || @project + @project = @staging_project || @action.source_project + @buildable = @action.source_package || @project end def rpm_lint @@ -296,8 +291,8 @@ def rpm_lint @active_tab = 'rpm_lint' @ajax_data = {} - @ajax_data['project'] = @action[:sprj] if @action[:sprj] - @ajax_data['package'] = @action[:spkg] if @action[:spkg] + @ajax_data['project'] = @action.source_project if @action.source_project + @ajax_data['package'] = @action.source_package if @action.source_package @ajax_data['is_staged_request'] = true if @staging_project.present? end @@ -513,11 +508,10 @@ def staging_status(request, target_project) end def cache_diff_data - return unless @action[:diff_not_cached] + return unless @action.diff_not_cached - bs_request_action = BsRequestAction.find(@action[:id]) - job = Delayed::Job.where('handler LIKE ?', "%job_class: BsRequestActionWebuiInfosJob%#{bs_request_action.to_global_id.uri}%").count - BsRequestActionWebuiInfosJob.perform_later(bs_request_action) if job.zero? + job = Delayed::Job.where('handler LIKE ?', "%job_class: BsRequestActionWebuiInfosJob%#{@action.to_global_id.uri}%").count + BsRequestActionWebuiInfosJob.perform_later(@action) if job.zero? end def handle_notification diff --git a/src/api/app/views/webui/request/_actions_details.html.haml b/src/api/app/views/webui/request/_actions_details.html.haml index 669116cd270..afbac1dcdc3 100644 --- a/src/api/app/views/webui/request/_actions_details.html.haml +++ b/src/api/app/views/webui/request/_actions_details.html.haml @@ -12,7 +12,7 @@ .dropdown#request-actions %button.btn.btn-outline-primary.btn-sm.dropdown-toggle.rounded-0{ 'aria-expanded' => 'false', 'data-bs-toggle' => 'dropdown', :type => 'button', 'data-boundary' => 'viewport' } - = action[:name] + = action.name %ul.dropdown-menu.dropdown-menu-start.scrollable-dropdown.pt-0 %li.card-header.px-1.sticky-top.bg-body-tertiary %h6.dropdown-header diff --git a/src/api/app/views/webui/request/beta_show.html.haml b/src/api/app/views/webui/request/beta_show.html.haml index cae2e9c6b2a..21fc754ade8 100644 --- a/src/api/app/views/webui/request/beta_show.html.haml +++ b/src/api/app/views/webui/request/beta_show.html.haml @@ -1,7 +1,7 @@ -# haml-lint:disable ViewLength :ruby @pagetitle = "Request #{@bs_request.number}" - @pagetitle += ": #{@action[:name]}" + @pagetitle += ": #{@action.name}" render partial: 'webui/request/show_actions', locals: { bs_request: @bs_request } = render partial: 'beta_alert', locals: { bs_request: @bs_request, action: @action } diff --git a/src/api/app/views/webui/request/build_results.html.haml b/src/api/app/views/webui/request/build_results.html.haml index 1118f801b85..cb0473518e1 100644 --- a/src/api/app/views/webui/request/build_results.html.haml +++ b/src/api/app/views/webui/request/build_results.html.haml @@ -1,5 +1,5 @@ :ruby - @pagetitle = "Request #{@bs_request.number}: #{@action[:name]}" + @pagetitle = "Request #{@bs_request.number}: #{@action.name}" = render partial: 'beta_alert', locals: { bs_request: @bs_request, action: @action } diff --git a/src/api/app/views/webui/request/changes.html.haml b/src/api/app/views/webui/request/changes.html.haml index e9281d70d6f..227719e6bcd 100644 --- a/src/api/app/views/webui/request/changes.html.haml +++ b/src/api/app/views/webui/request/changes.html.haml @@ -1,5 +1,5 @@ :ruby - @pagetitle = "Request #{@bs_request.number}: #{@action[:name]}" + @pagetitle = "Request #{@bs_request.number}: #{@action.name}" = render partial: 'beta_alert', locals: { bs_request: @bs_request, action: @action } diff --git a/src/api/app/views/webui/request/mentioned_issues.html.haml b/src/api/app/views/webui/request/mentioned_issues.html.haml index 5bda5bbd502..b4f87cc8cd7 100644 --- a/src/api/app/views/webui/request/mentioned_issues.html.haml +++ b/src/api/app/views/webui/request/mentioned_issues.html.haml @@ -1,5 +1,5 @@ :ruby - @pagetitle = "Request #{@bs_request.number}: #{@action[:name]}" + @pagetitle = "Request #{@bs_request.number}: #{@action.name}" = render partial: 'beta_alert', locals: { bs_request: @bs_request, action: @action } diff --git a/src/api/app/views/webui/request/rpm_lint.html.haml b/src/api/app/views/webui/request/rpm_lint.html.haml index 6178cdd1d2f..baf208903eb 100644 --- a/src/api/app/views/webui/request/rpm_lint.html.haml +++ b/src/api/app/views/webui/request/rpm_lint.html.haml @@ -1,5 +1,5 @@ :ruby - @pagetitle = "Request #{@bs_request.number}: #{@action[:name]}" + @pagetitle = "Request #{@bs_request.number}: #{@action.name}" = render partial: 'beta_alert', locals: { bs_request: @bs_request, action: @action } @@ -14,7 +14,7 @@ locals: { bs_request: @bs_request, bs_request_action: @bs_request_action, issues: @issues, active_action: @active_action, actions_count: @supported_actions.count, active_tab: @active_tab } .container.p-4 - - if @action[:spkg] + - if @action.source_package .rpm-lint-content{ data: @ajax_data } .pt-1.bg-card.d-flex.flex-wrap-reverse.align-items-baseline.sticky-top .result @@ -27,7 +27,7 @@ - if @staging_project.present? %p.fst-italic From staging project - = link_to(@action[:sprj], project_show_path(@action[:sprj])) + = link_to(@action.source_project, project_show_path(@action.source_project)) %pre.rpmlint-result.text-pre-wrap :javascript From ef8a5340fdc06ec2fb7f4d82ca220da30dc6b2e5 Mon Sep 17 00:00:00 2001 From: ncounter Date: Fri, 15 Mar 2024 10:41:00 +0100 Subject: [PATCH 6/8] Add TODOs as reminder for later --- src/api/app/controllers/webui/request_controller.rb | 2 ++ src/api/app/models/bs_request.rb | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/api/app/controllers/webui/request_controller.rb b/src/api/app/controllers/webui/request_controller.rb index 4d2891e4508..70722935892 100644 --- a/src/api/app/controllers/webui/request_controller.rb +++ b/src/api/app/controllers/webui/request_controller.rb @@ -60,6 +60,8 @@ def show @actions = @bs_request.webui_actions(filelimit: @diff_limit, tarlimit: @diff_limit, diff_to_superseded: @diff_to_superseded, diffs: false) @action = @actions.first @active = @action[:name] + # TODO: this is the last instance of the @not_full_diff variable in the request scope, once request_workflow_redesign beta is rolled out, + # let's get rid of this variable and also of `BsRequest.truncated_diffs` as it is no longer used anywhere else # print a hint that the diff is not fully shown (this only needs to be verified for submit actions) @not_full_diff = BsRequest.truncated_diffs?(@actions) diff --git a/src/api/app/models/bs_request.rb b/src/api/app/models/bs_request.rb index 0718a7fe4a4..a7d6d65dd1f 100644 --- a/src/api/app/models/bs_request.rb +++ b/src/api/app/models/bs_request.rb @@ -230,6 +230,8 @@ def self.new_from_hash(hashed) request end + # [DEPRECATED] TODO: there is only one instance of the @not_full_diff variable in the request scope which is using this method. + # Once request_workflow_redesign beta is rolled out, let's drop this method # TODO: refactor this method as soon as the request_show_redesign feature is rolled out. # Now it expects an array of action hashes we'll never display more than one action at a time. def self.truncated_diffs?(actions) From d615c838c3bfb4891cdffdf351b7c3a4c83ec770 Mon Sep 17 00:00:00 2001 From: ncounter Date: Wed, 20 Mar 2024 12:21:30 +0100 Subject: [PATCH 7/8] Use a shorter name for dropdown button --- src/api/app/models/bs_request_action.rb | 4 ++++ src/api/app/models/bs_request_action_add_role.rb | 4 ++++ src/api/app/models/bs_request_action_change_devel.rb | 4 ++++ src/api/app/models/bs_request_action_delete.rb | 4 ++++ src/api/app/models/bs_request_action_maintenance_incident.rb | 4 ++++ src/api/app/models/bs_request_action_maintenance_release.rb | 4 ++++ src/api/app/models/bs_request_action_release.rb | 4 ++++ src/api/app/models/bs_request_action_set_bugowner.rb | 4 ++++ src/api/app/models/bs_request_action_submit.rb | 4 ++++ src/api/app/views/webui/request/_actions_details.html.haml | 2 +- 10 files changed, 37 insertions(+), 1 deletion(-) diff --git a/src/api/app/models/bs_request_action.rb b/src/api/app/models/bs_request_action.rb index 1d70ed1f8fd..a7ae6f7163a 100644 --- a/src/api/app/models/bs_request_action.rb +++ b/src/api/app/models/bs_request_action.rb @@ -819,6 +819,10 @@ def name uniq_key end + def short_name + '' + end + def commit_details package = Package.find_by_project_and_name(source_project, source_package) diff --git a/src/api/app/models/bs_request_action_add_role.rb b/src/api/app/models/bs_request_action_add_role.rb index 0cd270c464d..39b7cd16c4c 100644 --- a/src/api/app/models/bs_request_action_add_role.rb +++ b/src/api/app/models/bs_request_action_add_role.rb @@ -55,6 +55,10 @@ def name uniq_key.gsub('add_role/', 'Add Role ') end + def short_name + 'Add Role' + end + #### Alias of methods end diff --git a/src/api/app/models/bs_request_action_change_devel.rb b/src/api/app/models/bs_request_action_change_devel.rb index 3ad89bf855d..8dc3a4f24e0 100644 --- a/src/api/app/models/bs_request_action_change_devel.rb +++ b/src/api/app/models/bs_request_action_change_devel.rb @@ -34,6 +34,10 @@ def name uniq_key.gsub('changedevel/', 'Change Devel ') end + def short_name + 'Change Devel' + end + #### Alias of methods end diff --git a/src/api/app/models/bs_request_action_delete.rb b/src/api/app/models/bs_request_action_delete.rb index 1c6b8600e91..eb38708e638 100644 --- a/src/api/app/models/bs_request_action_delete.rb +++ b/src/api/app/models/bs_request_action_delete.rb @@ -79,6 +79,10 @@ def name end end + def short_name + name + end + private def remove_repository(opts) diff --git a/src/api/app/models/bs_request_action_maintenance_incident.rb b/src/api/app/models/bs_request_action_maintenance_incident.rb index 17f1f9b2eb7..2024636b3d0 100644 --- a/src/api/app/models/bs_request_action_maintenance_incident.rb +++ b/src/api/app/models/bs_request_action_maintenance_incident.rb @@ -111,6 +111,10 @@ def name "Incident #{uniq_key}" end + def short_name + "Incident #{source_package}" + end + private def _merge_pkg_into_maintenance_incident(incident_project) diff --git a/src/api/app/models/bs_request_action_maintenance_release.rb b/src/api/app/models/bs_request_action_maintenance_release.rb index 27242406924..cc06df38dcc 100644 --- a/src/api/app/models/bs_request_action_maintenance_release.rb +++ b/src/api/app/models/bs_request_action_maintenance_release.rb @@ -145,6 +145,10 @@ def name "Release #{uniq_key}" end + def short_name + "Release #{source_package}" + end + private def sanity_check! diff --git a/src/api/app/models/bs_request_action_release.rb b/src/api/app/models/bs_request_action_release.rb index 187eab0bb7e..e787e865465 100644 --- a/src/api/app/models/bs_request_action_release.rb +++ b/src/api/app/models/bs_request_action_release.rb @@ -79,6 +79,10 @@ def name "Release #{uniq_key}" end + def short_name + "Release #{source_package}" + end + private def sanity_check! diff --git a/src/api/app/models/bs_request_action_set_bugowner.rb b/src/api/app/models/bs_request_action_set_bugowner.rb index d69926a88f3..89604df7819 100644 --- a/src/api/app/models/bs_request_action_set_bugowner.rb +++ b/src/api/app/models/bs_request_action_set_bugowner.rb @@ -48,6 +48,10 @@ def name uniq_key.gsub('setbugowner/', 'Set Bugowner ') end + def short_name + 'Set Bugowner' + end + #### Alias of methods end diff --git a/src/api/app/models/bs_request_action_submit.rb b/src/api/app/models/bs_request_action_submit.rb index abcd02aea4e..55ef6cc116a 100644 --- a/src/api/app/models/bs_request_action_submit.rb +++ b/src/api/app/models/bs_request_action_submit.rb @@ -139,6 +139,10 @@ def name "Submit #{uniq_key}" end + def short_name + "Submit #{source_package}" + end + def creator_is_target_maintainer request_creator = User.find_by_login(bs_request.creator) target_package_object = Package.find_by_project_and_name(target_project, target_package) diff --git a/src/api/app/views/webui/request/_actions_details.html.haml b/src/api/app/views/webui/request/_actions_details.html.haml index afbac1dcdc3..eff2122f510 100644 --- a/src/api/app/views/webui/request/_actions_details.html.haml +++ b/src/api/app/views/webui/request/_actions_details.html.haml @@ -12,7 +12,7 @@ .dropdown#request-actions %button.btn.btn-outline-primary.btn-sm.dropdown-toggle.rounded-0{ 'aria-expanded' => 'false', 'data-bs-toggle' => 'dropdown', :type => 'button', 'data-boundary' => 'viewport' } - = action.name + = active_action.short_name %ul.dropdown-menu.dropdown-menu-start.scrollable-dropdown.pt-0 %li.card-header.px-1.sticky-top.bg-body-tertiary %h6.dropdown-header From 60cb334f0cb3baa40a7a48b5e3e6221ed1a799e4 Mon Sep 17 00:00:00 2001 From: ncounter Date: Tue, 19 Mar 2024 22:08:51 +0100 Subject: [PATCH 8/8] Update spec and cassettes --- ...isplays_information_on_type_of_request.yml | 692 +++++--- .../has_patchinfo_submission.yml | 692 +++++--- .../creates_maintenance_incident_project.yml | 1516 +++++++++------- .../when_accepting_request/succeeds.yml | 1550 ++++++++++------- ...isplays_information_on_type_of_request.yml | 609 ++++--- .../creates_maintenance_incident_project.yml | 1317 ++++++++------ .../when_accepting_request/succeeds.yml | 1308 ++++++++------ .../shows_category_badge.yml | 594 +------ .../shows_patch_information.yml | 594 +------ .../shows_rating_badge.yml | 594 +------ .../displays_the_comment_in_the_timeline.yml | 240 ++- ..._the_beta_version_of_the_requests_page.yml | 434 +++-- .../renders_the_diff.yml | 393 +++-- .../components/sourcediff_component_spec.rb | 3 +- .../webui/requests/submissions_spec.rb | 2 +- 15 files changed, 5396 insertions(+), 5142 deletions(-) diff --git a/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_with_patchinfo/displays_information_on_type_of_request.yml b/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_with_patchinfo/displays_information_on_type_of_request.yml index c290b6111f8..bf5c537e377 100644 --- a/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_with_patchinfo/displays_information_on_type_of_request.yml +++ b/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_with_patchinfo/displays_information_on_type_of_request.yml @@ -2,14 +2,14 @@ http_interactions: - request: method: put - uri: http://backend:5352/source/home:user_1/_meta?user=user_1 + uri: http://backend:5352/source/home:user_9/_meta?user=user_9 body: encoding: UTF-8 string: | - + <description/> - <person userid="user_1" role="maintainer"/> + <person userid="user_9" role="maintainer"/> </project> headers: Accept-Encoding: @@ -34,12 +34,12 @@ http_interactions: body: encoding: UTF-8 string: | - <project name="home:user_1"> + <project name="home:user_9"> <title> - + - recorded_at: Fri, 15 Mar 2024 17:29:49 GMT + recorded_at: Tue, 19 Mar 2024 21:50:53 GMT - request: method: put uri: http://backend:5352/source/home:tom/_meta?user=tom @@ -79,7 +79,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:54 GMT + recorded_at: Tue, 19 Mar 2024 21:50:54 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/_meta?user=tom @@ -87,7 +87,7 @@ http_interactions: encoding: UTF-8 string: | - A Scanner Darkly + The Yellow Meads of Asphodel headers: @@ -109,15 +109,15 @@ http_interactions: Connection: - close Content-Length: - - '117' + - '129' body: encoding: UTF-8 string: | - A Scanner Darkly + The Yellow Meads of Asphodel - recorded_at: Fri, 15 Mar 2024 17:29:54 GMT + recorded_at: Tue, 19 Mar 2024 21:50:54 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/_meta?user=tom @@ -125,9 +125,9 @@ http_interactions: encoding: UTF-8 string: | - A Scanner Darkly + The Yellow Meads of Asphodel - + i586 @@ -150,18 +150,18 @@ http_interactions: Connection: - close Content-Length: - - '190' + - '203' body: encoding: UTF-8 string: | - A Scanner Darkly + The Yellow Meads of Asphodel - + i586 - recorded_at: Fri, 15 Mar 2024 17:29:54 GMT + recorded_at: Tue, 19 Mar 2024 21:50:54 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/_meta?user=tom @@ -169,8 +169,8 @@ http_interactions: encoding: UTF-8 string: | - The Green Bay Tree - Laborum mollitia impedit minus. + The Yellow Meads of Asphodel + Aspernatur aut fuga dolor. headers: Accept-Encoding: @@ -191,21 +191,22 @@ http_interactions: Connection: - close Content-Length: - - '187' + - '192' body: encoding: UTF-8 string: | - The Green Bay Tree - Laborum mollitia impedit minus. + The Yellow Meads of Asphodel + Aspernatur aut fuga dolor. - recorded_at: Fri, 15 Mar 2024 17:29:54 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/_config body: encoding: UTF-8 - string: Quas quia sed. Quasi sunt facere. Incidunt aspernatur quam. + string: Velit doloribus voluptatem. Aliquam tempore repellendus. Enim assumenda + quia. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -225,19 +226,19 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - dff575fc1e15b77df634e9448a831a53 + + ab9f8c2948222da7d9959da15f03c235 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:29:54 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/DUMMY_FILE @@ -263,19 +264,19 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 9dfc966cc441e32284caa8b6ab703700 + + ab9f8c2948222da7d9959da15f03c235 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:29:54 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/_meta?user=tom @@ -283,8 +284,8 @@ http_interactions: encoding: UTF-8 string: | - The Road Less Traveled - Natus impedit totam molestiae. + Mother Night + Eius officiis sequi vero. headers: Accept-Encoding: @@ -305,21 +306,21 @@ http_interactions: Connection: - close Content-Length: - - '190' + - '175' body: encoding: UTF-8 string: | - The Road Less Traveled - Natus impedit totam molestiae. + Mother Night + Eius officiis sequi vero. - recorded_at: Fri, 15 Mar 2024 17:29:54 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/_config body: encoding: UTF-8 - string: Nihil qui enim. Sed doloribus incidunt. Eligendi quaerat minus. + string: Quo laboriosam dolorum. Quasi quis fuga. Corporis dolore eum. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -339,19 +340,19 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 077260afa43f547c54a8c33d46c6be95 + + e9f0cffe7b9c7ccf52f929a19514550f unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:29:54 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/DUMMY_FILE @@ -377,19 +378,19 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - f7b4f5ee7301ef1f310d728ba5a34a01 + + e9f0cffe7b9c7ccf52f929a19514550f unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:29:54 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_meta?user=tom @@ -445,7 +446,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo?comment=generated%20by%20createpatchinfo%20call&user=tom @@ -478,19 +479,19 @@ http_interactions: Connection: - close Content-Length: - - '236' + - '238' body: encoding: UTF-8 string: | - + e45d013f24b032bd54480cfc08ca5401 unknown - + tom generated by createpatchinfo call - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_meta?user=tom @@ -546,7 +547,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -572,14 +573,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo?view=info @@ -605,14 +606,14 @@ http_interactions: Connection: - close Content-Length: - - '185' + - '187' body: encoding: UTF-8 string: | - + _patchinfo - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -638,14 +639,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo @@ -682,15 +683,15 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_1 + uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_9 body: encoding: UTF-8 string: | - A Many-Splendoured Thing + The Golden Apples of the Sun headers: @@ -712,25 +713,25 @@ http_interactions: Connection: - close Content-Length: - - '114' + - '118' body: encoding: UTF-8 string: | - A Many-Splendoured Thing + The Golden Apples of the Sun - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_1 + uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_9 body: encoding: UTF-8 string: | - A Many-Splendoured Thing + The Golden Apples of the Sun - + i586 @@ -753,27 +754,27 @@ http_interactions: Connection: - close Content-Length: - - '187' + - '192' body: encoding: UTF-8 string: | - A Many-Splendoured Thing + The Golden Apples of the Sun - + i586 - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/cacti/_meta?user=user_1 + uri: http://backend:5352/source/openSUSE:11.4/cacti/_meta?user=user_9 body: encoding: UTF-8 string: | - Cabbages and Kings - Quo voluptatem nulla quia. + Vile Bodies + Officia quasi est doloribus. headers: Accept-Encoding: @@ -794,21 +795,21 @@ http_interactions: Connection: - close Content-Length: - - '150' + - '145' body: encoding: UTF-8 string: | - Cabbages and Kings - Quo voluptatem nulla quia. + Vile Bodies + Officia quasi est doloribus. - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.4/cacti/_config body: encoding: UTF-8 - string: Beatae dolore omnis. Sed rerum quas. Qui voluptatem nemo. + string: Aliquam totam autem. Sit cupiditate ducimus. Delectus maiores sed. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -828,25 +829,25 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - fbc8e7fe0a9e240a5742967f392fb44f + + 5a50493b1193d59acb3c4d016fc2c3d1 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.4/cacti/somefile.txt body: encoding: UTF-8 - string: Aut expedita omnis. Labore ea dignissimos. Quia ea facilis. + string: Labore mollitia commodi. Animi voluptatum adipisci. Repellat ut rerum. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -866,27 +867,27 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 811cd5a16b6495f1a77642c349ac65ad + + cf1357eca108f3a560592b2ffd33f6eb unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_1 + uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_9 body: encoding: UTF-8 string: | - An Evil Cradling + The Cricket on the Hearth headers: @@ -908,18 +909,18 @@ http_interactions: Connection: - close Content-Length: - - '140' + - '149' body: encoding: UTF-8 string: | - An Evil Cradling + The Cricket on the Hearth - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_project/_attribute?meta=1&user=user_1 + uri: http://backend:5352/source/openSUSE:11.4:Update/_project/_attribute?meta=1&user=user_9 body: encoding: UTF-8 string: | @@ -945,21 +946,21 @@ http_interactions: Connection: - close Content-Length: - - '168' + - '170' body: encoding: UTF-8 string: | - - 608c80f14eda47044b9a5c88ba1e64c8 - - user_1 + + 6a3ef2a31486f77b7358c80734d1f9c8 + + user_9 - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_project/_attribute?meta=1&user=user_1 + uri: http://backend:5352/source/openSUSE:11.4/_project/_attribute?meta=1&user=user_9 body: encoding: UTF-8 string: | @@ -987,26 +988,26 @@ http_interactions: Connection: - close Content-Length: - - '168' + - '170' body: encoding: UTF-8 string: | - - 5471d1097cca253cbe2629f6b7630482 - - user_1 + + 01c9da8f6eebdcd3534bc6014442db5b + + user_9 - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_1 + uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_9 body: encoding: UTF-8 string: | - An Evil Cradling + The Cricket on the Hearth @@ -1029,24 +1030,24 @@ http_interactions: Connection: - close Content-Length: - - '174' + - '183' body: encoding: UTF-8 string: | - An Evil Cradling + The Cricket on the Hearth - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_1 + uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_9 body: encoding: UTF-8 string: | - Things Fall Apart + Clouds of Witness headers: @@ -1073,20 +1074,20 @@ http_interactions: encoding: UTF-8 string: | - Things Fall Apart + Clouds of Witness - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_1 + uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_9 body: encoding: UTF-8 string: | - Things Fall Apart + Clouds of Witness - + i586 @@ -1109,27 +1110,27 @@ http_interactions: Connection: - close Content-Length: - - '180' + - '181' body: encoding: UTF-8 string: | - Things Fall Apart + Clouds of Witness - + i586 - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/cacti/_meta?user=user_1 + uri: http://backend:5352/source/openSUSE:11.5/cacti/_meta?user=user_9 body: encoding: UTF-8 string: | - Fair Stood the Wind for France - Quod sint qui error. + To Your Scattered Bodies Go + Esse est eum quis. headers: Accept-Encoding: @@ -1150,21 +1151,21 @@ http_interactions: Connection: - close Content-Length: - - '156' + - '151' body: encoding: UTF-8 string: | - Fair Stood the Wind for France - Quod sint qui error. + To Your Scattered Bodies Go + Esse est eum quis. - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.5/cacti/_config body: encoding: UTF-8 - string: Iusto qui nihil. In distinctio suscipit. Dolorem id officiis. + string: Laborum voluptates omnis. Quia cumque minima. Debitis aut eos. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -1184,26 +1185,25 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 1d38dfe17153a58a8c889388ad6a5ec0 + + 1ca650459b643642f2aace5f931e7358 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.5/cacti/somefile.txt body: encoding: UTF-8 - string: Provident voluptate quae. Laudantium vitae molestiae. Est exercitationem - est. + string: Autem soluta esse. Est numquam voluptatum. Suscipit et non. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -1223,27 +1223,27 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 191f7fa4370dcf17eb90c92cf5a18098 + + d27917581b40c08e83e2542b46936b86 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_1 + uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_9 body: encoding: UTF-8 string: | - Cabbages and Kings + I Know Why the Caged Bird Sings headers: @@ -1265,18 +1265,18 @@ http_interactions: Connection: - close Content-Length: - - '142' + - '155' body: encoding: UTF-8 string: | - Cabbages and Kings + I Know Why the Caged Bird Sings - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_project/_attribute?meta=1&user=user_1 + uri: http://backend:5352/source/openSUSE:11.5:Update/_project/_attribute?meta=1&user=user_9 body: encoding: UTF-8 string: | @@ -1302,21 +1302,21 @@ http_interactions: Connection: - close Content-Length: - - '168' + - '170' body: encoding: UTF-8 string: | - - dc4a1725b92a8b1525d5ac0d62d18304 - - user_1 + + 1e8390ef87391d6d81557db6f16ee239 + + user_9 - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:55 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_project/_attribute?meta=1&user=user_1 + uri: http://backend:5352/source/openSUSE:11.5/_project/_attribute?meta=1&user=user_9 body: encoding: UTF-8 string: | @@ -1344,26 +1344,26 @@ http_interactions: Connection: - close Content-Length: - - '168' + - '170' body: encoding: UTF-8 string: | - - c3d2c1e7f7ee1fb257ab0e3469935ae8 - - user_1 + + db62008953eafe00d1d6f189f5f7ca3e + + user_9 - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_1 + uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_9 body: encoding: UTF-8 string: | - Cabbages and Kings + I Know Why the Caged Bird Sings @@ -1386,16 +1386,16 @@ http_interactions: Connection: - close Content-Length: - - '176' + - '189' body: encoding: UTF-8 string: | - Cabbages and Kings + I Know Why the Caged Bird Sings - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: put uri: http://backend:5352/source/home:maintenance_coord/_meta?user=maintenance_coord @@ -1435,10 +1435,10 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:55 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_1 + uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_9 body: encoding: UTF-8 string: | @@ -1481,10 +1481,10 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_project/_attribute?meta=1&user=user_1 + uri: http://backend:5352/source/MaintenanceProject/_project/_attribute?meta=1&user=user_9 body: encoding: UTF-8 string: | @@ -1510,21 +1510,21 @@ http_interactions: Connection: - close Content-Length: - - '169' + - '170' body: encoding: UTF-8 string: | - + b5ac59f5d2a72c7f98586b6c1dbf55de - - user_1 + + user_9 - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_1 + uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_9 body: encoding: UTF-8 string: | @@ -1567,7 +1567,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1593,15 +1593,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1627,18 +1627,18 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=2&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=178&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1663,13 +1663,13 @@ http_interactions: Connection: - close Content-Length: - - '822' + - '842' body: encoding: UTF-8 string: | - + - + @@ -1679,9 +1679,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Quas quia sed. Quasi sunt facere. Incidunt aspernatur quam. + +Velit doloribus voluptatem. Aliquam tempore repellendus. Enim assumenda quia. \ No newline at end of file @@ -1689,7 +1689,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -1715,15 +1715,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -1749,18 +1749,18 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=2&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=178&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1789,9 +1789,9 @@ http_interactions: body: encoding: UTF-8 string: | - + - + @@ -1801,9 +1801,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Nihil qui enim. Sed doloribus incidunt. Eligendi quaerat minus. + +Quo laboriosam dolorum. Quasi quis fuga. Corporis dolore eum. \ No newline at end of file @@ -1811,7 +1811,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -1837,14 +1837,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -1870,17 +1870,17 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/patchinfo?cmd=diff&expand=1&filelimit=10000&orev=0&rev=1&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/patchinfo?cmd=diff&expand=1&filelimit=10000&orev=0&rev=50&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1905,13 +1905,13 @@ http_interactions: Connection: - close Content-Length: - - '737' + - '738' body: encoding: UTF-8 string: | - + - + @@ -1930,7 +1930,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -1939,7 +1939,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 2d283c0b-da87-4d3b-b62c-a0f009de1cac + - 2349b904-3403-4a89-ac12-9d599686a536 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1958,14 +1958,14 @@ http_interactions: Connection: - close Content-Length: - - '233' + - '234' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -1974,7 +1974,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 2d283c0b-da87-4d3b-b62c-a0f009de1cac + - 2349b904-3403-4a89-ac12-9d599686a536 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1993,14 +1993,14 @@ http_interactions: Connection: - close Content-Length: - - '233' + - '234' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status @@ -2009,7 +2009,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 2d283c0b-da87-4d3b-b62c-a0f009de1cac + - 2349b904-3403-4a89-ac12-9d599686a536 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2028,14 +2028,142 @@ http_interactions: Connection: - close Content-Length: - - '233' + - '234' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - 2349b904-3403-4a89-ac12-9d599686a536 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - 2349b904-3403-4a89-ac12-9d599686a536 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT +- request: + method: post + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=178&tarlimit=10000&view=xml&withissues=1 + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + X-Request-Id: + - 2349b904-3403-4a89-ac12-9d599686a536 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Content-Length: + - '842' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: | + + + + + + + @@ -0,0 +1,1 @@ + +boo#12345 + \ No newline at end of file + + + + + @@ -0,0 +1,1 @@ + +Velit doloribus voluptatem. Aliquam tempore repellendus. Enim assumenda quia. + \ No newline at end of file + + + + + + + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -2044,7 +2172,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 2d283c0b-da87-4d3b-b62c-a0f009de1cac + - 2349b904-3403-4a89-ac12-9d599686a536 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2063,15 +2191,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -2080,7 +2208,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 2d283c0b-da87-4d3b-b62c-a0f009de1cac + - 2349b904-3403-4a89-ac12-9d599686a536 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2099,18 +2227,18 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=2&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=178&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -2118,7 +2246,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 2d283c0b-da87-4d3b-b62c-a0f009de1cac + - 2349b904-3403-4a89-ac12-9d599686a536 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2133,7 +2261,7 @@ http_interactions: Content-Type: - text/xml Content-Length: - - '822' + - '842' Cache-Control: - no-cache Connection: @@ -2141,9 +2269,9 @@ http_interactions: body: encoding: UTF-8 string: | - + - + @@ -2153,9 +2281,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Quas quia sed. Quasi sunt facere. Incidunt aspernatur quam. + +Velit doloribus voluptatem. Aliquam tempore repellendus. Enim assumenda quia. \ No newline at end of file @@ -2163,7 +2291,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -2172,7 +2300,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 2d283c0b-da87-4d3b-b62c-a0f009de1cac + - 2349b904-3403-4a89-ac12-9d599686a536 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2191,17 +2319,17 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: get - uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo?rev=1 + uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo?rev=50 body: encoding: US-ASCII string: '' @@ -2235,7 +2363,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:56 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -2244,7 +2372,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 4a5adb01-2fea-4508-874f-8d6f1f33e104 + - f7b6e423-57a5-4b41-8f2f-aab234496dd3 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2263,14 +2391,14 @@ http_interactions: Connection: - close Content-Length: - - '233' + - '234' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:29:56 GMT + recorded_at: Tue, 19 Mar 2024 21:50:57 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -2279,7 +2407,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 4a5adb01-2fea-4508-874f-8d6f1f33e104 + - f7b6e423-57a5-4b41-8f2f-aab234496dd3 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2298,14 +2426,14 @@ http_interactions: Connection: - close Content-Length: - - '233' + - '234' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:29:57 GMT + recorded_at: Tue, 19 Mar 2024 21:50:57 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status @@ -2314,7 +2442,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 4a5adb01-2fea-4508-874f-8d6f1f33e104 + - f7b6e423-57a5-4b41-8f2f-aab234496dd3 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2333,12 +2461,12 @@ http_interactions: Connection: - close Content-Length: - - '233' + - '234' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:29:57 GMT + recorded_at: Tue, 19 Mar 2024 21:50:57 GMT recorded_with: VCR 6.2.0 diff --git a/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_with_patchinfo/has_patchinfo_submission.yml b/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_with_patchinfo/has_patchinfo_submission.yml index f024e187d30..e134783f2bd 100644 --- a/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_with_patchinfo/has_patchinfo_submission.yml +++ b/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_with_patchinfo/has_patchinfo_submission.yml @@ -2,14 +2,14 @@ http_interactions: - request: method: put - uri: http://backend:5352/source/home:user_3/_meta?user=user_3 + uri: http://backend:5352/source/home:user_7/_meta?user=user_7 body: encoding: UTF-8 string: | - + <description/> - <person userid="user_3" role="maintainer"/> + <person userid="user_7" role="maintainer"/> </project> headers: Accept-Encoding: @@ -34,12 +34,12 @@ http_interactions: body: encoding: UTF-8 string: | - <project name="home:user_3"> + <project name="home:user_7"> <title> - + - recorded_at: Fri, 15 Mar 2024 17:29:57 GMT + recorded_at: Tue, 19 Mar 2024 21:50:50 GMT - request: method: put uri: http://backend:5352/source/home:tom/_meta?user=tom @@ -79,7 +79,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/_meta?user=tom @@ -87,7 +87,7 @@ http_interactions: encoding: UTF-8 string: | - I Sing the Body Electric + Such, Such Were the Joys headers: @@ -114,10 +114,10 @@ http_interactions: encoding: UTF-8 string: | - I Sing the Body Electric + Such, Such Were the Joys - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/_meta?user=tom @@ -125,9 +125,9 @@ http_interactions: encoding: UTF-8 string: | - I Sing the Body Electric + Such, Such Were the Joys - + i586 @@ -150,18 +150,18 @@ http_interactions: Connection: - close Content-Length: - - '198' + - '199' body: encoding: UTF-8 string: | - I Sing the Body Electric + Such, Such Were the Joys - + i586 - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/_meta?user=tom @@ -169,8 +169,8 @@ http_interactions: encoding: UTF-8 string: | - The Proper Study - Unde accusantium rem et. + The Needle's Eye + Explicabo enim culpa qui. headers: Accept-Encoding: @@ -191,21 +191,21 @@ http_interactions: Connection: - close Content-Length: - - '178' + - '179' body: encoding: UTF-8 string: | - The Proper Study - Unde accusantium rem et. + The Needle's Eye + Explicabo enim culpa qui. - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/_config body: encoding: UTF-8 - string: Similique et quam. Illo a sint. At ipsam eos. + string: Quam praesentium voluptas. Incidunt alias sint. Qui dignissimos aut. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -225,19 +225,19 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 0c27b51282343fa7fbd76766f51c0ef5 + + d2079877f1659602c619c248238f9340 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/DUMMY_FILE @@ -263,19 +263,19 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 0c27b51282343fa7fbd76766f51c0ef5 + + d2079877f1659602c619c248238f9340 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/_meta?user=tom @@ -283,8 +283,8 @@ http_interactions: encoding: UTF-8 string: | - Oh! To be in England - Perferendis aut et voluptas. + The Last Temptation + Nihil officiis commodi nam. headers: Accept-Encoding: @@ -305,21 +305,21 @@ http_interactions: Connection: - close Content-Length: - - '186' + - '184' body: encoding: UTF-8 string: | - Oh! To be in England - Perferendis aut et voluptas. + The Last Temptation + Nihil officiis commodi nam. - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/_config body: encoding: UTF-8 - string: Natus voluptatem quam. Eligendi repellat iure. At et doloremque. + string: Rerum ea dolores. Ipsum quos sed. Illo accusantium ratione. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -339,19 +339,19 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 8c6c554962cb0e9c6e81b13ee896de1c + + 1238ea42b9111ecc31f501f99e28320c unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/DUMMY_FILE @@ -377,19 +377,19 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 8c6c554962cb0e9c6e81b13ee896de1c + + 1238ea42b9111ecc31f501f99e28320c unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_meta?user=tom @@ -445,7 +445,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo?comment=generated%20by%20createpatchinfo%20call&user=tom @@ -478,19 +478,19 @@ http_interactions: Connection: - close Content-Length: - - '236' + - '238' body: encoding: UTF-8 string: | - + e45d013f24b032bd54480cfc08ca5401 unknown - + tom generated by createpatchinfo call - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_meta?user=tom @@ -546,7 +546,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -572,14 +572,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo?view=info @@ -605,14 +605,14 @@ http_interactions: Connection: - close Content-Length: - - '185' + - '187' body: encoding: UTF-8 string: | - + _patchinfo - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -638,14 +638,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo @@ -682,15 +682,15 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_3 + uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_7 body: encoding: UTF-8 string: | - Of Mice and Men + The Millstone headers: @@ -712,25 +712,25 @@ http_interactions: Connection: - close Content-Length: - - '105' + - '103' body: encoding: UTF-8 string: | - Of Mice and Men + The Millstone - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_3 + uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_7 body: encoding: UTF-8 string: | - Of Mice and Men + The Millstone - + i586 @@ -753,27 +753,27 @@ http_interactions: Connection: - close Content-Length: - - '178' + - '177' body: encoding: UTF-8 string: | - Of Mice and Men + The Millstone - + i586 - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/cacti/_meta?user=user_3 + uri: http://backend:5352/source/openSUSE:11.4/cacti/_meta?user=user_7 body: encoding: UTF-8 string: | - The Parliament of Man - Est officia id est. + The Golden Bowl + Libero consectetur quibusdam sapiente. headers: Accept-Encoding: @@ -794,21 +794,21 @@ http_interactions: Connection: - close Content-Length: - - '146' + - '159' body: encoding: UTF-8 string: | - The Parliament of Man - Est officia id est. + The Golden Bowl + Libero consectetur quibusdam sapiente. - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.4/cacti/_config body: encoding: UTF-8 - string: Deleniti ratione nihil. Facere omnis autem. Autem aspernatur voluptatem. + string: Qui in cupiditate. Velit nemo amet. Iusto facere dicta. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -828,25 +828,25 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 93e90ad9581052f1734821ecd38441db + + 18bce102eb75056b6b98d76c97aadd22 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.4/cacti/somefile.txt body: encoding: UTF-8 - string: Eos ut sint. Molestiae fuga minus. Illum qui maiores. + string: Qui esse autem. Ratione quas adipisci. Voluptas facere suscipit. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -866,27 +866,27 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 7bffb7c0f2bd21277c21d382e5394f58 + + 314063c651e8d52c8932d1d95fe8ac33 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:29:58 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_3 + uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_7 body: encoding: UTF-8 string: | - I Will Fear No Evil + Dance Dance Dance headers: @@ -908,18 +908,18 @@ http_interactions: Connection: - close Content-Length: - - '143' + - '141' body: encoding: UTF-8 string: | - I Will Fear No Evil + Dance Dance Dance - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_project/_attribute?meta=1&user=user_3 + uri: http://backend:5352/source/openSUSE:11.4:Update/_project/_attribute?meta=1&user=user_7 body: encoding: UTF-8 string: | @@ -945,21 +945,21 @@ http_interactions: Connection: - close Content-Length: - - '168' + - '170' body: encoding: UTF-8 string: | - - a5871e12e2d51b14afb1b28e90b946e5 - - user_3 + + 6f557f1fa64c36d04feee9edfc921323 + + user_7 - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_project/_attribute?meta=1&user=user_3 + uri: http://backend:5352/source/openSUSE:11.4/_project/_attribute?meta=1&user=user_7 body: encoding: UTF-8 string: | @@ -987,26 +987,26 @@ http_interactions: Connection: - close Content-Length: - - '168' + - '170' body: encoding: UTF-8 string: | - - 920fb2d78d6802fccda695cc27710459 - - user_3 + + d19eb2d0a3459c993ff38a3f1aad9e11 + + user_7 - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_3 + uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_7 body: encoding: UTF-8 string: | - I Will Fear No Evil + Dance Dance Dance @@ -1029,24 +1029,24 @@ http_interactions: Connection: - close Content-Length: - - '177' + - '175' body: encoding: UTF-8 string: | - I Will Fear No Evil + Dance Dance Dance - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:51 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_3 + uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_7 body: encoding: UTF-8 string: | - Let Us Now Praise Famous Men + Little Hands Clapping headers: @@ -1068,25 +1068,25 @@ http_interactions: Connection: - close Content-Length: - - '118' + - '111' body: encoding: UTF-8 string: | - Let Us Now Praise Famous Men + Little Hands Clapping - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_3 + uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_7 body: encoding: UTF-8 string: | - Let Us Now Praise Famous Men + Little Hands Clapping - + i586 @@ -1109,27 +1109,27 @@ http_interactions: Connection: - close Content-Length: - - '191' + - '185' body: encoding: UTF-8 string: | - Let Us Now Praise Famous Men + Little Hands Clapping - + i586 - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/cacti/_meta?user=user_3 + uri: http://backend:5352/source/openSUSE:11.5/cacti/_meta?user=user_7 body: encoding: UTF-8 string: | - As I Lay Dying - Quisquam ab reiciendis aut. + In a Glass Darkly + Enim similique rerum debitis. headers: Accept-Encoding: @@ -1150,21 +1150,21 @@ http_interactions: Connection: - close Content-Length: - - '147' + - '152' body: encoding: UTF-8 string: | - As I Lay Dying - Quisquam ab reiciendis aut. + In a Glass Darkly + Enim similique rerum debitis. - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.5/cacti/_config body: encoding: UTF-8 - string: Alias nobis nisi. Enim ad facilis. Occaecati omnis veniam. + string: Assumenda est aut. Vel sit et. Et sit excepturi. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -1184,25 +1184,25 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 061706f7a21d66b1c0776750fb0144d0 + + c00fd5a43d387e01e2cdeab534ebbc80 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.5/cacti/somefile.txt body: encoding: UTF-8 - string: Sed iusto nobis. Nulla minima nesciunt. Itaque repellat iure. + string: Distinctio excepturi aperiam. Optio laboriosam dolor. Deleniti non vel. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -1222,27 +1222,27 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 38d83bc3db1eec36c4d92fdb1996cc7e + + a0432ec0b6d68ecfa842f7ab7947f121 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_3 + uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_7 body: encoding: UTF-8 string: | - O Pioneers! + The Widening Gyre headers: @@ -1264,18 +1264,18 @@ http_interactions: Connection: - close Content-Length: - - '135' + - '141' body: encoding: UTF-8 string: | - O Pioneers! + The Widening Gyre - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_project/_attribute?meta=1&user=user_3 + uri: http://backend:5352/source/openSUSE:11.5:Update/_project/_attribute?meta=1&user=user_7 body: encoding: UTF-8 string: | @@ -1301,21 +1301,21 @@ http_interactions: Connection: - close Content-Length: - - '168' + - '170' body: encoding: UTF-8 string: | - - d8425ccf2e930bb8d73a00ee450cc024 - - user_3 + + b9884267ca7d8a02f159f229af8cfe97 + + user_7 - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_project/_attribute?meta=1&user=user_3 + uri: http://backend:5352/source/openSUSE:11.5/_project/_attribute?meta=1&user=user_7 body: encoding: UTF-8 string: | @@ -1343,26 +1343,26 @@ http_interactions: Connection: - close Content-Length: - - '168' + - '170' body: encoding: UTF-8 string: | - - af9ec1b18a75df3f5798d679e8080670 - - user_3 + + 74701daa0f2e893f1c556dc8424e07ca + + user_7 - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_3 + uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_7 body: encoding: UTF-8 string: | - O Pioneers! + The Widening Gyre @@ -1385,16 +1385,16 @@ http_interactions: Connection: - close Content-Length: - - '169' + - '175' body: encoding: UTF-8 string: | - O Pioneers! + The Widening Gyre - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: put uri: http://backend:5352/source/home:maintenance_coord/_meta?user=maintenance_coord @@ -1434,10 +1434,10 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_3 + uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_7 body: encoding: UTF-8 string: | @@ -1480,10 +1480,10 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_project/_attribute?meta=1&user=user_3 + uri: http://backend:5352/source/MaintenanceProject/_project/_attribute?meta=1&user=user_7 body: encoding: UTF-8 string: | @@ -1509,21 +1509,21 @@ http_interactions: Connection: - close Content-Length: - - '169' + - '170' body: encoding: UTF-8 string: | - + b5ac59f5d2a72c7f98586b6c1dbf55de - - user_3 + + user_7 - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_3 + uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_7 body: encoding: UTF-8 string: | @@ -1566,7 +1566,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1592,15 +1592,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1626,18 +1626,18 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=4&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=176&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1662,13 +1662,13 @@ http_interactions: Connection: - close Content-Length: - - '808' + - '833' body: encoding: UTF-8 string: | - + - + @@ -1678,9 +1678,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Similique et quam. Illo a sint. At ipsam eos. + +Quam praesentium voluptas. Incidunt alias sint. Qui dignissimos aut. \ No newline at end of file @@ -1688,7 +1688,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -1714,15 +1714,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -1748,18 +1748,18 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=4&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=176&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1784,13 +1784,13 @@ http_interactions: Connection: - close Content-Length: - - '827' + - '824' body: encoding: UTF-8 string: | - + - + @@ -1800,9 +1800,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Natus voluptatem quam. Eligendi repellat iure. At et doloremque. + +Rerum ea dolores. Ipsum quos sed. Illo accusantium ratione. \ No newline at end of file @@ -1810,7 +1810,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -1836,14 +1836,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -1869,17 +1869,17 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/patchinfo?cmd=diff&expand=1&filelimit=10000&orev=0&rev=2&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/patchinfo?cmd=diff&expand=1&filelimit=10000&orev=0&rev=49&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1904,13 +1904,13 @@ http_interactions: Connection: - close Content-Length: - - '737' + - '738' body: encoding: UTF-8 string: | - + - + @@ -1929,7 +1929,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:29:59 GMT + recorded_at: Tue, 19 Mar 2024 21:50:52 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -1938,7 +1938,7 @@ http_interactions: string: '' headers: X-Request-Id: - - e4f2768b-df4a-4869-a058-44972aff85b9 + - 66f9764c-f82c-490d-85bc-c1d584b17abd Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1957,14 +1957,14 @@ http_interactions: Connection: - close Content-Length: - - '233' + - '234' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:00 GMT + recorded_at: Tue, 19 Mar 2024 21:50:53 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -1973,7 +1973,7 @@ http_interactions: string: '' headers: X-Request-Id: - - e4f2768b-df4a-4869-a058-44972aff85b9 + - 66f9764c-f82c-490d-85bc-c1d584b17abd Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1992,14 +1992,14 @@ http_interactions: Connection: - close Content-Length: - - '233' + - '234' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:00 GMT + recorded_at: Tue, 19 Mar 2024 21:50:53 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status @@ -2008,7 +2008,7 @@ http_interactions: string: '' headers: X-Request-Id: - - e4f2768b-df4a-4869-a058-44972aff85b9 + - 66f9764c-f82c-490d-85bc-c1d584b17abd Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2027,14 +2027,142 @@ http_interactions: Connection: - close Content-Length: - - '233' + - '234' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:00 GMT + recorded_at: Tue, 19 Mar 2024 21:50:53 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - 66f9764c-f82c-490d-85bc-c1d584b17abd + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:50:53 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - 66f9764c-f82c-490d-85bc-c1d584b17abd + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:50:53 GMT +- request: + method: post + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=176&tarlimit=10000&view=xml&withissues=1 + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + X-Request-Id: + - 66f9764c-f82c-490d-85bc-c1d584b17abd + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Content-Length: + - '833' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: | + + + + + + + @@ -0,0 +1,1 @@ + +boo#12345 + \ No newline at end of file + + + + + @@ -0,0 +1,1 @@ + +Quam praesentium voluptas. Incidunt alias sint. Qui dignissimos aut. + \ No newline at end of file + + + + + + + recorded_at: Tue, 19 Mar 2024 21:50:53 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -2043,7 +2171,7 @@ http_interactions: string: '' headers: X-Request-Id: - - e4f2768b-df4a-4869-a058-44972aff85b9 + - 66f9764c-f82c-490d-85bc-c1d584b17abd Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2062,15 +2190,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:00 GMT + recorded_at: Tue, 19 Mar 2024 21:50:53 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -2079,7 +2207,7 @@ http_interactions: string: '' headers: X-Request-Id: - - e4f2768b-df4a-4869-a058-44972aff85b9 + - 66f9764c-f82c-490d-85bc-c1d584b17abd Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2098,18 +2226,18 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:00 GMT + recorded_at: Tue, 19 Mar 2024 21:50:53 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=4&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=176&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -2117,7 +2245,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - e4f2768b-df4a-4869-a058-44972aff85b9 + - 66f9764c-f82c-490d-85bc-c1d584b17abd Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2132,7 +2260,7 @@ http_interactions: Content-Type: - text/xml Content-Length: - - '808' + - '833' Cache-Control: - no-cache Connection: @@ -2140,9 +2268,9 @@ http_interactions: body: encoding: UTF-8 string: | - + - + @@ -2152,9 +2280,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Similique et quam. Illo a sint. At ipsam eos. + +Quam praesentium voluptas. Incidunt alias sint. Qui dignissimos aut. \ No newline at end of file @@ -2162,7 +2290,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:00 GMT + recorded_at: Tue, 19 Mar 2024 21:50:53 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -2171,7 +2299,7 @@ http_interactions: string: '' headers: X-Request-Id: - - e4f2768b-df4a-4869-a058-44972aff85b9 + - 66f9764c-f82c-490d-85bc-c1d584b17abd Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2190,17 +2318,17 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:00 GMT + recorded_at: Tue, 19 Mar 2024 21:50:53 GMT - request: method: get - uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo?rev=2 + uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo?rev=49 body: encoding: US-ASCII string: '' @@ -2234,7 +2362,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:00 GMT + recorded_at: Tue, 19 Mar 2024 21:50:53 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -2243,7 +2371,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 566ffc11-a43f-4d0a-bd25-eeca0502151f + - 6b01bf51-2743-4b8a-bf27-3e7a65cd3dbb Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2262,14 +2390,14 @@ http_interactions: Connection: - close Content-Length: - - '233' + - '234' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:00 GMT + recorded_at: Tue, 19 Mar 2024 21:50:53 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -2278,7 +2406,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 566ffc11-a43f-4d0a-bd25-eeca0502151f + - 6b01bf51-2743-4b8a-bf27-3e7a65cd3dbb Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2297,14 +2425,14 @@ http_interactions: Connection: - close Content-Length: - - '233' + - '234' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:00 GMT + recorded_at: Tue, 19 Mar 2024 21:50:53 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status @@ -2313,7 +2441,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 566ffc11-a43f-4d0a-bd25-eeca0502151f + - 6b01bf51-2743-4b8a-bf27-3e7a65cd3dbb Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2332,12 +2460,12 @@ http_interactions: Connection: - close Content-Length: - - '233' + - '234' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:00 GMT + recorded_at: Tue, 19 Mar 2024 21:50:53 GMT recorded_with: VCR 6.2.0 diff --git a/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_with_patchinfo/when_accepting_request/creates_maintenance_incident_project.yml b/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_with_patchinfo/when_accepting_request/creates_maintenance_incident_project.yml index 15bf8279beb..ffacb540c0b 100644 --- a/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_with_patchinfo/when_accepting_request/creates_maintenance_incident_project.yml +++ b/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_with_patchinfo/when_accepting_request/creates_maintenance_incident_project.yml @@ -2,14 +2,14 @@ http_interactions: - request: method: put - uri: http://backend:5352/source/home:user_7/_meta?user=user_7 + uri: http://backend:5352/source/home:user_11/_meta?user=user_11 body: encoding: UTF-8 string: | - + <description/> - <person userid="user_7" role="maintainer"/> + <person userid="user_11" role="maintainer"/> </project> headers: Accept-Encoding: @@ -30,16 +30,16 @@ http_interactions: Connection: - close Content-Length: - - '134' + - '136' body: encoding: UTF-8 string: | - <project name="home:user_7"> + <project name="home:user_11"> <title> - + - recorded_at: Fri, 15 Mar 2024 17:30:08 GMT + recorded_at: Tue, 19 Mar 2024 21:50:57 GMT - request: method: put uri: http://backend:5352/source/home:tom/_meta?user=tom @@ -79,7 +79,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/_meta?user=tom @@ -87,7 +87,7 @@ http_interactions: encoding: UTF-8 string: | - The Wind's Twelve Quarters + The Line of Beauty headers: @@ -109,15 +109,15 @@ http_interactions: Connection: - close Content-Length: - - '127' + - '119' body: encoding: UTF-8 string: | - The Wind's Twelve Quarters + The Line of Beauty - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/_meta?user=tom @@ -125,9 +125,9 @@ http_interactions: encoding: UTF-8 string: | - The Wind's Twelve Quarters + The Line of Beauty - + i586 @@ -150,18 +150,18 @@ http_interactions: Connection: - close Content-Length: - - '201' + - '193' body: encoding: UTF-8 string: | - The Wind's Twelve Quarters + The Line of Beauty - + i586 - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/_meta?user=tom @@ -169,8 +169,8 @@ http_interactions: encoding: UTF-8 string: | - A Glass of Blessings - Sit excepturi aliquam est. + The Golden Apples of the Sun + Error voluptas et temporibus. headers: Accept-Encoding: @@ -191,21 +191,21 @@ http_interactions: Connection: - close Content-Length: - - '184' + - '195' body: encoding: UTF-8 string: | - A Glass of Blessings - Sit excepturi aliquam est. + The Golden Apples of the Sun + Error voluptas et temporibus. - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/_config body: encoding: UTF-8 - string: Minima perferendis et. Qui perspiciatis consequatur. Et velit consequatur. + string: Eum nulla eos. Sed nostrum ea. Nisi magnam perferendis. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -225,19 +225,19 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 49f3516f7c81d21a045112e0e9566f50 + + 86d7c3e4e2c737c7d8b2e3b94a7a4061 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/DUMMY_FILE @@ -263,19 +263,19 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 49f3516f7c81d21a045112e0e9566f50 + + 86d7c3e4e2c737c7d8b2e3b94a7a4061 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/_meta?user=tom @@ -283,8 +283,8 @@ http_interactions: encoding: UTF-8 string: | - For a Breath I Tarry - Sequi ut nobis minus. + To Say Nothing of the Dog + Nemo itaque culpa eum. headers: Accept-Encoding: @@ -305,21 +305,21 @@ http_interactions: Connection: - close Content-Length: - - '179' + - '185' body: encoding: UTF-8 string: | - For a Breath I Tarry - Sequi ut nobis minus. + To Say Nothing of the Dog + Nemo itaque culpa eum. - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/_config body: encoding: UTF-8 - string: Vero atque nobis. Explicabo vel et. Consectetur ea consequatur. + string: Est sunt quidem. Temporibus qui quibusdam. Id ipsum animi. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -339,19 +339,19 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 640e86736757ea6f8091963b6f98c537 + + e37f3185e83bcdcf16b2af299648a0c6 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/DUMMY_FILE @@ -377,19 +377,19 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 640e86736757ea6f8091963b6f98c537 + + e37f3185e83bcdcf16b2af299648a0c6 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_meta?user=tom @@ -445,7 +445,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo?comment=generated%20by%20createpatchinfo%20call&user=tom @@ -478,19 +478,19 @@ http_interactions: Connection: - close Content-Length: - - '236' + - '238' body: encoding: UTF-8 string: | - + e45d013f24b032bd54480cfc08ca5401 unknown - + tom generated by createpatchinfo call - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_meta?user=tom @@ -546,7 +546,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -572,14 +572,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo?view=info @@ -605,14 +605,14 @@ http_interactions: Connection: - close Content-Length: - - '185' + - '187' body: encoding: UTF-8 string: | - + _patchinfo - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -638,14 +638,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo @@ -682,15 +682,15 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_7 + uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_11 body: encoding: UTF-8 string: | - Precious Bane + The Violent Bear It Away headers: @@ -712,25 +712,25 @@ http_interactions: Connection: - close Content-Length: - - '103' + - '114' body: encoding: UTF-8 string: | - Precious Bane + The Violent Bear It Away - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_7 + uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_11 body: encoding: UTF-8 string: | - Precious Bane + The Violent Bear It Away - + i586 @@ -753,27 +753,27 @@ http_interactions: Connection: - close Content-Length: - - '177' + - '188' body: encoding: UTF-8 string: | - Precious Bane + The Violent Bear It Away - + i586 - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/cacti/_meta?user=user_7 + uri: http://backend:5352/source/openSUSE:11.4/cacti/_meta?user=user_11 body: encoding: UTF-8 string: | - The Daffodil Sky - Vitae ab est omnis. + When the Green Woods Laugh + Sapiente consequatur enim sit. headers: Accept-Encoding: @@ -794,21 +794,21 @@ http_interactions: Connection: - close Content-Length: - - '141' + - '162' body: encoding: UTF-8 string: | - The Daffodil Sky - Vitae ab est omnis. + When the Green Woods Laugh + Sapiente consequatur enim sit. - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.4/cacti/_config body: encoding: UTF-8 - string: Natus aperiam recusandae. Iure enim illo. Animi nemo illo. + string: Quis quas eaque. Suscipit repudiandae excepturi. Fuga beatae est. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -828,25 +828,25 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 9fc6eaf4097ef974cdc5ab8a2ddf9bde + + 1455abde24f27d790c6caff9c34c261a unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.4/cacti/somefile.txt body: encoding: UTF-8 - string: Nemo quaerat quo. Voluptatem est reprehenderit. Aut aut ea. + string: Et ipsum ex. Minus voluptatem maxime. Sit reiciendis est. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -866,27 +866,27 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - af644bcc09da5e608c1523641c40b77e + + 749cdfd945ac63d44d0a8d0d856fe901 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_7 + uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_11 body: encoding: UTF-8 string: | - Number the Stars + The Glory and the Dream headers: @@ -908,18 +908,18 @@ http_interactions: Connection: - close Content-Length: - - '140' + - '147' body: encoding: UTF-8 string: | - Number the Stars + The Glory and the Dream - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_project/_attribute?meta=1&user=user_7 + uri: http://backend:5352/source/openSUSE:11.4:Update/_project/_attribute?meta=1&user=user_11 body: encoding: UTF-8 string: | @@ -945,21 +945,21 @@ http_interactions: Connection: - close Content-Length: - - '169' + - '171' body: encoding: UTF-8 string: | - - db78bf2e0c985625a270ac4970f441f5 - - user_7 + + c1677509a18d4e1cef48b4c1a11fb5de + + user_11 - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_project/_attribute?meta=1&user=user_7 + uri: http://backend:5352/source/openSUSE:11.4/_project/_attribute?meta=1&user=user_11 body: encoding: UTF-8 string: | @@ -987,26 +987,26 @@ http_interactions: Connection: - close Content-Length: - - '169' + - '171' body: encoding: UTF-8 string: | - - df1b017c1f6f424992c91fdda604087d - - user_7 + + 0cd8e7d0ba340bf19ae697c28844ee8d + + user_11 - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_7 + uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_11 body: encoding: UTF-8 string: | - Number the Stars + The Glory and the Dream @@ -1029,24 +1029,24 @@ http_interactions: Connection: - close Content-Length: - - '174' + - '181' body: encoding: UTF-8 string: | - Number the Stars + The Glory and the Dream - recorded_at: Fri, 15 Mar 2024 17:30:09 GMT + recorded_at: Tue, 19 Mar 2024 21:50:58 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_7 + uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_11 body: encoding: UTF-8 string: | - That Hideous Strength + Sleep the Brave headers: @@ -1068,25 +1068,25 @@ http_interactions: Connection: - close Content-Length: - - '111' + - '105' body: encoding: UTF-8 string: | - That Hideous Strength + Sleep the Brave - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_7 + uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_11 body: encoding: UTF-8 string: | - That Hideous Strength + Sleep the Brave - + i586 @@ -1109,27 +1109,27 @@ http_interactions: Connection: - close Content-Length: - - '185' + - '179' body: encoding: UTF-8 string: | - That Hideous Strength + Sleep the Brave - + i586 - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/cacti/_meta?user=user_7 + uri: http://backend:5352/source/openSUSE:11.5/cacti/_meta?user=user_11 body: encoding: UTF-8 string: | - The Road Less Traveled - Natus nostrum distinctio voluptate. + The Heart Is Deceitful Above All Things + A voluptatem facilis et. headers: Accept-Encoding: @@ -1150,21 +1150,21 @@ http_interactions: Connection: - close Content-Length: - - '163' + - '169' body: encoding: UTF-8 string: | - The Road Less Traveled - Natus nostrum distinctio voluptate. + The Heart Is Deceitful Above All Things + A voluptatem facilis et. - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.5/cacti/_config body: encoding: UTF-8 - string: Et laborum sunt. Quidem sed minus. Eos fuga nihil. + string: Et veniam iure. Explicabo libero illum. Non ducimus ullam. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -1184,25 +1184,25 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 499bb2a3aacbb843cb969b65a4e3c439 + + e462aa2344453d3564837ca0b04d43d0 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.5/cacti/somefile.txt body: encoding: UTF-8 - string: Eum nam est. Tempora rerum eligendi. Nemo explicabo qui. + string: Enim alias iusto. Recusandae nam minus. Facilis sint hic. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -1222,27 +1222,27 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 23432e8a98b0e01bd33186363f12aecd + + 7b3f79fc3bfbf6c1fc69c120bd224696 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_7 + uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_11 body: encoding: UTF-8 string: | - O Jerusalem! + Tender Is the Night headers: @@ -1264,18 +1264,18 @@ http_interactions: Connection: - close Content-Length: - - '136' + - '143' body: encoding: UTF-8 string: | - O Jerusalem! + Tender Is the Night - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_project/_attribute?meta=1&user=user_7 + uri: http://backend:5352/source/openSUSE:11.5:Update/_project/_attribute?meta=1&user=user_11 body: encoding: UTF-8 string: | @@ -1301,21 +1301,21 @@ http_interactions: Connection: - close Content-Length: - - '169' + - '171' body: encoding: UTF-8 string: | - - 7cacf82801d09efb57ad5c7b1de363ad - - user_7 + + 8df365f79a3e9be73f4adaad593b8134 + + user_11 - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_project/_attribute?meta=1&user=user_7 + uri: http://backend:5352/source/openSUSE:11.5/_project/_attribute?meta=1&user=user_11 body: encoding: UTF-8 string: | @@ -1343,26 +1343,26 @@ http_interactions: Connection: - close Content-Length: - - '169' + - '171' body: encoding: UTF-8 string: | - - 100981b2b869590219ffa81c3c367a51 - - user_7 + + a5061b12e4658bb9e96e920f1b244dc1 + + user_11 - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_7 + uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_11 body: encoding: UTF-8 string: | - O Jerusalem! + Tender Is the Night @@ -1385,16 +1385,16 @@ http_interactions: Connection: - close Content-Length: - - '170' + - '177' body: encoding: UTF-8 string: | - O Jerusalem! + Tender Is the Night - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: put uri: http://backend:5352/source/home:maintenance_coord/_meta?user=maintenance_coord @@ -1434,10 +1434,10 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_7 + uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_11 body: encoding: UTF-8 string: | @@ -1480,10 +1480,10 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_project/_attribute?meta=1&user=user_7 + uri: http://backend:5352/source/MaintenanceProject/_project/_attribute?meta=1&user=user_11 body: encoding: UTF-8 string: | @@ -1509,21 +1509,21 @@ http_interactions: Connection: - close Content-Length: - - '169' + - '171' body: encoding: UTF-8 string: | - + b5ac59f5d2a72c7f98586b6c1dbf55de - - user_7 + + user_11 - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_7 + uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_11 body: encoding: UTF-8 string: | @@ -1566,7 +1566,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1592,15 +1592,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1626,18 +1626,18 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=8&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=180&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1662,13 +1662,13 @@ http_interactions: Connection: - close Content-Length: - - '837' + - '820' body: encoding: UTF-8 string: | - + - + @@ -1678,9 +1678,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Minima perferendis et. Qui perspiciatis consequatur. Et velit consequatur. + +Eum nulla eos. Sed nostrum ea. Nisi magnam perferendis. \ No newline at end of file @@ -1688,7 +1688,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -1714,15 +1714,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -1748,18 +1748,18 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=8&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=180&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1784,13 +1784,13 @@ http_interactions: Connection: - close Content-Length: - - '826' + - '823' body: encoding: UTF-8 string: | - + - + @@ -1800,9 +1800,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Vero atque nobis. Explicabo vel et. Consectetur ea consequatur. + +Est sunt quidem. Temporibus qui quibusdam. Id ipsum animi. \ No newline at end of file @@ -1810,7 +1810,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -1836,14 +1836,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -1869,17 +1869,17 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/patchinfo?cmd=diff&expand=1&filelimit=10000&orev=0&rev=4&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/patchinfo?cmd=diff&expand=1&filelimit=10000&orev=0&rev=51&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1904,13 +1904,13 @@ http_interactions: Connection: - close Content-Length: - - '737' + - '738' body: encoding: UTF-8 string: | - + - + @@ -1929,7 +1929,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:10 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -1938,7 +1938,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 92ca1729-c94d-4e39-9f56-a7e28bb1757a + - d55debe4-7e47-4f72-b24a-74907510c435 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1961,10 +1961,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:11 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -1973,7 +1973,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 92ca1729-c94d-4e39-9f56-a7e28bb1757a + - d55debe4-7e47-4f72-b24a-74907510c435 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1996,10 +1996,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:11 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status @@ -2008,7 +2008,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 92ca1729-c94d-4e39-9f56-a7e28bb1757a + - d55debe4-7e47-4f72-b24a-74907510c435 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2031,10 +2031,138 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:11 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - d55debe4-7e47-4f72-b24a-74907510c435 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - d55debe4-7e47-4f72-b24a-74907510c435 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT +- request: + method: post + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=180&tarlimit=10000&view=xml&withissues=1 + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + X-Request-Id: + - d55debe4-7e47-4f72-b24a-74907510c435 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Content-Length: + - '820' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: | + + + + + + + @@ -0,0 +1,1 @@ + +boo#12345 + \ No newline at end of file + + + + + @@ -0,0 +1,1 @@ + +Eum nulla eos. Sed nostrum ea. Nisi magnam perferendis. + \ No newline at end of file + + + + + + + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -2043,7 +2171,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 92ca1729-c94d-4e39-9f56-a7e28bb1757a + - d55debe4-7e47-4f72-b24a-74907510c435 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2062,15 +2190,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:11 GMT + recorded_at: Tue, 19 Mar 2024 21:50:59 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -2079,7 +2207,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 92ca1729-c94d-4e39-9f56-a7e28bb1757a + - d55debe4-7e47-4f72-b24a-74907510c435 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2098,18 +2226,18 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:11 GMT + recorded_at: Tue, 19 Mar 2024 21:51:00 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=8&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=180&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -2117,7 +2245,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 92ca1729-c94d-4e39-9f56-a7e28bb1757a + - d55debe4-7e47-4f72-b24a-74907510c435 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2132,7 +2260,7 @@ http_interactions: Content-Type: - text/xml Content-Length: - - '837' + - '820' Cache-Control: - no-cache Connection: @@ -2140,9 +2268,9 @@ http_interactions: body: encoding: UTF-8 string: | - + - + @@ -2152,9 +2280,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Minima perferendis et. Qui perspiciatis consequatur. Et velit consequatur. + +Eum nulla eos. Sed nostrum ea. Nisi magnam perferendis. \ No newline at end of file @@ -2162,7 +2290,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:11 GMT + recorded_at: Tue, 19 Mar 2024 21:51:00 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -2171,7 +2299,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 92ca1729-c94d-4e39-9f56-a7e28bb1757a + - d55debe4-7e47-4f72-b24a-74907510c435 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2190,17 +2318,17 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:11 GMT + recorded_at: Tue, 19 Mar 2024 21:51:00 GMT - request: method: get - uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo?rev=4 + uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo?rev=51 body: encoding: US-ASCII string: '' @@ -2234,7 +2362,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:11 GMT + recorded_at: Tue, 19 Mar 2024 21:51:00 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -2243,7 +2371,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 3ca9a0f8-0cc3-4a17-812f-581f58d89111 + - 4c6c15b0-2357-4eb6-be81-3b40e5c97c70 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2266,10 +2394,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:11 GMT + recorded_at: Tue, 19 Mar 2024 21:51:00 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -2278,7 +2406,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 3ca9a0f8-0cc3-4a17-812f-581f58d89111 + - 4c6c15b0-2357-4eb6-be81-3b40e5c97c70 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2301,10 +2429,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:11 GMT + recorded_at: Tue, 19 Mar 2024 21:51:00 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status @@ -2313,7 +2441,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 3ca9a0f8-0cc3-4a17-812f-581f58d89111 + - 4c6c15b0-2357-4eb6-be81-3b40e5c97c70 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2336,10 +2464,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:11 GMT + recorded_at: Tue, 19 Mar 2024 21:51:00 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -2348,7 +2476,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 2a103b49-2d03-4e24-8e96-df400569e6c6 + - d5d3c74a-38d2-4c2c-aa35-1742a292d0f6 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2371,10 +2499,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:12 GMT + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -2383,7 +2511,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 2a103b49-2d03-4e24-8e96-df400569e6c6 + - d5d3c74a-38d2-4c2c-aa35-1742a292d0f6 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2406,10 +2534,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:12 GMT + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status @@ -2418,7 +2546,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 2a103b49-2d03-4e24-8e96-df400569e6c6 + - d5d3c74a-38d2-4c2c-aa35-1742a292d0f6 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2441,10 +2569,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:12 GMT + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -2453,7 +2581,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 2a103b49-2d03-4e24-8e96-df400569e6c6 + - d5d3c74a-38d2-4c2c-aa35-1742a292d0f6 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2472,15 +2600,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:12 GMT + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -2489,7 +2617,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 2a103b49-2d03-4e24-8e96-df400569e6c6 + - d5d3c74a-38d2-4c2c-aa35-1742a292d0f6 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2508,18 +2636,18 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:12 GMT + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=8&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=180&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -2527,7 +2655,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 2a103b49-2d03-4e24-8e96-df400569e6c6 + - d5d3c74a-38d2-4c2c-aa35-1742a292d0f6 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2542,7 +2670,7 @@ http_interactions: Content-Type: - text/xml Content-Length: - - '837' + - '820' Cache-Control: - no-cache Connection: @@ -2550,9 +2678,9 @@ http_interactions: body: encoding: UTF-8 string: | - + - + @@ -2562,9 +2690,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Minima perferendis et. Qui perspiciatis consequatur. Et velit consequatur. + +Eum nulla eos. Sed nostrum ea. Nisi magnam perferendis. \ No newline at end of file @@ -2572,7 +2700,135 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:12 GMT + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - d5d3c74a-38d2-4c2c-aa35-1742a292d0f6 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - d5d3c74a-38d2-4c2c-aa35-1742a292d0f6 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT +- request: + method: post + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=180&tarlimit=10000&view=xml&withissues=1 + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + X-Request-Id: + - d5d3c74a-38d2-4c2c-aa35-1742a292d0f6 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Content-Length: + - '820' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: | + + + + + + + @@ -0,0 +1,1 @@ + +boo#12345 + \ No newline at end of file + + + + + @@ -0,0 +1,1 @@ + +Eum nulla eos. Sed nostrum ea. Nisi magnam perferendis. + \ No newline at end of file + + + + + + + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -2581,7 +2837,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 2a103b49-2d03-4e24-8e96-df400569e6c6 + - d5d3c74a-38d2-4c2c-aa35-1742a292d0f6 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2600,17 +2856,17 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:12 GMT + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT - request: method: get - uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo?rev=4 + uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo?rev=51 body: encoding: US-ASCII string: '' @@ -2644,7 +2900,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:12 GMT + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -2653,7 +2909,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21130894-d00b-4cc1-b05c-a97d24e6f410 + - d68f94b6-0eec-46a8-8875-50121f6f7433 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2676,10 +2932,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:12 GMT + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -2688,7 +2944,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21130894-d00b-4cc1-b05c-a97d24e6f410 + - d68f94b6-0eec-46a8-8875-50121f6f7433 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2711,10 +2967,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:12 GMT + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status @@ -2723,7 +2979,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21130894-d00b-4cc1-b05c-a97d24e6f410 + - d68f94b6-0eec-46a8-8875-50121f6f7433 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2746,10 +3002,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:12 GMT + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -2758,7 +3014,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2777,15 +3033,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:12 GMT + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?expand=1 @@ -2794,7 +3050,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2813,15 +3069,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:12 GMT + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -2830,7 +3086,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2849,15 +3105,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:12 GMT + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?expand=1 @@ -2866,7 +3122,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2885,15 +3141,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:12 GMT + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -2902,7 +3158,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2921,14 +3177,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:12 GMT + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo?expand=1 @@ -2937,7 +3193,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2956,14 +3212,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:12 GMT + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?expand=1 @@ -2972,7 +3228,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2991,15 +3247,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:12 GMT + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?expand=1 @@ -3008,7 +3264,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3027,15 +3283,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:12 GMT + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo?expand=1 @@ -3044,7 +3300,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3063,14 +3319,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:01 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?requestid=1&user=maintenance_coord @@ -3091,7 +3347,7 @@ http_interactions: headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3126,7 +3382,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -3135,7 +3391,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3154,15 +3410,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: get uri: http://backend:5352/source/openSUSE:11.4:Update/cacti.openSUSE_11.4_Update @@ -3196,7 +3452,7 @@ http_interactions: package 'cacti.openSUSE_11.4_Update' does not exist
404 package 'cacti.openSUSE_11.4_Update' does not exist
- recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update/_meta?user=maintenance_coord @@ -3236,7 +3492,7 @@ http_interactions: cacti.openSUSE_11.4_Update - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=branch&missingok=1&noservice=1&opackage=cacti.openSUSE_11.4_Update&oproject=openSUSE:11.4:Update&user=maintenance_coord @@ -3264,19 +3520,19 @@ http_interactions: Connection: - close Content-Length: - - '217' + - '221' body: encoding: UTF-8 string: | - + 1062589906c6eb53389501c6582ca7fe unknown - + maintenance_coord - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update/_meta?user=maintenance_coord @@ -3316,7 +3572,7 @@ http_interactions: cacti.openSUSE_11.4_Update - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update @@ -3342,15 +3598,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '506' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?view=info @@ -3359,7 +3615,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3378,16 +3634,16 @@ http_interactions: Connection: - close Content-Length: - - '461' + - '465' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update @@ -3396,7 +3652,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3415,15 +3671,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '506' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -3451,18 +3707,18 @@ http_interactions: Connection: - close Content-Length: - - '396' + - '398' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -3501,7 +3757,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update/_meta?user=maintenance_coord @@ -3547,7 +3803,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update @@ -3556,7 +3812,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3575,15 +3831,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '506' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?user=maintenance_coord @@ -3602,14 +3858,14 @@ http_interactions: - - + + i586 headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3644,12 +3900,12 @@ http_interactions: - - + + i586 - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=copy&comment=Maintenance%20incident%20copy%20from%20project%20home:tom:branches:Update&expand=1&keeplink=1&opackage=cacti.openSUSE_11.4_Update&oproject=home:tom:branches:Update&requestid=1&user=maintenance_coord&withacceptinfo=1 @@ -3660,7 +3916,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3679,20 +3935,20 @@ http_interactions: Connection: - close Content-Length: - - '488' + - '494' body: encoding: UTF-8 string: | - - 71681614a9b735d963bc7587260cbbf2 + + 286b5d80ee253cfae59baec47390e2b3 unknown - + maintenance_coord Maintenance incident copy from project home:tom:branches:Update 1 - + - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update/_meta?user=maintenance_coord @@ -3738,7 +3994,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update @@ -3764,17 +4020,17 @@ http_interactions: Connection: - close Content-Length: - - '692' + - '696' body: encoding: UTF-8 string: | - - + + - + - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?view=info @@ -3783,7 +4039,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3802,16 +4058,16 @@ http_interactions: Connection: - close Content-Length: - - '461' + - '465' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update @@ -3820,7 +4076,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3839,17 +4095,17 @@ http_interactions: Connection: - close Content-Length: - - '692' + - '696' body: encoding: UTF-8 string: | - - + + - + - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -3877,18 +4133,18 @@ http_interactions: Connection: - close Content-Length: - - '396' + - '398' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -3920,14 +4176,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?comment=maintenance_incident%20request%201&requestid=1&user=maintenance_coord @@ -3946,14 +4202,14 @@ http_interactions: - - + + i586 headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3988,12 +4244,12 @@ http_interactions: - - + + i586 - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/patchinfo/_meta?user=maintenance_coord @@ -4049,7 +4305,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/patchinfo/_patchinfo?comment=generated%20by%20request%20id%201%20accept%20call&user=maintenance_coord @@ -4059,13 +4315,13 @@ http_interactions: recommended low - user_8 - Excepturi voluptatem corporis. Quo repellendus beatae. Quam quod quibusdam. - Excepturi voluptatem corporis. Quo repellendus beatae. Quam quod quibusdam. + user_12 + Sit quibusdam libero. Tempora dolorum explicabo. Fugiat adipisci facilis. + Sit quibusdam libero. Tempora dolorum explicabo. Fugiat adipisci facilis. headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4084,19 +4340,19 @@ http_interactions: Connection: - close Content-Length: - - '254' + - '256' body: encoding: UTF-8 string: | - - 29938d3f272578110a50d54c23d23398 + + 53012991f966f2a33e560fe8a726ced1 unknown - + maintenance_coord generated by request id 1 accept call - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/patchinfo/_meta?user=maintenance_coord @@ -4152,7 +4408,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo @@ -4178,14 +4434,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo?view=info @@ -4194,7 +4450,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4213,14 +4469,14 @@ http_interactions: Connection: - close Content-Length: - - '185' + - '187' body: encoding: UTF-8 string: | - + _patchinfo - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo @@ -4229,7 +4485,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4248,14 +4504,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo/_patchinfo @@ -4277,7 +4533,7 @@ http_interactions: Content-Type: - application/octet-stream Content-Length: - - '327' + - '324' Cache-Control: - no-cache Connection: @@ -4288,11 +4544,11 @@ http_interactions: recommended low - user_8 - Excepturi voluptatem corporis. Quo repellendus beatae. Quam quod quibusdam. - Excepturi voluptatem corporis. Quo repellendus beatae. Quam quod quibusdam. + user_12 + Sit quibusdam libero. Tempora dolorum explicabo. Fugiat adipisci facilis. + Sit quibusdam libero. Tempora dolorum explicabo. Fugiat adipisci facilis. - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -4301,7 +4557,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4320,15 +4576,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: get uri: http://backend:5352/source/openSUSE:11.5:Update/cacti.openSUSE_11.5_Update @@ -4362,7 +4618,7 @@ http_interactions: package 'cacti.openSUSE_11.5_Update' does not exist
404 package 'cacti.openSUSE_11.5_Update' does not exist
- recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update/_meta?user=maintenance_coord @@ -4402,7 +4658,7 @@ http_interactions: cacti.openSUSE_11.5_Update - recorded_at: Fri, 15 Mar 2024 17:30:13 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=branch&missingok=1&noservice=1&opackage=cacti.openSUSE_11.5_Update&oproject=openSUSE:11.5:Update&user=maintenance_coord @@ -4430,19 +4686,19 @@ http_interactions: Connection: - close Content-Length: - - '217' + - '221' body: encoding: UTF-8 string: | - + 45cd08fc62522ad1df0dcc0f3443e482 unknown - + maintenance_coord - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update/_meta?user=maintenance_coord @@ -4482,7 +4738,7 @@ http_interactions: cacti.openSUSE_11.5_Update - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update @@ -4508,15 +4764,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '506' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:02 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?view=info @@ -4525,7 +4781,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4544,16 +4800,16 @@ http_interactions: Connection: - close Content-Length: - - '461' + - '465' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update @@ -4562,7 +4818,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4581,15 +4837,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '506' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -4617,18 +4873,18 @@ http_interactions: Connection: - close Content-Length: - - '396' + - '398' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -4667,7 +4923,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update/_meta?user=maintenance_coord @@ -4713,7 +4969,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update @@ -4722,7 +4978,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4741,15 +4997,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '506' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?user=maintenance_coord @@ -4768,19 +5024,19 @@ http_interactions: - - + + i586 - - + + i586 headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4815,17 +5071,17 @@ http_interactions: - - + + i586 - - + + i586 - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=copy&comment=Maintenance%20incident%20copy%20from%20project%20home:tom:branches:Update&expand=1&keeplink=1&opackage=cacti.openSUSE_11.5_Update&oproject=home:tom:branches:Update&requestid=1&user=maintenance_coord&withacceptinfo=1 @@ -4836,7 +5092,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4855,20 +5111,20 @@ http_interactions: Connection: - close Content-Length: - - '488' + - '494' body: encoding: UTF-8 string: | - - 5cdd7fa5b923fa8434f3bbaff433d3b5 + + 63954a71b67f7c380d5998045df321a9 unknown - + maintenance_coord Maintenance incident copy from project home:tom:branches:Update 1 - + - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update/_meta?user=maintenance_coord @@ -4914,7 +5170,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update @@ -4940,17 +5196,17 @@ http_interactions: Connection: - close Content-Length: - - '692' + - '696' body: encoding: UTF-8 string: | - - + + - + - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?view=info @@ -4959,7 +5215,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4978,16 +5234,16 @@ http_interactions: Connection: - close Content-Length: - - '461' + - '465' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update @@ -4996,7 +5252,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5015,17 +5271,17 @@ http_interactions: Connection: - close Content-Length: - - '692' + - '696' body: encoding: UTF-8 string: | - - + + - + - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -5053,18 +5309,18 @@ http_interactions: Connection: - close Content-Length: - - '396' + - '398' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -5096,14 +5352,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?comment=maintenance_incident%20request%201&requestid=1&user=maintenance_coord @@ -5122,19 +5378,19 @@ http_interactions: - - + + i586 - - + + i586 headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5169,17 +5425,17 @@ http_interactions: - - + + i586 - - + + i586 - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -5188,7 +5444,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5207,14 +5463,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/patchinfo?cmd=copy&comment=Maintenance%20incident%20copy%20from%20project%20home:tom:branches:Update&expand=1&keeplink=1&opackage=patchinfo&oproject=home:tom:branches:Update&requestid=1&user=maintenance_coord&withacceptinfo=1 @@ -5225,7 +5481,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5244,20 +5500,20 @@ http_interactions: Connection: - close Content-Length: - - '401' + - '404' body: encoding: UTF-8 string: | - + e45d013f24b032bd54480cfc08ca5401 unknown - + maintenance_coord Maintenance incident copy from project home:tom:branches:Update 1 - + - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/patchinfo/_meta?user=maintenance_coord @@ -5313,7 +5569,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo @@ -5339,14 +5595,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo?view=info @@ -5355,7 +5611,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5374,14 +5630,14 @@ http_interactions: Connection: - close Content-Length: - - '185' + - '187' body: encoding: UTF-8 string: | - + _patchinfo - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo @@ -5390,7 +5646,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5409,14 +5665,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo/_patchinfo @@ -5453,7 +5709,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?comment=maintenance_incident%20request%201&requestid=1&user=maintenance_coord @@ -5472,19 +5728,19 @@ http_interactions: - - + + i586 - - + + i586 headers: X-Request-Id: - - 21b5f7ae-2c13-4b7b-b332-21a4f036d5ee + - ef71f223-fc08-4b85-8dc1-149d632bd351 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5519,17 +5775,17 @@ http_interactions: - - + + i586 - - + + i586 - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -5538,7 +5794,7 @@ http_interactions: string: '' headers: X-Request-Id: - - af1259d6-2349-4edc-bbaa-0351f09e3802 + - dc07ff9e-d485-4d9e-a2e7-56122580838e Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5561,10 +5817,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -5573,7 +5829,7 @@ http_interactions: string: '' headers: X-Request-Id: - - af1259d6-2349-4edc-bbaa-0351f09e3802 + - dc07ff9e-d485-4d9e-a2e7-56122580838e Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5596,10 +5852,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status @@ -5608,7 +5864,7 @@ http_interactions: string: '' headers: X-Request-Id: - - af1259d6-2349-4edc-bbaa-0351f09e3802 + - dc07ff9e-d485-4d9e-a2e7-56122580838e Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5631,13 +5887,13 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: post - uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cacheonly=1&cmd=diff&filelimit=10000&orev=c87739c700845785205cfcc81d12a272&rev=8008c2502684f943277093366b772ac5&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cacheonly=1&cmd=diff&filelimit=10000&orev=c87739c700845785205cfcc81d12a272&rev=0e0489c34b0e96b15e8f795836c2e7f7&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -5645,7 +5901,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - af1259d6-2349-4edc-bbaa-0351f09e3802 + - dc07ff9e-d485-4d9e-a2e7-56122580838e Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5672,10 +5928,10 @@ http_interactions: diff not yet in cache
412 diff not yet in cache
- recorded_at: Fri, 15 Mar 2024 17:30:14 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: post - uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=diff&filelimit=10000&orev=c87739c700845785205cfcc81d12a272&rev=8008c2502684f943277093366b772ac5&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cacheonly=1&cmd=diff&filelimit=10000&orev=c87739c700845785205cfcc81d12a272&rev=0e0489c34b0e96b15e8f795836c2e7f7&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -5683,7 +5939,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - af1259d6-2349-4edc-bbaa-0351f09e3802 + - dc07ff9e-d485-4d9e-a2e7-56122580838e Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5692,8 +5948,8 @@ http_interactions: - Ruby response: status: - code: 200 - message: OK + code: 412 + message: diff not yet in cache headers: Content-Type: - text/xml @@ -5702,33 +5958,15 @@ http_interactions: Connection: - close Content-Length: - - '933' + - '120' body: encoding: UTF-8 string: | - - - - - - - @@ -0,0 +1,1 @@ - +boo#12345 - \ No newline at end of file - - - - - @@ -0,0 +1,1 @@ - +Minima perferendis et. Qui perspiciatis consequatur. Et velit consequatur. - \ No newline at end of file - - - - - - - recorded_at: Fri, 15 Mar 2024 17:30:15 GMT + + diff not yet in cache +
412 diff not yet in cache
+
+ recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -5737,7 +5975,7 @@ http_interactions: string: '' headers: X-Request-Id: - - af1259d6-2349-4edc-bbaa-0351f09e3802 + - dc07ff9e-d485-4d9e-a2e7-56122580838e Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5756,17 +5994,17 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:15 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT - request: method: get - uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo?rev=4 + uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo?rev=51 body: encoding: US-ASCII string: '' @@ -5800,5 +6038,5 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:15 GMT + recorded_at: Tue, 19 Mar 2024 21:51:03 GMT recorded_with: VCR 6.2.0 diff --git a/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_with_patchinfo/when_accepting_request/succeeds.yml b/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_with_patchinfo/when_accepting_request/succeeds.yml index 1c5031c0262..94e7e84ad47 100644 --- a/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_with_patchinfo/when_accepting_request/succeeds.yml +++ b/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_with_patchinfo/when_accepting_request/succeeds.yml @@ -2,14 +2,14 @@ http_interactions: - request: method: put - uri: http://backend:5352/source/home:user_5/_meta?user=user_5 + uri: http://backend:5352/source/home:user_13/_meta?user=user_13 body: encoding: UTF-8 string: | - + <description/> - <person userid="user_5" role="maintainer"/> + <person userid="user_13" role="maintainer"/> </project> headers: Accept-Encoding: @@ -30,16 +30,16 @@ http_interactions: Connection: - close Content-Length: - - '134' + - '136' body: encoding: UTF-8 string: | - <project name="home:user_5"> + <project name="home:user_13"> <title> - + - recorded_at: Fri, 15 Mar 2024 17:30:00 GMT + recorded_at: Tue, 19 Mar 2024 21:51:04 GMT - request: method: put uri: http://backend:5352/source/home:tom/_meta?user=tom @@ -79,7 +79,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:01 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/_meta?user=tom @@ -87,7 +87,7 @@ http_interactions: encoding: UTF-8 string: | - The Painted Veil + Blithe Spirit headers: @@ -109,15 +109,15 @@ http_interactions: Connection: - close Content-Length: - - '117' + - '114' body: encoding: UTF-8 string: | - The Painted Veil + Blithe Spirit - recorded_at: Fri, 15 Mar 2024 17:30:01 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/_meta?user=tom @@ -125,9 +125,9 @@ http_interactions: encoding: UTF-8 string: | - The Painted Veil + Blithe Spirit - + i586 @@ -150,18 +150,18 @@ http_interactions: Connection: - close Content-Length: - - '191' + - '188' body: encoding: UTF-8 string: | - The Painted Veil + Blithe Spirit - + i586 - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/_meta?user=tom @@ -169,8 +169,8 @@ http_interactions: encoding: UTF-8 string: | - Great Work of Time - Quis ex autem quam. + The Doors of Perception + Beatae facilis doloribus vel. headers: Accept-Encoding: @@ -191,21 +191,21 @@ http_interactions: Connection: - close Content-Length: - - '175' + - '190' body: encoding: UTF-8 string: | - Great Work of Time - Quis ex autem quam. + The Doors of Perception + Beatae facilis doloribus vel. - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/_config body: encoding: UTF-8 - string: Hic nesciunt in. Omnis voluptatem aspernatur. Dolorum delectus officia. + string: Esse autem consequuntur. Porro corporis rerum. Quidem dolor et. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -225,19 +225,19 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 393077f4bdc694bddaab1694a28248d7 + + aac8ddcd2b57f101af4c38d3d0316b22 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/DUMMY_FILE @@ -263,19 +263,19 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 393077f4bdc694bddaab1694a28248d7 + + aac8ddcd2b57f101af4c38d3d0316b22 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/_meta?user=tom @@ -283,8 +283,8 @@ http_interactions: encoding: UTF-8 string: | - A Many-Splendoured Thing - Doloremque aut et ipsam. + Great Work of Time + Nobis porro quia voluptates. headers: Accept-Encoding: @@ -305,22 +305,21 @@ http_interactions: Connection: - close Content-Length: - - '186' + - '184' body: encoding: UTF-8 string: | - A Many-Splendoured Thing - Doloremque aut et ipsam. + Great Work of Time + Nobis porro quia voluptates. - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/_config body: encoding: UTF-8 - string: Perferendis dolorem nihil. Molestias iusto consectetur. Officiis sit - ipsa. + string: Magnam fugit autem. Quidem modi mollitia. Perferendis error voluptatem. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -340,19 +339,19 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - adacd99da188d1cdf0e32fd01f0d7931 + + 737550c174bf9909521d614005b7a374 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/DUMMY_FILE @@ -378,19 +377,19 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - adacd99da188d1cdf0e32fd01f0d7931 + + 737550c174bf9909521d614005b7a374 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_meta?user=tom @@ -446,7 +445,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo?comment=generated%20by%20createpatchinfo%20call&user=tom @@ -479,19 +478,19 @@ http_interactions: Connection: - close Content-Length: - - '236' + - '238' body: encoding: UTF-8 string: | - + e45d013f24b032bd54480cfc08ca5401 unknown - + tom generated by createpatchinfo call - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_meta?user=tom @@ -547,7 +546,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -573,14 +572,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo?view=info @@ -606,14 +605,14 @@ http_interactions: Connection: - close Content-Length: - - '185' + - '187' body: encoding: UTF-8 string: | - + _patchinfo - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -639,14 +638,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo @@ -683,15 +682,15 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_5 + uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_13 body: encoding: UTF-8 string: | - The Wings of the Dove + Death Be Not Proud headers: @@ -713,25 +712,25 @@ http_interactions: Connection: - close Content-Length: - - '111' + - '108' body: encoding: UTF-8 string: | - The Wings of the Dove + Death Be Not Proud - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_5 + uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_13 body: encoding: UTF-8 string: | - The Wings of the Dove + Death Be Not Proud - + i586 @@ -754,27 +753,27 @@ http_interactions: Connection: - close Content-Length: - - '185' + - '182' body: encoding: UTF-8 string: | - The Wings of the Dove + Death Be Not Proud - + i586 - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/cacti/_meta?user=user_5 + uri: http://backend:5352/source/openSUSE:11.4/cacti/_meta?user=user_13 body: encoding: UTF-8 string: | - Waiting for the Barbarians - Illo quam corporis et. + Dulce et Decorum Est + Quam maxime odit consequuntur. headers: Accept-Encoding: @@ -795,21 +794,21 @@ http_interactions: Connection: - close Content-Length: - - '154' + - '156' body: encoding: UTF-8 string: | - Waiting for the Barbarians - Illo quam corporis et. + Dulce et Decorum Est + Quam maxime odit consequuntur. - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.4/cacti/_config body: encoding: UTF-8 - string: Molestiae non quia. Vero aut maxime. Laborum molestiae qui. + string: Facilis eveniet nihil. Nostrum ipsam cum. Aut aut tempore. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -829,26 +828,25 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 67ec907ff7ee50bc98ca7a72e9b8ad68 + + f7865f45eb168b7681099aa915b9e0b8 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.4/cacti/somefile.txt body: encoding: UTF-8 - string: Necessitatibus accusantium sint. Voluptatem ipsam voluptatibus. Quibusdam - omnis rerum. + string: Velit modi eos. Ut perspiciatis omnis. Hic quo aperiam. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -868,27 +866,27 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 88ef459deb0fe595141e4e45a9481101 + + 8228ffe745dbd360b4a2bf29ab03e3b1 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_5 + uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_13 body: encoding: UTF-8 string: | - The World, the Flesh and the Devil + The Waste Land headers: @@ -910,18 +908,18 @@ http_interactions: Connection: - close Content-Length: - - '158' + - '138' body: encoding: UTF-8 string: | - The World, the Flesh and the Devil + The Waste Land - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_project/_attribute?meta=1&user=user_5 + uri: http://backend:5352/source/openSUSE:11.4:Update/_project/_attribute?meta=1&user=user_13 body: encoding: UTF-8 string: | @@ -947,21 +945,21 @@ http_interactions: Connection: - close Content-Length: - - '168' + - '171' body: encoding: UTF-8 string: | - - c2e22d5df826a3b7548654f1a8d0e495 - - user_5 + + 26e4ab570d7ac7bb07ecc017eaeaf74a + + user_13 - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_project/_attribute?meta=1&user=user_5 + uri: http://backend:5352/source/openSUSE:11.4/_project/_attribute?meta=1&user=user_13 body: encoding: UTF-8 string: | @@ -989,26 +987,26 @@ http_interactions: Connection: - close Content-Length: - - '168' + - '171' body: encoding: UTF-8 string: | - - 938ce999fb0e6befa9b3f644a7666b65 - - user_5 + + 9569ed41e89d97093f8869f3ba87f194 + + user_13 - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_5 + uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_13 body: encoding: UTF-8 string: | - The World, the Flesh and the Devil + The Waste Land @@ -1031,24 +1029,24 @@ http_interactions: Connection: - close Content-Length: - - '192' + - '172' body: encoding: UTF-8 string: | - The World, the Flesh and the Devil + The Waste Land - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:05 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_5 + uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_13 body: encoding: UTF-8 string: | - Antic Hay + That Good Night headers: @@ -1070,25 +1068,25 @@ http_interactions: Connection: - close Content-Length: - - '99' + - '105' body: encoding: UTF-8 string: | - Antic Hay + That Good Night - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_5 + uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_13 body: encoding: UTF-8 string: | - Antic Hay + That Good Night - + i586 @@ -1111,27 +1109,27 @@ http_interactions: Connection: - close Content-Length: - - '173' + - '179' body: encoding: UTF-8 string: | - Antic Hay + That Good Night - + i586 - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/cacti/_meta?user=user_5 + uri: http://backend:5352/source/openSUSE:11.5/cacti/_meta?user=user_13 body: encoding: UTF-8 string: | - By Grand Central Station I Sat Down and Wept - Autem nihil debitis aut. + To Your Scattered Bodies Go + Corrupti est tempore beatae. headers: Accept-Encoding: @@ -1152,21 +1150,21 @@ http_interactions: Connection: - close Content-Length: - - '174' + - '161' body: encoding: UTF-8 string: | - By Grand Central Station I Sat Down and Wept - Autem nihil debitis aut. + To Your Scattered Bodies Go + Corrupti est tempore beatae. - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.5/cacti/_config body: encoding: UTF-8 - string: Nihil asperiores velit. Voluptatibus aliquid soluta. Dolorem quasi veniam. + string: Ea nulla et. Molestias alias mollitia. Cupiditate rerum sunt. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -1186,25 +1184,25 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 95310df56dd799bb081ab995a8c11d4d + + f99d3a15822048b308288d949e39c59a unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.5/cacti/somefile.txt body: encoding: UTF-8 - string: Officia et non. Quia magni rerum. Est ut ex. + string: Laborum nam numquam. Eos ut vel. Aspernatur ut eos. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -1224,27 +1222,27 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - fc957f908975162717df2e5e77818a2c + + c0a10d025b06724a2e6384d72f64db6b unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_5 + uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_13 body: encoding: UTF-8 string: | - An Instant In The Wind + O Pioneers! headers: @@ -1266,18 +1264,18 @@ http_interactions: Connection: - close Content-Length: - - '146' + - '135' body: encoding: UTF-8 string: | - An Instant In The Wind + O Pioneers! - recorded_at: Fri, 15 Mar 2024 17:30:02 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_project/_attribute?meta=1&user=user_5 + uri: http://backend:5352/source/openSUSE:11.5:Update/_project/_attribute?meta=1&user=user_13 body: encoding: UTF-8 string: | @@ -1303,21 +1301,21 @@ http_interactions: Connection: - close Content-Length: - - '168' + - '171' body: encoding: UTF-8 string: | - - c47e869db34a985d34e2f1d7bd0a5e5e - - user_5 + + d8425ccf2e930bb8d73a00ee450cc024 + + user_13 - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_project/_attribute?meta=1&user=user_5 + uri: http://backend:5352/source/openSUSE:11.5/_project/_attribute?meta=1&user=user_13 body: encoding: UTF-8 string: | @@ -1345,26 +1343,26 @@ http_interactions: Connection: - close Content-Length: - - '168' + - '171' body: encoding: UTF-8 string: | - - 6cf7e5d69d0588a21ac4ef98ee0b40cf - - user_5 + + a5f1551e7ed3a317ef449a3dcbebcdc6 + + user_13 - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_5 + uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_13 body: encoding: UTF-8 string: | - An Instant In The Wind + O Pioneers! @@ -1387,16 +1385,16 @@ http_interactions: Connection: - close Content-Length: - - '180' + - '169' body: encoding: UTF-8 string: | - An Instant In The Wind + O Pioneers! - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: put uri: http://backend:5352/source/home:maintenance_coord/_meta?user=maintenance_coord @@ -1436,10 +1434,10 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_5 + uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_13 body: encoding: UTF-8 string: | @@ -1482,10 +1480,10 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_project/_attribute?meta=1&user=user_5 + uri: http://backend:5352/source/MaintenanceProject/_project/_attribute?meta=1&user=user_13 body: encoding: UTF-8 string: | @@ -1511,21 +1509,21 @@ http_interactions: Connection: - close Content-Length: - - '169' + - '171' body: encoding: UTF-8 string: | - + b5ac59f5d2a72c7f98586b6c1dbf55de - - user_5 + + user_13 - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_5 + uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_13 body: encoding: UTF-8 string: | @@ -1568,7 +1566,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1594,15 +1592,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1628,18 +1626,18 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=6&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=182&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1664,13 +1662,13 @@ http_interactions: Connection: - close Content-Length: - - '834' + - '828' body: encoding: UTF-8 string: | - + - + @@ -1680,9 +1678,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Hic nesciunt in. Omnis voluptatem aspernatur. Dolorum delectus officia. + +Esse autem consequuntur. Porro corporis rerum. Quidem dolor et. \ No newline at end of file @@ -1690,7 +1688,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -1716,15 +1714,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -1750,18 +1748,18 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=6&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=182&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1786,13 +1784,13 @@ http_interactions: Connection: - close Content-Length: - - '837' + - '836' body: encoding: UTF-8 string: | - + - + @@ -1802,9 +1800,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Perferendis dolorem nihil. Molestias iusto consectetur. Officiis sit ipsa. + +Magnam fugit autem. Quidem modi mollitia. Perferendis error voluptatem. \ No newline at end of file @@ -1812,7 +1810,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -1838,14 +1836,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -1871,17 +1869,17 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/patchinfo?cmd=diff&expand=1&filelimit=10000&orev=0&rev=3&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/patchinfo?cmd=diff&expand=1&filelimit=10000&orev=0&rev=52&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1906,13 +1904,13 @@ http_interactions: Connection: - close Content-Length: - - '737' + - '738' body: encoding: UTF-8 string: | - + - + @@ -1931,7 +1929,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -1940,7 +1938,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 1bca13e7-8239-44f0-81a8-fd8138e57598 + - 1e95d11d-52e8-442a-9582-a0633a5d901f Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1963,10 +1961,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -1975,7 +1973,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 1bca13e7-8239-44f0-81a8-fd8138e57598 + - 1e95d11d-52e8-442a-9582-a0633a5d901f Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1998,10 +1996,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status @@ -2010,7 +2008,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 1bca13e7-8239-44f0-81a8-fd8138e57598 + - 1e95d11d-52e8-442a-9582-a0633a5d901f Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2033,10 +2031,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -2045,7 +2043,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 1bca13e7-8239-44f0-81a8-fd8138e57598 + - 1e95d11d-52e8-442a-9582-a0633a5d901f Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2064,15 +2062,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:06 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -2081,7 +2079,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 1bca13e7-8239-44f0-81a8-fd8138e57598 + - 1e95d11d-52e8-442a-9582-a0633a5d901f Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2100,18 +2098,18 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:07 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=6&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=182&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -2119,7 +2117,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 1bca13e7-8239-44f0-81a8-fd8138e57598 + - 1e95d11d-52e8-442a-9582-a0633a5d901f Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2134,7 +2132,7 @@ http_interactions: Content-Type: - text/xml Content-Length: - - '834' + - '828' Cache-Control: - no-cache Connection: @@ -2142,9 +2140,9 @@ http_interactions: body: encoding: UTF-8 string: | - + - + @@ -2154,9 +2152,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Hic nesciunt in. Omnis voluptatem aspernatur. Dolorum delectus officia. + +Esse autem consequuntur. Porro corporis rerum. Quidem dolor et. \ No newline at end of file @@ -2164,7 +2162,135 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:07 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - 1e95d11d-52e8-442a-9582-a0633a5d901f + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:51:07 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - 1e95d11d-52e8-442a-9582-a0633a5d901f + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:51:07 GMT +- request: + method: post + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=182&tarlimit=10000&view=xml&withissues=1 + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + X-Request-Id: + - 1e95d11d-52e8-442a-9582-a0633a5d901f + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Content-Length: + - '828' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: | + + + + + + + @@ -0,0 +1,1 @@ + +boo#12345 + \ No newline at end of file + + + + + @@ -0,0 +1,1 @@ + +Esse autem consequuntur. Porro corporis rerum. Quidem dolor et. + \ No newline at end of file + + + + + + + recorded_at: Tue, 19 Mar 2024 21:51:07 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -2173,7 +2299,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 1bca13e7-8239-44f0-81a8-fd8138e57598 + - 1e95d11d-52e8-442a-9582-a0633a5d901f Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2192,17 +2318,17 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:07 GMT - request: method: get - uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo?rev=3 + uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo?rev=52 body: encoding: US-ASCII string: '' @@ -2236,7 +2362,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:07 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -2245,7 +2371,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '0510095e-0de9-4255-b0ac-d42b1b90f85d' + - 359d6c52-ebe9-4a64-a65b-85a163186582 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2268,10 +2394,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:07 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -2280,7 +2406,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '0510095e-0de9-4255-b0ac-d42b1b90f85d' + - 359d6c52-ebe9-4a64-a65b-85a163186582 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2303,10 +2429,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:03 GMT + recorded_at: Tue, 19 Mar 2024 21:51:07 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status @@ -2315,7 +2441,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '0510095e-0de9-4255-b0ac-d42b1b90f85d' + - 359d6c52-ebe9-4a64-a65b-85a163186582 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2338,10 +2464,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:04 GMT + recorded_at: Tue, 19 Mar 2024 21:51:07 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -2350,7 +2476,7 @@ http_interactions: string: '' headers: X-Request-Id: - - cf0b8566-7035-4582-872a-cd651cea2888 + - d4bc2671-ba05-4f68-bf42-0887fce10b1b Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2373,10 +2499,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:04 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -2385,7 +2511,7 @@ http_interactions: string: '' headers: X-Request-Id: - - cf0b8566-7035-4582-872a-cd651cea2888 + - d4bc2671-ba05-4f68-bf42-0887fce10b1b Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2408,10 +2534,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:04 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status @@ -2420,7 +2546,7 @@ http_interactions: string: '' headers: X-Request-Id: - - cf0b8566-7035-4582-872a-cd651cea2888 + - d4bc2671-ba05-4f68-bf42-0887fce10b1b Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2443,10 +2569,46 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:04 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - d4bc2671-ba05-4f68-bf42-0887fce10b1b + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -2455,7 +2617,7 @@ http_interactions: string: '' headers: X-Request-Id: - - cf0b8566-7035-4582-872a-cd651cea2888 + - d4bc2671-ba05-4f68-bf42-0887fce10b1b Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2474,15 +2636,107 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:04 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT +- request: + method: post + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=182&tarlimit=10000&view=xml&withissues=1 + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + X-Request-Id: + - d4bc2671-ba05-4f68-bf42-0887fce10b1b + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Content-Length: + - '828' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: | + + + + + + + @@ -0,0 +1,1 @@ + +boo#12345 + \ No newline at end of file + + + + + @@ -0,0 +1,1 @@ + +Esse autem consequuntur. Porro corporis rerum. Quidem dolor et. + \ No newline at end of file + + + + + + + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - d4bc2671-ba05-4f68-bf42-0887fce10b1b + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -2491,7 +2745,7 @@ http_interactions: string: '' headers: X-Request-Id: - - cf0b8566-7035-4582-872a-cd651cea2888 + - d4bc2671-ba05-4f68-bf42-0887fce10b1b Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2510,18 +2764,18 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:04 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=6&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=182&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -2529,7 +2783,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - cf0b8566-7035-4582-872a-cd651cea2888 + - d4bc2671-ba05-4f68-bf42-0887fce10b1b Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2544,7 +2798,7 @@ http_interactions: Content-Type: - text/xml Content-Length: - - '834' + - '828' Cache-Control: - no-cache Connection: @@ -2552,9 +2806,9 @@ http_interactions: body: encoding: UTF-8 string: | - + - + @@ -2564,9 +2818,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Hic nesciunt in. Omnis voluptatem aspernatur. Dolorum delectus officia. + +Esse autem consequuntur. Porro corporis rerum. Quidem dolor et. \ No newline at end of file @@ -2574,7 +2828,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:04 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -2583,7 +2837,7 @@ http_interactions: string: '' headers: X-Request-Id: - - cf0b8566-7035-4582-872a-cd651cea2888 + - d4bc2671-ba05-4f68-bf42-0887fce10b1b Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2602,17 +2856,17 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: get - uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo?rev=3 + uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo?rev=52 body: encoding: US-ASCII string: '' @@ -2646,7 +2900,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -2655,7 +2909,7 @@ http_interactions: string: '' headers: X-Request-Id: - - e3551e0a-a807-4014-a1bc-b44bec822500 + - 5a3789dd-8a69-4f53-91c4-8b41fa3c7ace Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2678,10 +2932,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -2690,7 +2944,7 @@ http_interactions: string: '' headers: X-Request-Id: - - e3551e0a-a807-4014-a1bc-b44bec822500 + - 5a3789dd-8a69-4f53-91c4-8b41fa3c7ace Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2713,10 +2967,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status @@ -2725,7 +2979,7 @@ http_interactions: string: '' headers: X-Request-Id: - - e3551e0a-a807-4014-a1bc-b44bec822500 + - 5a3789dd-8a69-4f53-91c4-8b41fa3c7ace Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2748,10 +3002,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -2760,7 +3014,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2779,15 +3033,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?expand=1 @@ -2796,7 +3050,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2815,15 +3069,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -2832,7 +3086,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2851,15 +3105,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?expand=1 @@ -2868,7 +3122,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2887,15 +3141,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -2904,7 +3158,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2923,14 +3177,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo?expand=1 @@ -2939,7 +3193,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2958,14 +3212,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?expand=1 @@ -2974,7 +3228,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2993,15 +3247,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?expand=1 @@ -3010,7 +3264,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3029,15 +3283,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo?expand=1 @@ -3046,7 +3300,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3065,14 +3319,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?requestid=1&user=maintenance_coord @@ -3093,7 +3347,7 @@ http_interactions: headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3128,7 +3382,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:08 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -3137,7 +3391,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3156,15 +3410,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: get uri: http://backend:5352/source/openSUSE:11.4:Update/cacti.openSUSE_11.4_Update @@ -3198,7 +3452,7 @@ http_interactions: package 'cacti.openSUSE_11.4_Update' does not exist
404 package 'cacti.openSUSE_11.4_Update' does not exist
- recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update/_meta?user=maintenance_coord @@ -3238,7 +3492,7 @@ http_interactions: cacti.openSUSE_11.4_Update - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=branch&missingok=1&noservice=1&opackage=cacti.openSUSE_11.4_Update&oproject=openSUSE:11.4:Update&user=maintenance_coord @@ -3266,19 +3520,19 @@ http_interactions: Connection: - close Content-Length: - - '217' + - '221' body: encoding: UTF-8 string: | - + 1062589906c6eb53389501c6582ca7fe unknown - + maintenance_coord - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update/_meta?user=maintenance_coord @@ -3318,7 +3572,7 @@ http_interactions: cacti.openSUSE_11.4_Update - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update @@ -3344,15 +3598,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '506' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?view=info @@ -3361,7 +3615,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3380,16 +3634,16 @@ http_interactions: Connection: - close Content-Length: - - '461' + - '465' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update @@ -3398,7 +3652,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3417,15 +3671,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '506' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -3453,18 +3707,18 @@ http_interactions: Connection: - close Content-Length: - - '396' + - '398' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -3487,12 +3741,12 @@ http_interactions: headers: Content-Type: - text/xml + Content-Length: + - '406' Cache-Control: - no-cache Connection: - close - Content-Length: - - '406' body: encoding: UTF-8 string: | @@ -3503,7 +3757,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:05 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update/_meta?user=maintenance_coord @@ -3549,7 +3803,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update @@ -3558,7 +3812,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3577,15 +3831,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '506' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?user=maintenance_coord @@ -3604,14 +3858,14 @@ http_interactions: - - + + i586 headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3646,12 +3900,12 @@ http_interactions: - - + + i586 - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=copy&comment=Maintenance%20incident%20copy%20from%20project%20home:tom:branches:Update&expand=1&keeplink=1&opackage=cacti.openSUSE_11.4_Update&oproject=home:tom:branches:Update&requestid=1&user=maintenance_coord&withacceptinfo=1 @@ -3662,7 +3916,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3681,20 +3935,20 @@ http_interactions: Connection: - close Content-Length: - - '488' + - '494' body: encoding: UTF-8 string: | - - 14b8a2fd2c12dbf44b613ba316ca6da6 + + 2f1b1630207fd286cc8a0b7da45695b4 unknown - + maintenance_coord Maintenance incident copy from project home:tom:branches:Update 1 - + - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update/_meta?user=maintenance_coord @@ -3740,7 +3994,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update @@ -3766,17 +4020,17 @@ http_interactions: Connection: - close Content-Length: - - '692' + - '696' body: encoding: UTF-8 string: | - - + + - + - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?view=info @@ -3785,7 +4039,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3804,16 +4058,16 @@ http_interactions: Connection: - close Content-Length: - - '461' + - '465' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update @@ -3822,7 +4076,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3841,17 +4095,17 @@ http_interactions: Connection: - close Content-Length: - - '692' + - '696' body: encoding: UTF-8 string: | - - + + - + - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -3879,18 +4133,18 @@ http_interactions: Connection: - close Content-Length: - - '396' + - '398' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -3922,14 +4176,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?comment=maintenance_incident%20request%201&requestid=1&user=maintenance_coord @@ -3948,14 +4202,14 @@ http_interactions: - - + + i586 headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3990,12 +4244,12 @@ http_interactions: - - + + i586 - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/patchinfo/_meta?user=maintenance_coord @@ -4051,7 +4305,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/patchinfo/_patchinfo?comment=generated%20by%20request%20id%201%20accept%20call&user=maintenance_coord @@ -4061,13 +4315,13 @@ http_interactions: recommended low - user_6 - Id sunt consequatur. Adipisci natus fuga. Ut voluptatem sunt. - Id sunt consequatur. Adipisci natus fuga. Ut voluptatem sunt. + user_14 + Voluptatem dolorem similique. Maiores omnis sed. Vel et natus. + Voluptatem dolorem similique. Maiores omnis sed. Vel et natus. headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4086,19 +4340,19 @@ http_interactions: Connection: - close Content-Length: - - '254' + - '256' body: encoding: UTF-8 string: | - - e4ea434223ebf5f39c31efb2d840f028 + + c6ed9ecd7ca9b5ddd9c0e076d169381a unknown - + maintenance_coord generated by request id 1 accept call - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/patchinfo/_meta?user=maintenance_coord @@ -4154,7 +4408,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo @@ -4180,14 +4434,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo?view=info @@ -4196,7 +4450,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4215,14 +4469,14 @@ http_interactions: Connection: - close Content-Length: - - '185' + - '187' body: encoding: UTF-8 string: | - + _patchinfo - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo @@ -4231,7 +4485,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4250,14 +4504,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo/_patchinfo @@ -4279,7 +4533,7 @@ http_interactions: Content-Type: - application/octet-stream Content-Length: - - '299' + - '302' Cache-Control: - no-cache Connection: @@ -4290,11 +4544,11 @@ http_interactions: recommended low - user_6 - Id sunt consequatur. Adipisci natus fuga. Ut voluptatem sunt. - Id sunt consequatur. Adipisci natus fuga. Ut voluptatem sunt. + user_14 + Voluptatem dolorem similique. Maiores omnis sed. Vel et natus. + Voluptatem dolorem similique. Maiores omnis sed. Vel et natus. - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -4303,7 +4557,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4322,15 +4576,15 @@ http_interactions: Connection: - close Content-Length: - - '308' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: get uri: http://backend:5352/source/openSUSE:11.5:Update/cacti.openSUSE_11.5_Update @@ -4364,7 +4618,7 @@ http_interactions: package 'cacti.openSUSE_11.5_Update' does not exist
404 package 'cacti.openSUSE_11.5_Update' does not exist
- recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update/_meta?user=maintenance_coord @@ -4404,7 +4658,7 @@ http_interactions: cacti.openSUSE_11.5_Update - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=branch&missingok=1&noservice=1&opackage=cacti.openSUSE_11.5_Update&oproject=openSUSE:11.5:Update&user=maintenance_coord @@ -4432,19 +4686,19 @@ http_interactions: Connection: - close Content-Length: - - '217' + - '221' body: encoding: UTF-8 string: | - + 45cd08fc62522ad1df0dcc0f3443e482 unknown - + maintenance_coord - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update/_meta?user=maintenance_coord @@ -4484,7 +4738,7 @@ http_interactions: cacti.openSUSE_11.5_Update - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update @@ -4510,15 +4764,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '506' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?view=info @@ -4527,7 +4781,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4546,16 +4800,16 @@ http_interactions: Connection: - close Content-Length: - - '461' + - '465' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update @@ -4564,7 +4818,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4583,15 +4837,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '506' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:09 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -4619,18 +4873,18 @@ http_interactions: Connection: - close Content-Length: - - '396' + - '398' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -4653,12 +4907,12 @@ http_interactions: headers: Content-Type: - text/xml + Content-Length: + - '406' Cache-Control: - no-cache Connection: - close - Content-Length: - - '406' body: encoding: UTF-8 string: | @@ -4669,7 +4923,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update/_meta?user=maintenance_coord @@ -4715,7 +4969,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update @@ -4724,7 +4978,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4743,15 +4997,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '506' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:06 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?user=maintenance_coord @@ -4770,19 +5024,19 @@ http_interactions: - - + + i586 - - + + i586 headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4817,17 +5071,17 @@ http_interactions: - - + + i586 - - + + i586 - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=copy&comment=Maintenance%20incident%20copy%20from%20project%20home:tom:branches:Update&expand=1&keeplink=1&opackage=cacti.openSUSE_11.5_Update&oproject=home:tom:branches:Update&requestid=1&user=maintenance_coord&withacceptinfo=1 @@ -4838,7 +5092,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4857,20 +5111,20 @@ http_interactions: Connection: - close Content-Length: - - '488' + - '494' body: encoding: UTF-8 string: | - - 2717d8a7686fcb9d82b7d87f0ac1b180 + + 69fb9695240cda6bb28c6194ef0d38ce unknown - + maintenance_coord Maintenance incident copy from project home:tom:branches:Update 1 - + - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update/_meta?user=maintenance_coord @@ -4916,7 +5170,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update @@ -4942,17 +5196,17 @@ http_interactions: Connection: - close Content-Length: - - '692' + - '696' body: encoding: UTF-8 string: | - - + + - + - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?view=info @@ -4961,7 +5215,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4980,16 +5234,16 @@ http_interactions: Connection: - close Content-Length: - - '461' + - '465' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update @@ -4998,7 +5252,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5017,17 +5271,17 @@ http_interactions: Connection: - close Content-Length: - - '692' + - '696' body: encoding: UTF-8 string: | - - + + - + - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -5055,18 +5309,18 @@ http_interactions: Connection: - close Content-Length: - - '396' + - '398' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -5098,14 +5352,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?comment=maintenance_incident%20request%201&requestid=1&user=maintenance_coord @@ -5124,19 +5378,19 @@ http_interactions: - - + + i586 - - + + i586 headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5171,17 +5425,17 @@ http_interactions: - - + + i586 - - + + i586 - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -5190,7 +5444,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5209,14 +5463,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/patchinfo?cmd=copy&comment=Maintenance%20incident%20copy%20from%20project%20home:tom:branches:Update&expand=1&keeplink=1&opackage=patchinfo&oproject=home:tom:branches:Update&requestid=1&user=maintenance_coord&withacceptinfo=1 @@ -5227,7 +5481,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5246,20 +5500,20 @@ http_interactions: Connection: - close Content-Length: - - '401' + - '404' body: encoding: UTF-8 string: | - + e45d013f24b032bd54480cfc08ca5401 unknown - + maintenance_coord Maintenance incident copy from project home:tom:branches:Update 1 - + - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/patchinfo/_meta?user=maintenance_coord @@ -5315,7 +5569,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo @@ -5341,14 +5595,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo?view=info @@ -5357,7 +5611,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5376,14 +5630,14 @@ http_interactions: Connection: - close Content-Length: - - '185' + - '187' body: encoding: UTF-8 string: | - + _patchinfo - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo @@ -5392,7 +5646,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5411,14 +5665,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo/_patchinfo @@ -5455,7 +5709,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?comment=maintenance_incident%20request%201&requestid=1&user=maintenance_coord @@ -5474,19 +5728,19 @@ http_interactions: - - + + i586 - - + + i586 headers: X-Request-Id: - - 39568e82-74eb-4d85-8d21-e440b61fd19f + - bfe9f2a1-0156-483c-a4ce-2f1e657812a2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5521,17 +5775,17 @@ http_interactions: - - + + i586 - - + + i586 - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -5540,7 +5794,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 517c8ffb-07aa-442c-9b8c-e46764204991 + - 24ad7170-5693-42d4-b4ba-2d90fc0d5083 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5563,10 +5817,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -5575,7 +5829,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 517c8ffb-07aa-442c-9b8c-e46764204991 + - 24ad7170-5693-42d4-b4ba-2d90fc0d5083 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5598,10 +5852,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status @@ -5610,7 +5864,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 517c8ffb-07aa-442c-9b8c-e46764204991 + - 24ad7170-5693-42d4-b4ba-2d90fc0d5083 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5633,13 +5887,13 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: post - uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cacheonly=1&cmd=diff&filelimit=10000&orev=c87739c700845785205cfcc81d12a272&rev=5cf100285a778f0b4d11f12dfdb95409&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cacheonly=1&cmd=diff&filelimit=10000&orev=c87739c700845785205cfcc81d12a272&rev=1f31d1589b28b0ed1b3a454873783507&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -5647,7 +5901,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 517c8ffb-07aa-442c-9b8c-e46764204991 + - 24ad7170-5693-42d4-b4ba-2d90fc0d5083 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5674,10 +5928,10 @@ http_interactions: diff not yet in cache
412 diff not yet in cache
- recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: post - uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=diff&filelimit=10000&orev=c87739c700845785205cfcc81d12a272&rev=5cf100285a778f0b4d11f12dfdb95409&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cacheonly=1&cmd=diff&filelimit=10000&orev=c87739c700845785205cfcc81d12a272&rev=1f31d1589b28b0ed1b3a454873783507&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -5685,7 +5939,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 517c8ffb-07aa-442c-9b8c-e46764204991 + - 24ad7170-5693-42d4-b4ba-2d90fc0d5083 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5694,8 +5948,8 @@ http_interactions: - Ruby response: status: - code: 200 - message: OK + code: 412 + message: diff not yet in cache headers: Content-Type: - text/xml @@ -5704,33 +5958,15 @@ http_interactions: Connection: - close Content-Length: - - '930' + - '120' body: encoding: UTF-8 string: | - - - - - - - @@ -0,0 +1,1 @@ - +boo#12345 - \ No newline at end of file - - - - - @@ -0,0 +1,1 @@ - +Hic nesciunt in. Omnis voluptatem aspernatur. Dolorum delectus officia. - \ No newline at end of file - - - - - - - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + + diff not yet in cache +
412 diff not yet in cache
+
+ recorded_at: Tue, 19 Mar 2024 21:51:10 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/patchinfo @@ -5739,7 +5975,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 517c8ffb-07aa-442c-9b8c-e46764204991 + - 24ad7170-5693-42d4-b4ba-2d90fc0d5083 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5758,17 +5994,17 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:11 GMT - request: method: get - uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo?rev=3 + uri: http://backend:5352/source/home:tom:branches:Update/patchinfo/_patchinfo?rev=52 body: encoding: US-ASCII string: '' @@ -5802,7 +6038,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:07 GMT + recorded_at: Tue, 19 Mar 2024 21:51:11 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -5811,7 +6047,7 @@ http_interactions: string: '' headers: X-Request-Id: - - e94ff74e-d1aa-4e83-bc11-4f2de3d952e2 + - fcb59159-25fd-441f-91e9-73739760190a Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5834,10 +6070,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:08 GMT + recorded_at: Tue, 19 Mar 2024 21:51:11 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -5846,7 +6082,7 @@ http_interactions: string: '' headers: X-Request-Id: - - e94ff74e-d1aa-4e83-bc11-4f2de3d952e2 + - fcb59159-25fd-441f-91e9-73739760190a Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5869,10 +6105,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:08 GMT + recorded_at: Tue, 19 Mar 2024 21:51:11 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status @@ -5881,7 +6117,7 @@ http_interactions: string: '' headers: X-Request-Id: - - e94ff74e-d1aa-4e83-bc11-4f2de3d952e2 + - fcb59159-25fd-441f-91e9-73739760190a Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -5904,8 +6140,8 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:08 GMT + recorded_at: Tue, 19 Mar 2024 21:51:11 GMT recorded_with: VCR 6.2.0 diff --git a/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_without_patchinfo/displays_information_on_type_of_request.yml b/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_without_patchinfo/displays_information_on_type_of_request.yml index 530f64e9c8e..aa539c649b4 100644 --- a/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_without_patchinfo/displays_information_on_type_of_request.yml +++ b/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_without_patchinfo/displays_information_on_type_of_request.yml @@ -2,14 +2,14 @@ http_interactions: - request: method: put - uri: http://backend:5352/source/home:user_9/_meta?user=user_9 + uri: http://backend:5352/source/home:user_1/_meta?user=user_1 body: encoding: UTF-8 string: | - + <description/> - <person userid="user_9" role="maintainer"/> + <person userid="user_1" role="maintainer"/> </project> headers: Accept-Encoding: @@ -34,20 +34,20 @@ http_interactions: body: encoding: UTF-8 string: | - <project name="home:user_9"> + <project name="home:user_1"> <title> - + - recorded_at: Fri, 15 Mar 2024 17:30:15 GMT + recorded_at: Tue, 19 Mar 2024 21:50:30 GMT - request: method: put - uri: http://backend:5352/source/home:tom:branches:Update/_meta?user=user_9 + uri: http://backend:5352/source/home:tom:branches:Update/_meta?user=user_1 body: encoding: UTF-8 string: | - Beneath the Bleeding + The Wealth of Nations headers: @@ -69,25 +69,25 @@ http_interactions: Connection: - close Content-Length: - - '121' + - '122' body: encoding: UTF-8 string: | - Beneath the Bleeding + The Wealth of Nations - recorded_at: Fri, 15 Mar 2024 17:30:16 GMT + recorded_at: Tue, 19 Mar 2024 21:50:35 GMT - request: method: put - uri: http://backend:5352/source/home:tom:branches:Update/_meta?user=user_9 + uri: http://backend:5352/source/home:tom:branches:Update/_meta?user=user_1 body: encoding: UTF-8 string: | - Beneath the Bleeding + The Wealth of Nations - + i586 @@ -115,22 +115,22 @@ http_interactions: encoding: UTF-8 string: | - Beneath the Bleeding + The Wealth of Nations - + i586 - recorded_at: Fri, 15 Mar 2024 17:30:16 GMT + recorded_at: Tue, 19 Mar 2024 21:50:35 GMT - request: method: put - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/_meta?user=user_9 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/_meta?user=user_1 body: encoding: UTF-8 string: | - Great Work of Time - Accusamus quaerat fugit id. + The Wealth of Nations + Eaque modi adipisci voluptas. headers: Accept-Encoding: @@ -151,21 +151,21 @@ http_interactions: Connection: - close Content-Length: - - '183' + - '188' body: encoding: UTF-8 string: | - Great Work of Time - Accusamus quaerat fugit id. + The Wealth of Nations + Eaque modi adipisci voluptas. - recorded_at: Fri, 15 Mar 2024 17:30:16 GMT + recorded_at: Tue, 19 Mar 2024 21:50:35 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/_config body: encoding: UTF-8 - string: Est sit aut. Quod quia quis. Et necessitatibus sapiente. + string: Soluta quis cum. Vitae fugiat eveniet. Praesentium non commodi. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -185,19 +185,19 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 913ffcf1a617d8186b4df37cccf759f3 + + dbe9c1d67b9a2c3f65b91f8066d015a4 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:16 GMT + recorded_at: Tue, 19 Mar 2024 21:50:35 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/DUMMY_FILE @@ -223,28 +223,28 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - 913ffcf1a617d8186b4df37cccf759f3 + + dbe9c1d67b9a2c3f65b91f8066d015a4 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:16 GMT + recorded_at: Tue, 19 Mar 2024 21:50:35 GMT - request: method: put - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/_meta?user=user_9 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/_meta?user=user_1 body: encoding: UTF-8 string: | - Moab Is My Washpot - Est nobis et dolorum. + Have His Carcase + Omnis earum occaecati dolor. headers: Accept-Encoding: @@ -265,21 +265,21 @@ http_interactions: Connection: - close Content-Length: - - '177' + - '182' body: encoding: UTF-8 string: | - Moab Is My Washpot - Est nobis et dolorum. + Have His Carcase + Omnis earum occaecati dolor. - recorded_at: Fri, 15 Mar 2024 17:30:16 GMT + recorded_at: Tue, 19 Mar 2024 21:50:35 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/_config body: encoding: UTF-8 - string: Quo est eveniet. Et unde totam. Corrupti nesciunt quaerat. + string: Ut rerum quia. Reprehenderit magni in. Veritatis nisi inventore. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -299,19 +299,19 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 561afd57aa0689e75a5174e3ec53ce50 + + 2d5e86b621e19231e390a472736a52b0 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:16 GMT + recorded_at: Tue, 19 Mar 2024 21:50:35 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/DUMMY_FILE @@ -337,27 +337,27 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - 561afd57aa0689e75a5174e3ec53ce50 + + 2d5e86b621e19231e390a472736a52b0 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:16 GMT + recorded_at: Tue, 19 Mar 2024 21:50:35 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_9 + uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_1 body: encoding: UTF-8 string: | - The Man Within + The Parliament of Man headers: @@ -379,25 +379,25 @@ http_interactions: Connection: - close Content-Length: - - '104' + - '111' body: encoding: UTF-8 string: | - The Man Within + The Parliament of Man - recorded_at: Fri, 15 Mar 2024 17:30:16 GMT + recorded_at: Tue, 19 Mar 2024 21:50:35 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_9 + uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_1 body: encoding: UTF-8 string: | - The Man Within + The Parliament of Man - + i586 @@ -420,27 +420,27 @@ http_interactions: Connection: - close Content-Length: - - '178' + - '184' body: encoding: UTF-8 string: | - The Man Within + The Parliament of Man - + i586 - recorded_at: Fri, 15 Mar 2024 17:30:16 GMT + recorded_at: Tue, 19 Mar 2024 21:50:35 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/cacti/_meta?user=user_9 + uri: http://backend:5352/source/openSUSE:11.4/cacti/_meta?user=user_1 body: encoding: UTF-8 string: | - The Wind's Twelve Quarters - Asperiores impedit soluta dignissimos. + The Heart Is Deceitful Above All Things + Ipsum non odit praesentium. headers: Accept-Encoding: @@ -461,21 +461,22 @@ http_interactions: Connection: - close Content-Length: - - '170' + - '172' body: encoding: UTF-8 string: | - The Wind's Twelve Quarters - Asperiores impedit soluta dignissimos. + The Heart Is Deceitful Above All Things + Ipsum non odit praesentium. - recorded_at: Fri, 15 Mar 2024 17:30:16 GMT + recorded_at: Tue, 19 Mar 2024 21:50:35 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.4/cacti/_config body: encoding: UTF-8 - string: Reiciendis sunt repellat. Qui explicabo laboriosam. Culpa corrupti reiciendis. + string: Suscipit doloremque temporibus. Nihil aperiam ipsum. Consequatur sit + dolor. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -495,25 +496,25 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 8471aaf84ba84929446eee206f85d649 + + 7f0c4ce7f368650485ee908ac0e81fc4 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:16 GMT + recorded_at: Tue, 19 Mar 2024 21:50:35 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.4/cacti/somefile.txt body: encoding: UTF-8 - string: Nesciunt exercitationem excepturi. Error voluptatem aut. Porro sit incidunt. + string: Deserunt aut harum. In quidem sed. Optio ipsum minima. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -533,27 +534,27 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - cd67cd8121c5e1daebce504445f52c83 + + b6c0ac22cb456137052b00c8b028fc0a unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:16 GMT + recorded_at: Tue, 19 Mar 2024 21:50:35 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_9 + uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_1 body: encoding: UTF-8 string: | - A Time to Kill + Cover Her Face headers: @@ -580,13 +581,13 @@ http_interactions: encoding: UTF-8 string: | - A Time to Kill + Cover Her Face - recorded_at: Fri, 15 Mar 2024 17:30:16 GMT + recorded_at: Tue, 19 Mar 2024 21:50:35 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_project/_attribute?meta=1&user=user_9 + uri: http://backend:5352/source/openSUSE:11.4:Update/_project/_attribute?meta=1&user=user_1 body: encoding: UTF-8 string: | @@ -612,21 +613,21 @@ http_interactions: Connection: - close Content-Length: - - '169' + - '170' body: encoding: UTF-8 string: | - - 3ba78d8d6c5fb6d8ab8595de70c86af3 - - user_9 + + 0a9895ae9ac6e51806441798e2490e54 + + user_1 - recorded_at: Fri, 15 Mar 2024 17:30:16 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_project/_attribute?meta=1&user=user_9 + uri: http://backend:5352/source/openSUSE:11.4/_project/_attribute?meta=1&user=user_1 body: encoding: UTF-8 string: | @@ -654,26 +655,26 @@ http_interactions: Connection: - close Content-Length: - - '169' + - '170' body: encoding: UTF-8 string: | - - 27885ee596f30ce4442331f0cd7b4c33 - - user_9 + + 2b9ff61f48440b626093c003589cee34 + + user_1 - recorded_at: Fri, 15 Mar 2024 17:30:16 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_9 + uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_1 body: encoding: UTF-8 string: | - A Time to Kill + Cover Her Face @@ -701,19 +702,19 @@ http_interactions: encoding: UTF-8 string: | - A Time to Kill + Cover Her Face - recorded_at: Fri, 15 Mar 2024 17:30:16 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_9 + uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_1 body: encoding: UTF-8 string: | - The Cricket on the Hearth + Mother Night headers: @@ -735,25 +736,25 @@ http_interactions: Connection: - close Content-Length: - - '115' + - '102' body: encoding: UTF-8 string: | - The Cricket on the Hearth + Mother Night - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_9 + uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_1 body: encoding: UTF-8 string: | - The Cricket on the Hearth + Mother Night - + i586 @@ -776,27 +777,27 @@ http_interactions: Connection: - close Content-Length: - - '189' + - '175' body: encoding: UTF-8 string: | - The Cricket on the Hearth + Mother Night - + i586 - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/cacti/_meta?user=user_9 + uri: http://backend:5352/source/openSUSE:11.5/cacti/_meta?user=user_1 body: encoding: UTF-8 string: | - The Yellow Meads of Asphodel - Officiis quis error eveniet. + A Summer Bird-Cage + Natus sed modi repellendus. headers: Accept-Encoding: @@ -817,21 +818,21 @@ http_interactions: Connection: - close Content-Length: - - '162' + - '151' body: encoding: UTF-8 string: | - The Yellow Meads of Asphodel - Officiis quis error eveniet. + A Summer Bird-Cage + Natus sed modi repellendus. - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.5/cacti/_config body: encoding: UTF-8 - string: Quos consequatur quia. Quaerat dicta sequi. Dolorem voluptas qui. + string: Vel praesentium est. Id sit aspernatur. Accusantium amet reprehenderit. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -851,25 +852,25 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '211' body: encoding: UTF-8 string: | - - 60e070b969f369ddf3ad5d23d98b0a66 + + f0610e72255b529fb4da85b2402b8aba unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.5/cacti/somefile.txt body: encoding: UTF-8 - string: Dolores ipsum quas. Voluptatum aut quos. Minus non aut. + string: Aliquid sit non. Sed minus corrupti. Recusandae exercitationem ipsum. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -889,27 +890,27 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - df151a24df05026447fa82b5c3c31f0c + + 2dbe6695e0df7de47b14ef1b59d109d2 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_9 + uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_1 body: encoding: UTF-8 string: | - The Man Within + A Farewell to Arms headers: @@ -931,18 +932,18 @@ http_interactions: Connection: - close Content-Length: - - '138' + - '142' body: encoding: UTF-8 string: | - The Man Within + A Farewell to Arms - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_project/_attribute?meta=1&user=user_9 + uri: http://backend:5352/source/openSUSE:11.5:Update/_project/_attribute?meta=1&user=user_1 body: encoding: UTF-8 string: | @@ -968,21 +969,21 @@ http_interactions: Connection: - close Content-Length: - - '169' + - '170' body: encoding: UTF-8 string: | - - 0010dbda8f4c24cc3201edae79ed1554 - - user_9 + + 7c13b8176ed003db82f237419c55a464 + + user_1 - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_project/_attribute?meta=1&user=user_9 + uri: http://backend:5352/source/openSUSE:11.5/_project/_attribute?meta=1&user=user_1 body: encoding: UTF-8 string: | @@ -1010,26 +1011,26 @@ http_interactions: Connection: - close Content-Length: - - '169' + - '170' body: encoding: UTF-8 string: | - - 3dbde77c3042b7461a5a2bdf51a2c637 - - user_9 + + 6951d4060192c56a8cb03dfb9c0afe47 + + user_1 - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_9 + uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_1 body: encoding: UTF-8 string: | - The Man Within + A Farewell to Arms @@ -1052,16 +1053,16 @@ http_interactions: Connection: - close Content-Length: - - '172' + - '176' body: encoding: UTF-8 string: | - The Man Within + A Farewell to Arms - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: put uri: http://backend:5352/source/home:maintenance_coord/_meta?user=maintenance_coord @@ -1101,10 +1102,10 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_9 + uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_1 body: encoding: UTF-8 string: | @@ -1147,10 +1148,10 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_project/_attribute?meta=1&user=user_9 + uri: http://backend:5352/source/MaintenanceProject/_project/_attribute?meta=1&user=user_1 body: encoding: UTF-8 string: | @@ -1176,21 +1177,21 @@ http_interactions: Connection: - close Content-Length: - - '169' + - '170' body: encoding: UTF-8 string: | - + b5ac59f5d2a72c7f98586b6c1dbf55de - - user_9 + + user_1 - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_9 + uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_1 body: encoding: UTF-8 string: | @@ -1233,7 +1234,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1259,15 +1260,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1293,18 +1294,18 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=10&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=170&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1329,13 +1330,13 @@ http_interactions: Connection: - close Content-Length: - - '820' + - '828' body: encoding: UTF-8 string: | - + - + @@ -1345,9 +1346,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Est sit aut. Quod quia quis. Et necessitatibus sapiente. + +Soluta quis cum. Vitae fugiat eveniet. Praesentium non commodi. \ No newline at end of file @@ -1355,7 +1356,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -1381,15 +1382,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -1415,18 +1416,18 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=10&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=170&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1451,13 +1452,13 @@ http_interactions: Connection: - close Content-Length: - - '822' + - '829' body: encoding: UTF-8 string: | - + - + @@ -1467,9 +1468,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Quo est eveniet. Et unde totam. Corrupti nesciunt quaerat. + +Ut rerum quia. Reprehenderit magni in. Veritatis nisi inventore. \ No newline at end of file @@ -1477,7 +1478,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:36 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -1486,7 +1487,7 @@ http_interactions: string: '' headers: X-Request-Id: - - a4106cf3-d73b-47c4-bc43-f170fc2ca91d + - a1ddbf26-782f-486d-bf59-230f3d0926a4 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1505,14 +1506,14 @@ http_interactions: Connection: - close Content-Length: - - '234' + - '233' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:37 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -1521,7 +1522,7 @@ http_interactions: string: '' headers: X-Request-Id: - - a4106cf3-d73b-47c4-bc43-f170fc2ca91d + - a1ddbf26-782f-486d-bf59-230f3d0926a4 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1540,14 +1541,14 @@ http_interactions: Connection: - close Content-Length: - - '234' + - '233' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:37 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1556,7 +1557,7 @@ http_interactions: string: '' headers: X-Request-Id: - - a4106cf3-d73b-47c4-bc43-f170fc2ca91d + - a1ddbf26-782f-486d-bf59-230f3d0926a4 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1575,15 +1576,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:37 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1592,7 +1593,7 @@ http_interactions: string: '' headers: X-Request-Id: - - a4106cf3-d73b-47c4-bc43-f170fc2ca91d + - a1ddbf26-782f-486d-bf59-230f3d0926a4 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1611,18 +1612,18 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:37 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=10&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=170&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1630,7 +1631,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - a4106cf3-d73b-47c4-bc43-f170fc2ca91d + - a1ddbf26-782f-486d-bf59-230f3d0926a4 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1645,7 +1646,7 @@ http_interactions: Content-Type: - text/xml Content-Length: - - '820' + - '828' Cache-Control: - no-cache Connection: @@ -1653,9 +1654,9 @@ http_interactions: body: encoding: UTF-8 string: | - + - + @@ -1665,9 +1666,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Est sit aut. Quod quia quis. Et necessitatibus sapiente. + +Soluta quis cum. Vitae fugiat eveniet. Praesentium non commodi. \ No newline at end of file @@ -1675,7 +1676,135 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:17 GMT + recorded_at: Tue, 19 Mar 2024 21:50:37 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - a1ddbf26-782f-486d-bf59-230f3d0926a4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:50:37 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - a1ddbf26-782f-486d-bf59-230f3d0926a4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:50:37 GMT +- request: + method: post + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=170&tarlimit=10000&view=xml&withissues=1 + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + X-Request-Id: + - a1ddbf26-782f-486d-bf59-230f3d0926a4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Content-Length: + - '828' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: | + + + + + + + @@ -0,0 +1,1 @@ + +boo#12345 + \ No newline at end of file + + + + + @@ -0,0 +1,1 @@ + +Soluta quis cum. Vitae fugiat eveniet. Praesentium non commodi. + \ No newline at end of file + + + + + + + recorded_at: Tue, 19 Mar 2024 21:50:37 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -1684,7 +1813,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b93e9d2c-399a-4438-8793-69f5a4e85d8c + - 92b4a65b-2cd6-483e-9a0f-eb47c4c074b1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1703,14 +1832,14 @@ http_interactions: Connection: - close Content-Length: - - '234' + - '233' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:18 GMT + recorded_at: Tue, 19 Mar 2024 21:50:37 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -1719,7 +1848,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b93e9d2c-399a-4438-8793-69f5a4e85d8c + - 92b4a65b-2cd6-483e-9a0f-eb47c4c074b1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1738,12 +1867,12 @@ http_interactions: Connection: - close Content-Length: - - '234' + - '233' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:18 GMT + recorded_at: Tue, 19 Mar 2024 21:50:37 GMT recorded_with: VCR 6.2.0 diff --git a/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_without_patchinfo/when_accepting_request/creates_maintenance_incident_project.yml b/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_without_patchinfo/when_accepting_request/creates_maintenance_incident_project.yml index c544d682984..b2640a3f832 100644 --- a/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_without_patchinfo/when_accepting_request/creates_maintenance_incident_project.yml +++ b/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_without_patchinfo/when_accepting_request/creates_maintenance_incident_project.yml @@ -2,14 +2,14 @@ http_interactions: - request: method: put - uri: http://backend:5352/source/home:user_13/_meta?user=user_13 + uri: http://backend:5352/source/home:user_3/_meta?user=user_3 body: encoding: UTF-8 string: | - + <description/> - <person userid="user_13" role="maintainer"/> + <person userid="user_3" role="maintainer"/> </project> headers: Accept-Encoding: @@ -30,24 +30,24 @@ http_interactions: Connection: - close Content-Length: - - '136' + - '134' body: encoding: UTF-8 string: | - <project name="home:user_13"> + <project name="home:user_3"> <title> - + - recorded_at: Fri, 15 Mar 2024 17:30:25 GMT + recorded_at: Tue, 19 Mar 2024 21:50:38 GMT - request: method: put - uri: http://backend:5352/source/home:tom:branches:Update/_meta?user=user_13 + uri: http://backend:5352/source/home:tom:branches:Update/_meta?user=user_3 body: encoding: UTF-8 string: | - To Sail Beyond the Sunset + Vanity Fair headers: @@ -69,25 +69,25 @@ http_interactions: Connection: - close Content-Length: - - '126' + - '112' body: encoding: UTF-8 string: | - To Sail Beyond the Sunset + Vanity Fair - recorded_at: Fri, 15 Mar 2024 17:30:25 GMT + recorded_at: Tue, 19 Mar 2024 21:50:38 GMT - request: method: put - uri: http://backend:5352/source/home:tom:branches:Update/_meta?user=user_13 + uri: http://backend:5352/source/home:tom:branches:Update/_meta?user=user_3 body: encoding: UTF-8 string: | - To Sail Beyond the Sunset + Vanity Fair - + i586 @@ -110,27 +110,27 @@ http_interactions: Connection: - close Content-Length: - - '200' + - '185' body: encoding: UTF-8 string: | - To Sail Beyond the Sunset + Vanity Fair - + i586 - recorded_at: Fri, 15 Mar 2024 17:30:25 GMT + recorded_at: Tue, 19 Mar 2024 21:50:38 GMT - request: method: put - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/_meta?user=user_13 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/_meta?user=user_3 body: encoding: UTF-8 string: | - A Many-Splendoured Thing - Distinctio a inventore porro. + A Catskill Eagle + Placeat ut doloremque eaque. headers: Accept-Encoding: @@ -151,21 +151,21 @@ http_interactions: Connection: - close Content-Length: - - '191' + - '182' body: encoding: UTF-8 string: | - A Many-Splendoured Thing - Distinctio a inventore porro. + A Catskill Eagle + Placeat ut doloremque eaque. - recorded_at: Fri, 15 Mar 2024 17:30:25 GMT + recorded_at: Tue, 19 Mar 2024 21:50:38 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/_config body: encoding: UTF-8 - string: Cupiditate cum iusto. Fugit perferendis iusto. Ut deserunt aut. + string: Ad recusandae minus. Autem est vitae. Qui quia doloribus. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -185,19 +185,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - 92fa8620f65c54ab473d7277dcd315d3 + + acb5e6fc3a87a43be0c91969d5493838 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:25 GMT + recorded_at: Tue, 19 Mar 2024 21:50:38 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/DUMMY_FILE @@ -223,28 +223,28 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - 92fa8620f65c54ab473d7277dcd315d3 + + acb5e6fc3a87a43be0c91969d5493838 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:25 GMT + recorded_at: Tue, 19 Mar 2024 21:50:38 GMT - request: method: put - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/_meta?user=user_13 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/_meta?user=user_3 body: encoding: UTF-8 string: | - Where Angels Fear to Tread - Incidunt voluptatibus consectetur aut. + That Good Night + Veniam ipsam blanditiis voluptatem. headers: Accept-Encoding: @@ -265,21 +265,21 @@ http_interactions: Connection: - close Content-Length: - - '202' + - '188' body: encoding: UTF-8 string: | - Where Angels Fear to Tread - Incidunt voluptatibus consectetur aut. + That Good Night + Veniam ipsam blanditiis voluptatem. - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:38 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/_config body: encoding: UTF-8 - string: Fugit voluptates voluptas. Deserunt nihil vitae. In dolores sed. + string: Ullam dolore vitae. Voluptatem pariatur eum. Quia nesciunt quis. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -299,19 +299,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - 502f87819ddac5f15897953ba8506a64 + + 328b8f49df98d18ceb6085e97de9e6d1 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:38 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/DUMMY_FILE @@ -337,27 +337,27 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - 502f87819ddac5f15897953ba8506a64 + + 328b8f49df98d18ceb6085e97de9e6d1 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:38 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_13 + uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_3 body: encoding: UTF-8 string: | - The Wind's Twelve Quarters + Endless Night headers: @@ -379,25 +379,25 @@ http_interactions: Connection: - close Content-Length: - - '116' + - '103' body: encoding: UTF-8 string: | - The Wind's Twelve Quarters + Endless Night - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:38 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_13 + uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_3 body: encoding: UTF-8 string: | - The Wind's Twelve Quarters + Endless Night - + i586 @@ -420,27 +420,27 @@ http_interactions: Connection: - close Content-Length: - - '190' + - '176' body: encoding: UTF-8 string: | - The Wind's Twelve Quarters + Endless Night - + i586 - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/cacti/_meta?user=user_13 + uri: http://backend:5352/source/openSUSE:11.4/cacti/_meta?user=user_3 body: encoding: UTF-8 string: | - A Time of Gifts - Corrupti maiores eaque ipsum. + The Glory and the Dream + Temporibus ad dolores ut. headers: Accept-Encoding: @@ -461,21 +461,21 @@ http_interactions: Connection: - close Content-Length: - - '150' + - '154' body: encoding: UTF-8 string: | - A Time of Gifts - Corrupti maiores eaque ipsum. + The Glory and the Dream + Temporibus ad dolores ut. - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.4/cacti/_config body: encoding: UTF-8 - string: Neque facilis aut. Consequatur animi aliquam. Rerum quos aut. + string: Debitis ut voluptatem. Nemo cumque maxime. Et et repellat. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -495,25 +495,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - cea5d8590c1d39345b946d04b95371d3 + + 10b68ee5bd9de5eaf469c52aa3d95bbd unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.4/cacti/somefile.txt body: encoding: UTF-8 - string: Rerum sapiente magni. Ut provident et. Adipisci optio quo. + string: Rem similique odit. Quia ex quas. Ut temporibus accusantium. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -533,27 +533,27 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - 68baf4379cdc3fe4b7a4c426a5e4ba36 + + 6803ff9050c9c6536c2b9b3a580e6b55 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_13 + uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_3 body: encoding: UTF-8 string: | - Number the Stars + An Instant In The Wind headers: @@ -575,18 +575,18 @@ http_interactions: Connection: - close Content-Length: - - '140' + - '146' body: encoding: UTF-8 string: | - Number the Stars + An Instant In The Wind - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_project/_attribute?meta=1&user=user_13 + uri: http://backend:5352/source/openSUSE:11.4:Update/_project/_attribute?meta=1&user=user_3 body: encoding: UTF-8 string: | @@ -616,17 +616,17 @@ http_interactions: body: encoding: UTF-8 string: | - - db78bf2e0c985625a270ac4970f441f5 - - user_13 + + a1d2453b04855d811f96405fd3a4e5a7 + + user_3 - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_project/_attribute?meta=1&user=user_13 + uri: http://backend:5352/source/openSUSE:11.4/_project/_attribute?meta=1&user=user_3 body: encoding: UTF-8 string: | @@ -658,22 +658,22 @@ http_interactions: body: encoding: UTF-8 string: | - - 203629908e42a9feff31a55cc4998b43 - - user_13 + + 383d11fc0e258d014e63ca73950c4c1d + + user_3 - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_13 + uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_3 body: encoding: UTF-8 string: | - Number the Stars + An Instant In The Wind @@ -696,24 +696,24 @@ http_interactions: Connection: - close Content-Length: - - '174' + - '180' body: encoding: UTF-8 string: | - Number the Stars + An Instant In The Wind - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_13 + uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_3 body: encoding: UTF-8 string: | - The Soldier's Art + Recalled to Life headers: @@ -735,25 +735,25 @@ http_interactions: Connection: - close Content-Length: - - '107' + - '106' body: encoding: UTF-8 string: | - The Soldier's Art + Recalled to Life - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_13 + uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_3 body: encoding: UTF-8 string: | - The Soldier's Art + Recalled to Life - + i586 @@ -776,27 +776,27 @@ http_interactions: Connection: - close Content-Length: - - '181' + - '179' body: encoding: UTF-8 string: | - The Soldier's Art + Recalled to Life - + i586 - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/cacti/_meta?user=user_13 + uri: http://backend:5352/source/openSUSE:11.5/cacti/_meta?user=user_3 body: encoding: UTF-8 string: | - The Last Enemy - Odio laborum mollitia inventore. + The Daffodil Sky + Facere necessitatibus nostrum quam. headers: Accept-Encoding: @@ -817,22 +817,21 @@ http_interactions: Connection: - close Content-Length: - - '152' + - '157' body: encoding: UTF-8 string: | - The Last Enemy - Odio laborum mollitia inventore. + The Daffodil Sky + Facere necessitatibus nostrum quam. - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.5/cacti/_config body: encoding: UTF-8 - string: Quibusdam veniam reprehenderit. Repellendus architecto eligendi. Inventore - quam quidem. + string: Quo expedita hic. Voluptas aut officia. Sed est et. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -852,25 +851,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - f80538a38c0cb57a2133fa28ef8a06cd + + 427cf7df84a360ab4bcc29e16a920083 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.5/cacti/somefile.txt body: encoding: UTF-8 - string: Quo distinctio rerum. Sit iusto odio. Ipsam velit veniam. + string: Sit beatae qui. Quos aut voluptates. Repudiandae quos esse. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -890,27 +889,27 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - 7c9d75f68e1a4d9ef6d779e073f591ea + + fe4eb98bb5d0b165ec6fa1b87717c58e unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_13 + uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_3 body: encoding: UTF-8 string: | - The Moon by Night + In Dubious Battle headers: @@ -937,13 +936,13 @@ http_interactions: encoding: UTF-8 string: | - The Moon by Night + In Dubious Battle - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_project/_attribute?meta=1&user=user_13 + uri: http://backend:5352/source/openSUSE:11.5:Update/_project/_attribute?meta=1&user=user_3 body: encoding: UTF-8 string: | @@ -973,17 +972,17 @@ http_interactions: body: encoding: UTF-8 string: | - - 14f2a5d7a95fa7bebc5759f25e791dbc - - user_13 + + be299d45c71465d74c20bd088b07df1b + + user_3 - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_project/_attribute?meta=1&user=user_13 + uri: http://backend:5352/source/openSUSE:11.5/_project/_attribute?meta=1&user=user_3 body: encoding: UTF-8 string: | @@ -1015,22 +1014,22 @@ http_interactions: body: encoding: UTF-8 string: | - - adee25e59987c8468b4ddaaeb8bcd7c7 - - user_13 + + 9aeea74f2839697418fd68f4290a120d + + user_3 - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_13 + uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_3 body: encoding: UTF-8 string: | - The Moon by Night + In Dubious Battle @@ -1058,11 +1057,11 @@ http_interactions: encoding: UTF-8 string: | - The Moon by Night + In Dubious Battle - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: put uri: http://backend:5352/source/home:maintenance_coord/_meta?user=maintenance_coord @@ -1102,10 +1101,10 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_13 + uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_3 body: encoding: UTF-8 string: | @@ -1148,10 +1147,10 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_project/_attribute?meta=1&user=user_13 + uri: http://backend:5352/source/MaintenanceProject/_project/_attribute?meta=1&user=user_3 body: encoding: UTF-8 string: | @@ -1181,17 +1180,17 @@ http_interactions: body: encoding: UTF-8 string: | - + b5ac59f5d2a72c7f98586b6c1dbf55de - - user_13 + + user_3 - recorded_at: Fri, 15 Mar 2024 17:30:26 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_13 + uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_3 body: encoding: UTF-8 string: | @@ -1234,7 +1233,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:27 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1260,15 +1259,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:27 GMT + recorded_at: Tue, 19 Mar 2024 21:50:39 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1294,18 +1293,18 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:27 GMT + recorded_at: Tue, 19 Mar 2024 21:50:40 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=14&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=172&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1330,13 +1329,13 @@ http_interactions: Connection: - close Content-Length: - - '827' + - '822' body: encoding: UTF-8 string: | - + - + @@ -1346,9 +1345,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Cupiditate cum iusto. Fugit perferendis iusto. Ut deserunt aut. + +Ad recusandae minus. Autem est vitae. Qui quia doloribus. \ No newline at end of file @@ -1356,7 +1355,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:27 GMT + recorded_at: Tue, 19 Mar 2024 21:50:40 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -1382,15 +1381,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:27 GMT + recorded_at: Tue, 19 Mar 2024 21:50:40 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -1416,18 +1415,18 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:27 GMT + recorded_at: Tue, 19 Mar 2024 21:50:40 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=14&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=172&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1452,13 +1451,13 @@ http_interactions: Connection: - close Content-Length: - - '828' + - '829' body: encoding: UTF-8 string: | - + - + @@ -1468,9 +1467,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Fugit voluptates voluptas. Deserunt nihil vitae. In dolores sed. + +Ullam dolore vitae. Voluptatem pariatur eum. Quia nesciunt quis. \ No newline at end of file @@ -1478,7 +1477,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:27 GMT + recorded_at: Tue, 19 Mar 2024 21:50:40 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -1487,7 +1486,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 8aebde38-a731-453a-9898-344b37b9b413 + - b9bb5719-ecd6-4e0e-896b-362567eaad56 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1506,14 +1505,14 @@ http_interactions: Connection: - close Content-Length: - - '234' + - '233' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:27 GMT + recorded_at: Tue, 19 Mar 2024 21:50:40 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -1522,7 +1521,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 8aebde38-a731-453a-9898-344b37b9b413 + - b9bb5719-ecd6-4e0e-896b-362567eaad56 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1541,14 +1540,142 @@ http_interactions: Connection: - close Content-Length: - - '234' + - '233' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:27 GMT + recorded_at: Tue, 19 Mar 2024 21:50:40 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - b9bb5719-ecd6-4e0e-896b-362567eaad56 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:50:40 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - b9bb5719-ecd6-4e0e-896b-362567eaad56 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:50:40 GMT +- request: + method: post + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=172&tarlimit=10000&view=xml&withissues=1 + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + X-Request-Id: + - b9bb5719-ecd6-4e0e-896b-362567eaad56 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Content-Length: + - '822' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: | + + + + + + + @@ -0,0 +1,1 @@ + +boo#12345 + \ No newline at end of file + + + + + @@ -0,0 +1,1 @@ + +Ad recusandae minus. Autem est vitae. Qui quia doloribus. + \ No newline at end of file + + + + + + + recorded_at: Tue, 19 Mar 2024 21:50:40 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1557,7 +1684,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 8aebde38-a731-453a-9898-344b37b9b413 + - b9bb5719-ecd6-4e0e-896b-362567eaad56 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1576,15 +1703,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:27 GMT + recorded_at: Tue, 19 Mar 2024 21:50:40 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1593,7 +1720,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 8aebde38-a731-453a-9898-344b37b9b413 + - b9bb5719-ecd6-4e0e-896b-362567eaad56 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1612,18 +1739,18 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:27 GMT + recorded_at: Tue, 19 Mar 2024 21:50:40 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=14&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=172&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1631,7 +1758,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 8aebde38-a731-453a-9898-344b37b9b413 + - b9bb5719-ecd6-4e0e-896b-362567eaad56 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1646,7 +1773,7 @@ http_interactions: Content-Type: - text/xml Content-Length: - - '827' + - '822' Cache-Control: - no-cache Connection: @@ -1654,9 +1781,9 @@ http_interactions: body: encoding: UTF-8 string: | - + - + @@ -1666,9 +1793,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Cupiditate cum iusto. Fugit perferendis iusto. Ut deserunt aut. + +Ad recusandae minus. Autem est vitae. Qui quia doloribus. \ No newline at end of file @@ -1676,7 +1803,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:27 GMT + recorded_at: Tue, 19 Mar 2024 21:50:40 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -1685,7 +1812,7 @@ http_interactions: string: '' headers: X-Request-Id: - - ffb5506b-a744-4214-b0fb-62ebb453a90e + - a44b0b6e-fd99-4573-b0d5-817311d11c8d Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1704,14 +1831,14 @@ http_interactions: Connection: - close Content-Length: - - '234' + - '233' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:27 GMT + recorded_at: Tue, 19 Mar 2024 21:50:40 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -1720,7 +1847,7 @@ http_interactions: string: '' headers: X-Request-Id: - - ffb5506b-a744-4214-b0fb-62ebb453a90e + - a44b0b6e-fd99-4573-b0d5-817311d11c8d Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1739,14 +1866,14 @@ http_interactions: Connection: - close Content-Length: - - '234' + - '233' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:27 GMT + recorded_at: Tue, 19 Mar 2024 21:50:40 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -1755,7 +1882,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 1c2d1bdb-be0c-4847-aed3-7f7041a53a3f + - b12133b4-99d4-45ef-be23-f72b4137a40a Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1774,14 +1901,14 @@ http_interactions: Connection: - close Content-Length: - - '234' + - '233' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:28 GMT + recorded_at: Tue, 19 Mar 2024 21:50:41 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -1790,7 +1917,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 1c2d1bdb-be0c-4847-aed3-7f7041a53a3f + - b12133b4-99d4-45ef-be23-f72b4137a40a Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1809,14 +1936,14 @@ http_interactions: Connection: - close Content-Length: - - '234' + - '233' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:28 GMT + recorded_at: Tue, 19 Mar 2024 21:50:41 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1825,7 +1952,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 1c2d1bdb-be0c-4847-aed3-7f7041a53a3f + - b12133b4-99d4-45ef-be23-f72b4137a40a Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1844,15 +1971,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:28 GMT + recorded_at: Tue, 19 Mar 2024 21:50:41 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1861,7 +1988,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 1c2d1bdb-be0c-4847-aed3-7f7041a53a3f + - b12133b4-99d4-45ef-be23-f72b4137a40a Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1880,18 +2007,18 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:28 GMT + recorded_at: Tue, 19 Mar 2024 21:50:41 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=14&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=172&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1899,7 +2026,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 1c2d1bdb-be0c-4847-aed3-7f7041a53a3f + - b12133b4-99d4-45ef-be23-f72b4137a40a Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1914,7 +2041,7 @@ http_interactions: Content-Type: - text/xml Content-Length: - - '827' + - '822' Cache-Control: - no-cache Connection: @@ -1922,9 +2049,9 @@ http_interactions: body: encoding: UTF-8 string: | - + - + @@ -1934,9 +2061,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Cupiditate cum iusto. Fugit perferendis iusto. Ut deserunt aut. + +Ad recusandae minus. Autem est vitae. Qui quia doloribus. \ No newline at end of file @@ -1944,7 +2071,135 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:28 GMT + recorded_at: Tue, 19 Mar 2024 21:50:41 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - b12133b4-99d4-45ef-be23-f72b4137a40a + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:50:41 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - b12133b4-99d4-45ef-be23-f72b4137a40a + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:50:41 GMT +- request: + method: post + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=172&tarlimit=10000&view=xml&withissues=1 + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + X-Request-Id: + - b12133b4-99d4-45ef-be23-f72b4137a40a + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Content-Length: + - '822' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: | + + + + + + + @@ -0,0 +1,1 @@ + +boo#12345 + \ No newline at end of file + + + + + @@ -0,0 +1,1 @@ + +Ad recusandae minus. Autem est vitae. Qui quia doloribus. + \ No newline at end of file + + + + + + + recorded_at: Tue, 19 Mar 2024 21:50:41 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -1953,7 +2208,7 @@ http_interactions: string: '' headers: X-Request-Id: - - c39d3569-c8be-42cc-bbdb-212247a91858 + - c2ddae67-7fe0-4ca4-8163-1d332994a512 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1972,14 +2227,14 @@ http_interactions: Connection: - close Content-Length: - - '234' + - '233' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:28 GMT + recorded_at: Tue, 19 Mar 2024 21:50:41 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -1988,7 +2243,7 @@ http_interactions: string: '' headers: X-Request-Id: - - c39d3569-c8be-42cc-bbdb-212247a91858 + - c2ddae67-7fe0-4ca4-8163-1d332994a512 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2007,14 +2262,14 @@ http_interactions: Connection: - close Content-Length: - - '234' + - '233' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:28 GMT + recorded_at: Tue, 19 Mar 2024 21:50:41 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -2023,7 +2278,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2042,15 +2297,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:41 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?expand=1 @@ -2059,7 +2314,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2078,15 +2333,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:41 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -2095,7 +2350,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2114,15 +2369,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:41 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?expand=1 @@ -2131,7 +2386,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2150,15 +2405,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?expand=1 @@ -2167,7 +2422,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2186,15 +2441,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?expand=1 @@ -2203,7 +2458,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2222,15 +2477,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?requestid=1&user=maintenance_coord @@ -2251,7 +2506,7 @@ http_interactions: headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2286,7 +2541,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -2295,7 +2550,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2314,15 +2569,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: get uri: http://backend:5352/source/openSUSE:11.4:Update/cacti.openSUSE_11.4_Update @@ -2356,7 +2611,7 @@ http_interactions: package 'cacti.openSUSE_11.4_Update' does not exist
404 package 'cacti.openSUSE_11.4_Update' does not exist
- recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update/_meta?user=maintenance_coord @@ -2396,7 +2651,7 @@ http_interactions: cacti.openSUSE_11.4_Update - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=branch&missingok=1&noservice=1&opackage=cacti.openSUSE_11.4_Update&oproject=openSUSE:11.4:Update&user=maintenance_coord @@ -2424,19 +2679,19 @@ http_interactions: Connection: - close Content-Length: - - '217' + - '219' body: encoding: UTF-8 string: | - + 1062589906c6eb53389501c6582ca7fe unknown - + maintenance_coord - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update/_meta?user=maintenance_coord @@ -2476,7 +2731,7 @@ http_interactions: cacti.openSUSE_11.4_Update - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update @@ -2502,15 +2757,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '504' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?view=info @@ -2519,7 +2774,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2538,16 +2793,16 @@ http_interactions: Connection: - close Content-Length: - - '461' + - '463' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update @@ -2556,7 +2811,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2575,15 +2830,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '504' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -2611,18 +2866,18 @@ http_interactions: Connection: - close Content-Length: - - '396' + - '397' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -2661,7 +2916,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update/_meta?user=maintenance_coord @@ -2707,7 +2962,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update @@ -2716,7 +2971,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2735,15 +2990,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '504' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?user=maintenance_coord @@ -2762,14 +3017,14 @@ http_interactions: - - + + i586 headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2788,7 +3043,7 @@ http_interactions: Connection: - close Content-Length: - - '565' + - '563' body: encoding: UTF-8 string: | @@ -2804,12 +3059,12 @@ http_interactions: - - + + i586 - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=copy&comment=Maintenance%20incident%20copy%20from%20project%20home:tom:branches:Update&expand=1&keeplink=1&opackage=cacti.openSUSE_11.4_Update&oproject=home:tom:branches:Update&requestid=1&user=maintenance_coord&withacceptinfo=1 @@ -2820,7 +3075,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2839,20 +3094,20 @@ http_interactions: Connection: - close Content-Length: - - '488' + - '491' body: encoding: UTF-8 string: | - - 81865626a52c48afb222616f19cceb80 + + 225aacba10cbcca3c80adb0ae4e475fc unknown - + maintenance_coord Maintenance incident copy from project home:tom:branches:Update 1 - + - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update/_meta?user=maintenance_coord @@ -2898,7 +3153,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update @@ -2924,17 +3179,17 @@ http_interactions: Connection: - close Content-Length: - - '692' + - '694' body: encoding: UTF-8 string: | - - + + - + - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?view=info @@ -2943,7 +3198,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2962,16 +3217,16 @@ http_interactions: Connection: - close Content-Length: - - '461' + - '463' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update @@ -2980,7 +3235,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2999,17 +3254,17 @@ http_interactions: Connection: - close Content-Length: - - '692' + - '694' body: encoding: UTF-8 string: | - - + + - + - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -3037,18 +3292,18 @@ http_interactions: Connection: - close Content-Length: - - '396' + - '397' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -3080,14 +3335,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?comment=maintenance_incident%20request%201&requestid=1&user=maintenance_coord @@ -3106,14 +3361,14 @@ http_interactions: - - + + i586 headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3132,7 +3387,7 @@ http_interactions: Connection: - close Content-Length: - - '565' + - '563' body: encoding: UTF-8 string: | @@ -3148,12 +3403,12 @@ http_interactions: - - + + i586 - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/patchinfo/_meta?user=maintenance_coord @@ -3209,7 +3464,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:29 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/patchinfo/_patchinfo?comment=generated%20by%20request%20id%201%20accept%20call&user=maintenance_coord @@ -3219,13 +3474,13 @@ http_interactions: recommended low - user_14 - Nostrum facere mollitia. Ipsa repellat commodi. Consequuntur voluptas voluptatem. - Nostrum facere mollitia. Ipsa repellat commodi. Consequuntur voluptas voluptatem. + user_4 + Et illum eum. Eum voluptas ullam. Ad quod sit. + Et illum eum. Eum voluptas ullam. Ad quod sit. headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3244,19 +3499,19 @@ http_interactions: Connection: - close Content-Length: - - '254' + - '256' body: encoding: UTF-8 string: | - - b8b4a2a6b29d257968ecfdc37d9cca51 + + b3b459f5e6de65bdc55f6f94081eda12 unknown - + maintenance_coord generated by request id 1 accept call - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/patchinfo/_meta?user=maintenance_coord @@ -3312,7 +3567,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo @@ -3338,14 +3593,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo?view=info @@ -3354,7 +3609,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3373,14 +3628,14 @@ http_interactions: Connection: - close Content-Length: - - '185' + - '187' body: encoding: UTF-8 string: | - + _patchinfo - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo @@ -3389,7 +3644,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3408,14 +3663,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo/_patchinfo @@ -3437,7 +3692,7 @@ http_interactions: Content-Type: - application/octet-stream Content-Length: - - '340' + - '269' Cache-Control: - no-cache Connection: @@ -3448,11 +3703,11 @@ http_interactions: recommended low - user_14 - Nostrum facere mollitia. Ipsa repellat commodi. Consequuntur voluptas voluptatem. - Nostrum facere mollitia. Ipsa repellat commodi. Consequuntur voluptas voluptatem. + user_4 + Et illum eum. Eum voluptas ullam. Ad quod sit. + Et illum eum. Eum voluptas ullam. Ad quod sit. - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -3461,7 +3716,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3480,15 +3735,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:42 GMT - request: method: get uri: http://backend:5352/source/openSUSE:11.5:Update/cacti.openSUSE_11.5_Update @@ -3522,7 +3777,7 @@ http_interactions: package 'cacti.openSUSE_11.5_Update' does not exist
404 package 'cacti.openSUSE_11.5_Update' does not exist
- recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update/_meta?user=maintenance_coord @@ -3562,7 +3817,7 @@ http_interactions: cacti.openSUSE_11.5_Update - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=branch&missingok=1&noservice=1&opackage=cacti.openSUSE_11.5_Update&oproject=openSUSE:11.5:Update&user=maintenance_coord @@ -3590,19 +3845,19 @@ http_interactions: Connection: - close Content-Length: - - '217' + - '219' body: encoding: UTF-8 string: | - + 45cd08fc62522ad1df0dcc0f3443e482 unknown - + maintenance_coord - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update/_meta?user=maintenance_coord @@ -3642,7 +3897,7 @@ http_interactions: cacti.openSUSE_11.5_Update - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update @@ -3668,15 +3923,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '504' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?view=info @@ -3685,7 +3940,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3704,16 +3959,16 @@ http_interactions: Connection: - close Content-Length: - - '461' + - '463' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update @@ -3722,7 +3977,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3741,15 +3996,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '504' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -3777,18 +4032,18 @@ http_interactions: Connection: - close Content-Length: - - '396' + - '397' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -3827,7 +4082,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update/_meta?user=maintenance_coord @@ -3873,7 +4128,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update @@ -3882,7 +4137,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3901,15 +4156,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '504' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?user=maintenance_coord @@ -3928,19 +4183,19 @@ http_interactions: - - + + i586 - - + + i586 headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3959,7 +4214,7 @@ http_interactions: Connection: - close Content-Length: - - '817' + - '815' body: encoding: UTF-8 string: | @@ -3975,17 +4230,17 @@ http_interactions: - - + + i586 - - + + i586 - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=copy&comment=Maintenance%20incident%20copy%20from%20project%20home:tom:branches:Update&expand=1&keeplink=1&opackage=cacti.openSUSE_11.5_Update&oproject=home:tom:branches:Update&requestid=1&user=maintenance_coord&withacceptinfo=1 @@ -3996,7 +4251,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4015,20 +4270,20 @@ http_interactions: Connection: - close Content-Length: - - '488' + - '491' body: encoding: UTF-8 string: | - - 2132ffadca0a219e2e3d905e5eedce4b + + e220e1214aa97c10bdfcbf5f39c16819 unknown - + maintenance_coord Maintenance incident copy from project home:tom:branches:Update 1 - + - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update/_meta?user=maintenance_coord @@ -4074,7 +4329,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update @@ -4100,17 +4355,17 @@ http_interactions: Connection: - close Content-Length: - - '692' + - '694' body: encoding: UTF-8 string: | - - + + - + - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?view=info @@ -4119,7 +4374,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4138,16 +4393,16 @@ http_interactions: Connection: - close Content-Length: - - '461' + - '463' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update @@ -4156,7 +4411,7 @@ http_interactions: string: '' headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4175,17 +4430,17 @@ http_interactions: Connection: - close Content-Length: - - '692' + - '694' body: encoding: UTF-8 string: | - - + + - + - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -4213,18 +4468,18 @@ http_interactions: Connection: - close Content-Length: - - '396' + - '397' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -4256,14 +4511,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?comment=maintenance_incident%20request%201&requestid=1&user=maintenance_coord @@ -4282,19 +4537,19 @@ http_interactions: - - + + i586 - - + + i586 headers: X-Request-Id: - - '08e2ee46-1395-432b-abe5-e2ac84319b37' + - 0447b09a-6654-416f-bd35-cb0347d5caf0 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4313,7 +4568,7 @@ http_interactions: Connection: - close Content-Length: - - '817' + - '815' body: encoding: UTF-8 string: | @@ -4329,17 +4584,17 @@ http_interactions: - - + + i586 - - + + i586 - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -4348,7 +4603,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 4d83d7a9-ffcb-4908-9f69-307f8993d22f + - f53242af-a0d7-4371-8b2b-671d28c820d2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4367,14 +4622,14 @@ http_interactions: Connection: - close Content-Length: - - '234' + - '233' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -4383,7 +4638,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 4d83d7a9-ffcb-4908-9f69-307f8993d22f + - f53242af-a0d7-4371-8b2b-671d28c820d2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4402,17 +4657,17 @@ http_interactions: Connection: - close Content-Length: - - '234' + - '233' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: post - uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cacheonly=1&cmd=diff&filelimit=10000&orev=c87739c700845785205cfcc81d12a272&rev=01d4e1bc4eaacdbb366db7f138c84591&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cacheonly=1&cmd=diff&filelimit=10000&orev=c87739c700845785205cfcc81d12a272&rev=ea360e14e339d80d4ad41a5650d2c823&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -4420,7 +4675,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 4d83d7a9-ffcb-4908-9f69-307f8993d22f + - f53242af-a0d7-4371-8b2b-671d28c820d2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4447,10 +4702,10 @@ http_interactions: diff not yet in cache
412 diff not yet in cache
- recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + recorded_at: Tue, 19 Mar 2024 21:50:43 GMT - request: method: post - uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=diff&filelimit=10000&orev=c87739c700845785205cfcc81d12a272&rev=01d4e1bc4eaacdbb366db7f138c84591&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cacheonly=1&cmd=diff&filelimit=10000&orev=c87739c700845785205cfcc81d12a272&rev=ea360e14e339d80d4ad41a5650d2c823&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -4458,7 +4713,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 4d83d7a9-ffcb-4908-9f69-307f8993d22f + - f53242af-a0d7-4371-8b2b-671d28c820d2 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4467,8 +4722,8 @@ http_interactions: - Ruby response: status: - code: 200 - message: OK + code: 412 + message: diff not yet in cache headers: Content-Type: - text/xml @@ -4477,31 +4732,13 @@ http_interactions: Connection: - close Content-Length: - - '922' + - '120' body: encoding: UTF-8 string: | - - - - - - - @@ -0,0 +1,1 @@ - +boo#12345 - \ No newline at end of file - - - - - @@ -0,0 +1,1 @@ - +Cupiditate cum iusto. Fugit perferendis iusto. Ut deserunt aut. - \ No newline at end of file - - - - - - - recorded_at: Fri, 15 Mar 2024 17:30:30 GMT + + diff not yet in cache +
412 diff not yet in cache
+
+ recorded_at: Tue, 19 Mar 2024 21:50:43 GMT recorded_with: VCR 6.2.0 diff --git a/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_without_patchinfo/when_accepting_request/succeeds.yml b/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_without_patchinfo/when_accepting_request/succeeds.yml index a7db47b5242..4e38e1021ac 100644 --- a/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_without_patchinfo/when_accepting_request/succeeds.yml +++ b/src/api/spec/cassettes/MaintenanceWorkflow/maintenance_request_without_patchinfo/when_accepting_request/succeeds.yml @@ -2,14 +2,14 @@ http_interactions: - request: method: put - uri: http://backend:5352/source/home:user_11/_meta?user=user_11 + uri: http://backend:5352/source/home:user_5/_meta?user=user_5 body: encoding: UTF-8 string: | - + <description/> - <person userid="user_11" role="maintainer"/> + <person userid="user_5" role="maintainer"/> </project> headers: Accept-Encoding: @@ -30,24 +30,24 @@ http_interactions: Connection: - close Content-Length: - - '136' + - '134' body: encoding: UTF-8 string: | - <project name="home:user_11"> + <project name="home:user_5"> <title> - + - recorded_at: Fri, 15 Mar 2024 17:30:18 GMT + recorded_at: Tue, 19 Mar 2024 21:50:44 GMT - request: method: put - uri: http://backend:5352/source/home:tom:branches:Update/_meta?user=user_11 + uri: http://backend:5352/source/home:tom:branches:Update/_meta?user=user_5 body: encoding: UTF-8 string: | - Waiting for the Barbarians + The Golden Apples of the Sun headers: @@ -69,25 +69,25 @@ http_interactions: Connection: - close Content-Length: - - '127' + - '129' body: encoding: UTF-8 string: | - Waiting for the Barbarians + The Golden Apples of the Sun - recorded_at: Fri, 15 Mar 2024 17:30:19 GMT + recorded_at: Tue, 19 Mar 2024 21:50:44 GMT - request: method: put - uri: http://backend:5352/source/home:tom:branches:Update/_meta?user=user_11 + uri: http://backend:5352/source/home:tom:branches:Update/_meta?user=user_5 body: encoding: UTF-8 string: | - Waiting for the Barbarians + The Golden Apples of the Sun - + i586 @@ -110,27 +110,27 @@ http_interactions: Connection: - close Content-Length: - - '201' + - '203' body: encoding: UTF-8 string: | - Waiting for the Barbarians + The Golden Apples of the Sun - + i586 - recorded_at: Fri, 15 Mar 2024 17:30:19 GMT + recorded_at: Tue, 19 Mar 2024 21:50:44 GMT - request: method: put - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/_meta?user=user_11 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/_meta?user=user_5 body: encoding: UTF-8 string: | - Now Sleeps the Crimson Petal - Qui odit officia in. + To Your Scattered Bodies Go + Similique numquam officiis vero. headers: Accept-Encoding: @@ -151,21 +151,21 @@ http_interactions: Connection: - close Content-Length: - - '186' + - '197' body: encoding: UTF-8 string: | - Now Sleeps the Crimson Petal - Qui odit officia in. + To Your Scattered Bodies Go + Similique numquam officiis vero. - recorded_at: Fri, 15 Mar 2024 17:30:19 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/_config body: encoding: UTF-8 - string: Sapiente error sit. Distinctio dolores et. Ducimus unde tempora. + string: Harum ut vel. Ratione consequuntur possimus. Voluptatem et architecto. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -185,19 +185,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - 11d471e4396e837d23e7db53f9578d8a + + 47410501243b08ac56db87c543bf1eb6 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:19 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update/DUMMY_FILE @@ -223,28 +223,28 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - 11d471e4396e837d23e7db53f9578d8a + + 47410501243b08ac56db87c543bf1eb6 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:19 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/_meta?user=user_11 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/_meta?user=user_5 body: encoding: UTF-8 string: | - The Golden Apples of the Sun - Architecto itaque autem repellendus. + Vanity Fair + Accusantium molestias velit fuga. headers: Accept-Encoding: @@ -265,21 +265,21 @@ http_interactions: Connection: - close Content-Length: - - '202' + - '182' body: encoding: UTF-8 string: | - The Golden Apples of the Sun - Architecto itaque autem repellendus. + Vanity Fair + Accusantium molestias velit fuga. - recorded_at: Fri, 15 Mar 2024 17:30:19 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/_config body: encoding: UTF-8 - string: Sed quis ex. Optio ea dolorem. Soluta et numquam. + string: Earum est et. Dolorem officiis dolore. Suscipit non qui. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -299,19 +299,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - b10c534834fdfd5d5becedd0de502aad + + b8bf17736973c3122d3b421b6425f0b1 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:19 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update/DUMMY_FILE @@ -337,27 +337,27 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - b10c534834fdfd5d5becedd0de502aad + + b8bf17736973c3122d3b421b6425f0b1 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:19 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_11 + uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_5 body: encoding: UTF-8 string: | - Moab Is My Washpot + This Lime Tree Bower headers: @@ -379,25 +379,25 @@ http_interactions: Connection: - close Content-Length: - - '108' + - '110' body: encoding: UTF-8 string: | - Moab Is My Washpot + This Lime Tree Bower - recorded_at: Fri, 15 Mar 2024 17:30:19 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_11 + uri: http://backend:5352/source/openSUSE:11.4/_meta?user=user_5 body: encoding: UTF-8 string: | - Moab Is My Washpot + This Lime Tree Bower - + i586 @@ -420,27 +420,27 @@ http_interactions: Connection: - close Content-Length: - - '182' + - '184' body: encoding: UTF-8 string: | - Moab Is My Washpot + This Lime Tree Bower - + i586 - recorded_at: Fri, 15 Mar 2024 17:30:19 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/cacti/_meta?user=user_11 + uri: http://backend:5352/source/openSUSE:11.4/cacti/_meta?user=user_5 body: encoding: UTF-8 string: | - Frequent Hearses - Maxime veniam expedita soluta. + Time of our Darkness + Numquam animi fugiat accusantium. headers: Accept-Encoding: @@ -461,21 +461,21 @@ http_interactions: Connection: - close Content-Length: - - '152' + - '159' body: encoding: UTF-8 string: | - Frequent Hearses - Maxime veniam expedita soluta. + Time of our Darkness + Numquam animi fugiat accusantium. - recorded_at: Fri, 15 Mar 2024 17:30:19 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.4/cacti/_config body: encoding: UTF-8 - string: Dolor et nesciunt. Id molestiae et. Quo ipsam neque. + string: Itaque tenetur quae. Cum perspiciatis et. Nihil similique ut. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -495,25 +495,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - 634cdedba5d31896e029c34f059b07c0 + + c24c3395c26ca85cd2b995cb55933e68 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:19 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.4/cacti/somefile.txt body: encoding: UTF-8 - string: Nemo est voluptatem. Quasi eveniet dolores. Fugit soluta dolore. + string: Perferendis nobis porro. Numquam voluptatem est. Facilis suscipit sunt. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -533,27 +533,27 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - 884686dec5d09f7007831b3b0bc86264 + + 29d22bc0b41011a03e03c3ebe0f8be05 unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:19 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_11 + uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_5 body: encoding: UTF-8 string: | - The Painted Veil + Specimen Days headers: @@ -575,18 +575,18 @@ http_interactions: Connection: - close Content-Length: - - '140' + - '137' body: encoding: UTF-8 string: | - The Painted Veil + Specimen Days - recorded_at: Fri, 15 Mar 2024 17:30:19 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_project/_attribute?meta=1&user=user_11 + uri: http://backend:5352/source/openSUSE:11.4:Update/_project/_attribute?meta=1&user=user_5 body: encoding: UTF-8 string: | @@ -616,17 +616,17 @@ http_interactions: body: encoding: UTF-8 string: | - - 0f5ef07cb6ea63880eeeaec7a3c8e11a - - user_11 + + cad1f9f46811efb39f408ec8dfcad1ca + + user_5 - recorded_at: Fri, 15 Mar 2024 17:30:19 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4/_project/_attribute?meta=1&user=user_11 + uri: http://backend:5352/source/openSUSE:11.4/_project/_attribute?meta=1&user=user_5 body: encoding: UTF-8 string: | @@ -658,22 +658,22 @@ http_interactions: body: encoding: UTF-8 string: | - - 190033e06265b46cfbd6dfcc512b4abf - - user_11 + + d5e934ed8348957023f685ee2fe2eec8 + + user_5 - recorded_at: Fri, 15 Mar 2024 17:30:19 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_11 + uri: http://backend:5352/source/openSUSE:11.4:Update/_meta?user=user_5 body: encoding: UTF-8 string: | - The Painted Veil + Specimen Days @@ -696,24 +696,24 @@ http_interactions: Connection: - close Content-Length: - - '174' + - '171' body: encoding: UTF-8 string: | - The Painted Veil + Specimen Days - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_11 + uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_5 body: encoding: UTF-8 string: | - The Yellow Meads of Asphodel + Rosemary Sutcliff headers: @@ -735,25 +735,25 @@ http_interactions: Connection: - close Content-Length: - - '118' + - '107' body: encoding: UTF-8 string: | - The Yellow Meads of Asphodel + Rosemary Sutcliff - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_11 + uri: http://backend:5352/source/openSUSE:11.5/_meta?user=user_5 body: encoding: UTF-8 string: | - The Yellow Meads of Asphodel + Rosemary Sutcliff - + i586 @@ -776,27 +776,27 @@ http_interactions: Connection: - close Content-Length: - - '192' + - '181' body: encoding: UTF-8 string: | - The Yellow Meads of Asphodel + Rosemary Sutcliff - + i586 - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/cacti/_meta?user=user_11 + uri: http://backend:5352/source/openSUSE:11.5/cacti/_meta?user=user_5 body: encoding: UTF-8 string: | - Rosemary Sutcliff - Aliquid est eveniet dolor. + The Mirror Crack'd from Side to Side + Doloribus voluptas eius est. headers: Accept-Encoding: @@ -817,21 +817,21 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '170' body: encoding: UTF-8 string: | - Rosemary Sutcliff - Aliquid est eveniet dolor. + The Mirror Crack'd from Side to Side + Doloribus voluptas eius est. - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.5/cacti/_config body: encoding: UTF-8 - string: Quas quo autem. Nulla omnis fuga. Qui quia blanditiis. + string: Quo et expedita. Vitae aut quaerat. Dolorem consequuntur repellat. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -851,25 +851,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - b15b640d152f789ff9d69cd8e70145b8 + + ae78bf3e34b3655e24ec4ba8347b3eec unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put uri: http://backend:5352/source/openSUSE:11.5/cacti/somefile.txt body: encoding: UTF-8 - string: Omnis nihil dolorem. Ea nostrum quia. Molestias atque rerum. + string: Dolores magnam vel. Minus accusantium sint. Nihil veritatis quis. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -889,27 +889,27 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - 7a2c83f253ff1c27e47f378061cb9001 + + ba08ceb1152fc3918d2d6307b0a0d32e unknown - + unknown - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_11 + uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_5 body: encoding: UTF-8 string: | - Blue Remembered Earth + Tirra Lirra by the River headers: @@ -931,18 +931,18 @@ http_interactions: Connection: - close Content-Length: - - '145' + - '148' body: encoding: UTF-8 string: | - Blue Remembered Earth + Tirra Lirra by the River - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_project/_attribute?meta=1&user=user_11 + uri: http://backend:5352/source/openSUSE:11.5:Update/_project/_attribute?meta=1&user=user_5 body: encoding: UTF-8 string: | @@ -972,17 +972,17 @@ http_interactions: body: encoding: UTF-8 string: | - - 6b1cfbb9c2d2293304aff7099abe8686 - - user_11 + + 35a8d551b4ca1c4dfc85b7c8173c4c77 + + user_5 - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5/_project/_attribute?meta=1&user=user_11 + uri: http://backend:5352/source/openSUSE:11.5/_project/_attribute?meta=1&user=user_5 body: encoding: UTF-8 string: | @@ -1014,22 +1014,22 @@ http_interactions: body: encoding: UTF-8 string: | - - 6d927acfc3d12770b3c9656090e6392b - - user_11 + + 23dee89fe9294db0fb9fa1bc5c0a10ef + + user_5 - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_11 + uri: http://backend:5352/source/openSUSE:11.5:Update/_meta?user=user_5 body: encoding: UTF-8 string: | - Blue Remembered Earth + Tirra Lirra by the River @@ -1052,16 +1052,16 @@ http_interactions: Connection: - close Content-Length: - - '179' + - '182' body: encoding: UTF-8 string: | - Blue Remembered Earth + Tirra Lirra by the River - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put uri: http://backend:5352/source/home:maintenance_coord/_meta?user=maintenance_coord @@ -1101,10 +1101,10 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:45 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_11 + uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_5 body: encoding: UTF-8 string: | @@ -1147,10 +1147,10 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:46 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_project/_attribute?meta=1&user=user_11 + uri: http://backend:5352/source/MaintenanceProject/_project/_attribute?meta=1&user=user_5 body: encoding: UTF-8 string: | @@ -1180,17 +1180,17 @@ http_interactions: body: encoding: UTF-8 string: | - + b5ac59f5d2a72c7f98586b6c1dbf55de - - user_11 + + user_5 - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:46 GMT - request: method: put - uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_11 + uri: http://backend:5352/source/MaintenanceProject/_meta?user=user_5 body: encoding: UTF-8 string: | @@ -1233,7 +1233,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:46 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1259,15 +1259,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:46 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1293,18 +1293,18 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:46 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=12&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=174&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1329,13 +1329,13 @@ http_interactions: Connection: - close Content-Length: - - '828' + - '835' body: encoding: UTF-8 string: | - + - + @@ -1345,9 +1345,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Sapiente error sit. Distinctio dolores et. Ducimus unde tempora. + +Harum ut vel. Ratione consequuntur possimus. Voluptatem et architecto. \ No newline at end of file @@ -1355,7 +1355,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:46 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -1381,15 +1381,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:46 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -1415,18 +1415,18 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:46 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=12&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?cmd=diff&expand=1&filelimit=10000&orev=0&rev=174&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1451,13 +1451,13 @@ http_interactions: Connection: - close Content-Length: - - '813' + - '821' body: encoding: UTF-8 string: | - + - + @@ -1467,9 +1467,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Sed quis ex. Optio ea dolorem. Soluta et numquam. + +Earum est et. Dolorem officiis dolore. Suscipit non qui. \ No newline at end of file @@ -1477,7 +1477,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:46 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -1486,7 +1486,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 860f2d68-d776-4543-b092-273088bc4a2e + - 3f3c844a-f945-4c54-afed-ecd696cd0490 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1509,10 +1509,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:46 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -1521,7 +1521,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 860f2d68-d776-4543-b092-273088bc4a2e + - 3f3c844a-f945-4c54-afed-ecd696cd0490 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1544,10 +1544,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:20 GMT + recorded_at: Tue, 19 Mar 2024 21:50:46 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1556,7 +1556,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 860f2d68-d776-4543-b092-273088bc4a2e + - 3f3c844a-f945-4c54-afed-ecd696cd0490 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1575,15 +1575,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:21 GMT + recorded_at: Tue, 19 Mar 2024 21:50:46 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1592,7 +1592,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 860f2d68-d776-4543-b092-273088bc4a2e + - 3f3c844a-f945-4c54-afed-ecd696cd0490 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1611,18 +1611,18 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:21 GMT + recorded_at: Tue, 19 Mar 2024 21:50:46 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=12&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=174&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1630,7 +1630,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 860f2d68-d776-4543-b092-273088bc4a2e + - 3f3c844a-f945-4c54-afed-ecd696cd0490 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1645,7 +1645,7 @@ http_interactions: Content-Type: - text/xml Content-Length: - - '828' + - '835' Cache-Control: - no-cache Connection: @@ -1653,9 +1653,9 @@ http_interactions: body: encoding: UTF-8 string: | - + - + @@ -1665,9 +1665,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Sapiente error sit. Distinctio dolores et. Ducimus unde tempora. + +Harum ut vel. Ratione consequuntur possimus. Voluptatem et architecto. \ No newline at end of file @@ -1675,7 +1675,135 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:21 GMT + recorded_at: Tue, 19 Mar 2024 21:50:46 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - 3f3c844a-f945-4c54-afed-ecd696cd0490 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:50:46 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - 3f3c844a-f945-4c54-afed-ecd696cd0490 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:50:46 GMT +- request: + method: post + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=174&tarlimit=10000&view=xml&withissues=1 + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + X-Request-Id: + - 3f3c844a-f945-4c54-afed-ecd696cd0490 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Content-Length: + - '835' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: | + + + + + + + @@ -0,0 +1,1 @@ + +boo#12345 + \ No newline at end of file + + + + + @@ -0,0 +1,1 @@ + +Harum ut vel. Ratione consequuntur possimus. Voluptatem et architecto. + \ No newline at end of file + + + + + + + recorded_at: Tue, 19 Mar 2024 21:50:46 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -1684,7 +1812,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 3daede55-790d-49fe-9353-5b62bc5ced50 + - 9c4af3db-7884-4e8a-9329-104376702187 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1707,10 +1835,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:21 GMT + recorded_at: Tue, 19 Mar 2024 21:50:46 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -1719,7 +1847,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 3daede55-790d-49fe-9353-5b62bc5ced50 + - 9c4af3db-7884-4e8a-9329-104376702187 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1742,10 +1870,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:21 GMT + recorded_at: Tue, 19 Mar 2024 21:50:46 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -1754,7 +1882,7 @@ http_interactions: string: '' headers: X-Request-Id: - - fb9066ee-266a-458a-b34d-037e2ede9438 + - 741f9b4f-3118-4483-9ec2-fbbc50ee35b4 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1777,10 +1905,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:47 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -1789,7 +1917,7 @@ http_interactions: string: '' headers: X-Request-Id: - - fb9066ee-266a-458a-b34d-037e2ede9438 + - 741f9b4f-3118-4483-9ec2-fbbc50ee35b4 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1812,10 +1940,46 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:47 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - 741f9b4f-3118-4483-9ec2-fbbc50ee35b4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:50:47 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1824,7 +1988,7 @@ http_interactions: string: '' headers: X-Request-Id: - - fb9066ee-266a-458a-b34d-037e2ede9438 + - 741f9b4f-3118-4483-9ec2-fbbc50ee35b4 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1843,15 +2007,107 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:47 GMT +- request: + method: post + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=174&tarlimit=10000&view=xml&withissues=1 + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + X-Request-Id: + - 741f9b4f-3118-4483-9ec2-fbbc50ee35b4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Content-Length: + - '835' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: | + + + + + + + @@ -0,0 +1,1 @@ + +boo#12345 + \ No newline at end of file + + + + + @@ -0,0 +1,1 @@ + +Harum ut vel. Ratione consequuntur possimus. Voluptatem et architecto. + \ No newline at end of file + + + + + + + recorded_at: Tue, 19 Mar 2024 21:50:47 GMT +- request: + method: get + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - 741f9b4f-3118-4483-9ec2-fbbc50ee35b4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '312' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Tue, 19 Mar 2024 21:50:47 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -1860,7 +2116,7 @@ http_interactions: string: '' headers: X-Request-Id: - - fb9066ee-266a-458a-b34d-037e2ede9438 + - 741f9b4f-3118-4483-9ec2-fbbc50ee35b4 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1879,18 +2135,18 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:47 GMT - request: method: post - uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=12&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=174&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1898,7 +2154,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - fb9066ee-266a-458a-b34d-037e2ede9438 + - 741f9b4f-3118-4483-9ec2-fbbc50ee35b4 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1913,7 +2169,7 @@ http_interactions: Content-Type: - text/xml Content-Length: - - '828' + - '835' Cache-Control: - no-cache Connection: @@ -1921,9 +2177,9 @@ http_interactions: body: encoding: UTF-8 string: | - + - + @@ -1933,9 +2189,9 @@ http_interactions: - + @@ -0,0 +1,1 @@ - +Sapiente error sit. Distinctio dolores et. Ducimus unde tempora. + +Harum ut vel. Ratione consequuntur possimus. Voluptatem et architecto. \ No newline at end of file @@ -1943,7 +2199,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:47 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -1952,7 +2208,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 7dcbf245-eaf5-43fe-a7ee-ced3b4745f9c + - 7f97039c-3d64-405e-b9af-40c70d39bdc3 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1975,10 +2231,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:47 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -1987,7 +2243,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 7dcbf245-eaf5-43fe-a7ee-ced3b4745f9c + - 7f97039c-3d64-405e-b9af-40c70d39bdc3 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2010,10 +2266,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:47 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -2022,7 +2278,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2041,15 +2297,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:47 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?expand=1 @@ -2058,7 +2314,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2077,15 +2333,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -2094,7 +2350,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2113,15 +2369,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?expand=1 @@ -2130,7 +2386,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2149,15 +2405,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update?expand=1 @@ -2166,7 +2422,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2185,15 +2441,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update?expand=1 @@ -2202,7 +2458,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2221,15 +2477,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?requestid=1&user=maintenance_coord @@ -2250,7 +2506,7 @@ http_interactions: headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2285,7 +2541,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.4_Update @@ -2294,7 +2550,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2313,15 +2569,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: get uri: http://backend:5352/source/openSUSE:11.4:Update/cacti.openSUSE_11.4_Update @@ -2355,7 +2611,7 @@ http_interactions: package 'cacti.openSUSE_11.4_Update' does not exist
404 package 'cacti.openSUSE_11.4_Update' does not exist
- recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update/_meta?user=maintenance_coord @@ -2395,7 +2651,7 @@ http_interactions: cacti.openSUSE_11.4_Update - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=branch&missingok=1&noservice=1&opackage=cacti.openSUSE_11.4_Update&oproject=openSUSE:11.4:Update&user=maintenance_coord @@ -2423,19 +2679,19 @@ http_interactions: Connection: - close Content-Length: - - '217' + - '219' body: encoding: UTF-8 string: | - + 1062589906c6eb53389501c6582ca7fe unknown - + maintenance_coord - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update/_meta?user=maintenance_coord @@ -2475,7 +2731,7 @@ http_interactions: cacti.openSUSE_11.4_Update - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update @@ -2501,15 +2757,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '504' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?view=info @@ -2518,7 +2774,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2537,16 +2793,16 @@ http_interactions: Connection: - close Content-Length: - - '461' + - '463' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update @@ -2555,7 +2811,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2574,15 +2830,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '504' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:22 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -2610,18 +2866,18 @@ http_interactions: Connection: - close Content-Length: - - '396' + - '397' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -2660,7 +2916,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update/_meta?user=maintenance_coord @@ -2706,7 +2962,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update @@ -2715,7 +2971,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2734,15 +2990,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '504' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?user=maintenance_coord @@ -2761,14 +3017,14 @@ http_interactions: - - + + i586 headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2803,12 +3059,12 @@ http_interactions: - - + + i586 - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=copy&comment=Maintenance%20incident%20copy%20from%20project%20home:tom:branches:Update&expand=1&keeplink=1&opackage=cacti.openSUSE_11.4_Update&oproject=home:tom:branches:Update&requestid=1&user=maintenance_coord&withacceptinfo=1 @@ -2819,7 +3075,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2838,20 +3094,20 @@ http_interactions: Connection: - close Content-Length: - - '488' + - '494' body: encoding: UTF-8 string: | - - a6e6549cf02c6b3b8c70cb5b561ebbd0 + + 4ef3ad2edf160241bf27e3a35428efa9 unknown - + maintenance_coord Maintenance incident copy from project home:tom:branches:Update 1 - + - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update/_meta?user=maintenance_coord @@ -2897,7 +3153,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update @@ -2923,17 +3179,17 @@ http_interactions: Connection: - close Content-Length: - - '692' + - '696' body: encoding: UTF-8 string: | - - + + - + - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?view=info @@ -2942,7 +3198,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2961,16 +3217,16 @@ http_interactions: Connection: - close Content-Length: - - '461' + - '465' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update @@ -2979,7 +3235,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -2998,17 +3254,17 @@ http_interactions: Connection: - close Content-Length: - - '692' + - '696' body: encoding: UTF-8 string: | - - + + - + - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -3036,18 +3292,18 @@ http_interactions: Connection: - close Content-Length: - - '396' + - '398' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -3079,14 +3335,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?comment=maintenance_incident%20request%201&requestid=1&user=maintenance_coord @@ -3105,14 +3361,14 @@ http_interactions: - - + + i586 headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3147,12 +3403,12 @@ http_interactions: - - + + i586 - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/patchinfo/_meta?user=maintenance_coord @@ -3208,7 +3464,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/patchinfo/_patchinfo?comment=generated%20by%20request%20id%201%20accept%20call&user=maintenance_coord @@ -3218,13 +3474,13 @@ http_interactions: recommended low - user_12 - Voluptas voluptatem et. Atque debitis magni. Et a cum. - Voluptas voluptatem et. Atque debitis magni. Et a cum. + user_6 + Fuga quo voluptate. Reiciendis consequuntur fugit. Voluptas quis et. + Fuga quo voluptate. Reiciendis consequuntur fugit. Voluptas quis et. headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3243,19 +3499,19 @@ http_interactions: Connection: - close Content-Length: - - '254' + - '256' body: encoding: UTF-8 string: | - - a197eaeb6e21537790b1a08e33f118ec + + a3cf1589bc13d034bb5c3e2c39569e20 unknown - + maintenance_coord generated by request id 1 accept call - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/patchinfo/_meta?user=maintenance_coord @@ -3311,7 +3567,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo @@ -3337,14 +3593,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo?view=info @@ -3353,7 +3609,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3372,14 +3628,14 @@ http_interactions: Connection: - close Content-Length: - - '185' + - '187' body: encoding: UTF-8 string: | - + _patchinfo - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo @@ -3388,7 +3644,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3407,14 +3663,14 @@ http_interactions: Connection: - close Content-Length: - - '199' + - '201' body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/patchinfo/_patchinfo @@ -3436,7 +3692,7 @@ http_interactions: Content-Type: - application/octet-stream Content-Length: - - '286' + - '313' Cache-Control: - no-cache Connection: @@ -3447,11 +3703,11 @@ http_interactions: recommended low - user_12 - Voluptas voluptatem et. Atque debitis magni. Et a cum. - Voluptas voluptatem et. Atque debitis magni. Et a cum. + user_6 + Fuga quo voluptate. Reiciendis consequuntur fugit. Voluptas quis et. + Fuga quo voluptate. Reiciendis consequuntur fugit. Voluptas quis et. - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:48 GMT - request: method: get uri: http://backend:5352/source/home:tom:branches:Update/cacti.openSUSE_11.5_Update @@ -3460,7 +3716,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3479,15 +3735,15 @@ http_interactions: Connection: - close Content-Length: - - '310' + - '312' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: get uri: http://backend:5352/source/openSUSE:11.5:Update/cacti.openSUSE_11.5_Update @@ -3521,7 +3777,7 @@ http_interactions: package 'cacti.openSUSE_11.5_Update' does not exist
404 package 'cacti.openSUSE_11.5_Update' does not exist
- recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update/_meta?user=maintenance_coord @@ -3561,7 +3817,7 @@ http_interactions: cacti.openSUSE_11.5_Update - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=branch&missingok=1&noservice=1&opackage=cacti.openSUSE_11.5_Update&oproject=openSUSE:11.5:Update&user=maintenance_coord @@ -3589,19 +3845,19 @@ http_interactions: Connection: - close Content-Length: - - '217' + - '219' body: encoding: UTF-8 string: | - + 45cd08fc62522ad1df0dcc0f3443e482 unknown - + maintenance_coord - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update/_meta?user=maintenance_coord @@ -3641,7 +3897,7 @@ http_interactions: cacti.openSUSE_11.5_Update - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update @@ -3667,15 +3923,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '504' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?view=info @@ -3684,7 +3940,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3703,16 +3959,16 @@ http_interactions: Connection: - close Content-Length: - - '461' + - '463' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update @@ -3721,7 +3977,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3740,15 +3996,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '504' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -3776,18 +4032,18 @@ http_interactions: Connection: - close Content-Length: - - '396' + - '397' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -3826,7 +4082,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update/_meta?user=maintenance_coord @@ -3872,7 +4128,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update @@ -3881,7 +4137,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3900,15 +4156,15 @@ http_interactions: Connection: - close Content-Length: - - '502' + - '504' body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:30:23 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?user=maintenance_coord @@ -3927,19 +4183,19 @@ http_interactions: - - + + i586 - - + + i586 headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3974,17 +4230,17 @@ http_interactions: - - + + i586 - - + + i586 - recorded_at: Fri, 15 Mar 2024 17:30:24 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=copy&comment=Maintenance%20incident%20copy%20from%20project%20home:tom:branches:Update&expand=1&keeplink=1&opackage=cacti.openSUSE_11.5_Update&oproject=home:tom:branches:Update&requestid=1&user=maintenance_coord&withacceptinfo=1 @@ -3995,7 +4251,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4014,20 +4270,20 @@ http_interactions: Connection: - close Content-Length: - - '488' + - '494' body: encoding: UTF-8 string: | - - 6d737b8b5de6464a45259996c16d2b5c + + ecf9d12e339922fd6b45fa2477690391 unknown - + maintenance_coord Maintenance incident copy from project home:tom:branches:Update 1 - + - recorded_at: Fri, 15 Mar 2024 17:30:24 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update/_meta?user=maintenance_coord @@ -4073,7 +4329,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:30:24 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update @@ -4099,17 +4355,17 @@ http_interactions: Connection: - close Content-Length: - - '692' + - '696' body: encoding: UTF-8 string: | - - + + - + - recorded_at: Fri, 15 Mar 2024 17:30:24 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?view=info @@ -4118,7 +4374,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4137,16 +4393,16 @@ http_interactions: Connection: - close Content-Length: - - '461' + - '465' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 15 Mar 2024 17:30:24 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: get uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update @@ -4155,7 +4411,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4174,17 +4430,17 @@ http_interactions: Connection: - close Content-Length: - - '692' + - '696' body: encoding: UTF-8 string: | - - + + - + - recorded_at: Fri, 15 Mar 2024 17:30:24 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -4212,18 +4468,18 @@ http_interactions: Connection: - close Content-Length: - - '396' + - '398' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:24 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: post uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.5_Update.openSUSE_11.5_Update?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -4255,14 +4511,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 15 Mar 2024 17:30:24 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: put uri: http://backend:5352/source/MaintenanceProject:0/_meta?comment=maintenance_incident%20request%201&requestid=1&user=maintenance_coord @@ -4281,19 +4537,19 @@ http_interactions: - - + + i586 - - + + i586 headers: X-Request-Id: - - b8fa7b42-332b-4588-858d-4cfea183d6dd + - 23717332-9289-48b7-81c6-b056ba75c393 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4328,17 +4584,17 @@ http_interactions: - - + + i586 - - + + i586 - recorded_at: Fri, 15 Mar 2024 17:30:24 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -4347,7 +4603,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 423d9216-7b54-46c3-88ea-30bc0d080805 + - 1e020cb3-16ee-48fa-8191-b3f54c3f7000 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4370,10 +4626,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:24 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -4382,7 +4638,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 423d9216-7b54-46c3-88ea-30bc0d080805 + - 1e020cb3-16ee-48fa-8191-b3f54c3f7000 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4405,13 +4661,13 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:24 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: post - uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cacheonly=1&cmd=diff&filelimit=10000&orev=c87739c700845785205cfcc81d12a272&rev=890ac001f7463d57c061cbdf119854ec&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cacheonly=1&cmd=diff&filelimit=10000&orev=c87739c700845785205cfcc81d12a272&rev=6f9ef9816a21181bb68de829b61bd624&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -4419,7 +4675,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 423d9216-7b54-46c3-88ea-30bc0d080805 + - 1e020cb3-16ee-48fa-8191-b3f54c3f7000 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4446,10 +4702,10 @@ http_interactions: diff not yet in cache
412 diff not yet in cache
- recorded_at: Fri, 15 Mar 2024 17:30:24 GMT + recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: post - uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cmd=diff&filelimit=10000&orev=c87739c700845785205cfcc81d12a272&rev=890ac001f7463d57c061cbdf119854ec&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/MaintenanceProject:0/cacti.openSUSE_11.4_Update.openSUSE_11.4_Update?cacheonly=1&cmd=diff&filelimit=10000&orev=c87739c700845785205cfcc81d12a272&rev=6f9ef9816a21181bb68de829b61bd624&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -4457,7 +4713,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 423d9216-7b54-46c3-88ea-30bc0d080805 + - 1e020cb3-16ee-48fa-8191-b3f54c3f7000 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4466,8 +4722,8 @@ http_interactions: - Ruby response: status: - code: 200 - message: OK + code: 412 + message: diff not yet in cache headers: Content-Type: - text/xml @@ -4476,33 +4732,15 @@ http_interactions: Connection: - close Content-Length: - - '923' + - '120' body: encoding: UTF-8 string: | - - - - - - - @@ -0,0 +1,1 @@ - +boo#12345 - \ No newline at end of file - - - - - @@ -0,0 +1,1 @@ - +Sapiente error sit. Distinctio dolores et. Ducimus unde tempora. - \ No newline at end of file - - - - - - - recorded_at: Fri, 15 Mar 2024 17:30:24 GMT + + diff not yet in cache +
412 diff not yet in cache
+
+ recorded_at: Tue, 19 Mar 2024 21:50:49 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.4_Update&view=status @@ -4511,7 +4749,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 637366f9-61d6-4c69-8103-ea9788b4e2a4 + - 63e05148-5587-490d-adc2-fe04a0be7301 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4534,10 +4772,10 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:24 GMT + recorded_at: Tue, 19 Mar 2024 21:50:50 GMT - request: method: get uri: http://backend:5352/build/home:tom:branches:Update/_result?lastbuild=0&locallink=1&multibuild=1&package=cacti.openSUSE_11.5_Update&view=status @@ -4546,7 +4784,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 637366f9-61d6-4c69-8103-ea9788b4e2a4 + - 63e05148-5587-490d-adc2-fe04a0be7301 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -4569,8 +4807,8 @@ http_interactions: body: encoding: UTF-8 string: | - - + + - recorded_at: Fri, 15 Mar 2024 17:30:24 GMT + recorded_at: Tue, 19 Mar 2024 21:50:50 GMT recorded_with: VCR 6.2.0 diff --git a/src/api/spec/cassettes/Requests/a_request_with_patchinfo/shows_category_badge.yml b/src/api/spec/cassettes/Requests/a_request_with_patchinfo/shows_category_badge.yml index 043df1bdd54..ff8feb4d918 100644 --- a/src/api/spec/cassettes/Requests/a_request_with_patchinfo/shows_category_badge.yml +++ b/src/api/spec/cassettes/Requests/a_request_with_patchinfo/shows_category_badge.yml @@ -1,202 +1,5 @@ --- http_interactions: -- request: - method: put - uri: http://backend:5352/source/home:kugelblitz/_meta?user=kugelblitz - body: - encoding: UTF-8 - string: | - - - <description/> - <person userid="kugelblitz" role="maintainer"/> - </project> - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '142' - body: - encoding: UTF-8 - string: | - <project name="home:kugelblitz"> - <title> - - - - recorded_at: Fri, 15 Mar 2024 17:19:09 GMT -- request: - method: put - uri: http://backend:5352/source/home:kugelblitz/patchinfo/_meta?user=kugelblitz - body: - encoding: UTF-8 - string: | - - Patchinfo - Collected packages for update - - - - - - - - - - - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '272' - body: - encoding: UTF-8 - string: | - - Patchinfo - Collected packages for update - - - - - - - - - - - recorded_at: Fri, 15 Mar 2024 17:19:14 GMT -- request: - method: put - uri: http://backend:5352/source/home:kugelblitz/patchinfo/_patchinfo?comment=generated%20by%20createpatchinfo%20call&user=kugelblitz - body: - encoding: UTF-8 - string: |- - - recommended - low - kugelblitz - - - - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '243' - body: - encoding: UTF-8 - string: | - - ad6350770882b0851e64646bc9a83d06 - unknown - - kugelblitz - generated by createpatchinfo call - - - recorded_at: Fri, 15 Mar 2024 17:19:14 GMT -- request: - method: put - uri: http://backend:5352/source/home:kugelblitz/patchinfo/_meta?user=kugelblitz - body: - encoding: UTF-8 - string: | - - Patchinfo - Collected packages for update - - - - - - - - - - - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '272' - body: - encoding: UTF-8 - string: | - - Patchinfo - Collected packages for update - - - - - - - - - - - recorded_at: Fri, 15 Mar 2024 17:19:14 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/patchinfo @@ -226,10 +29,10 @@ http_interactions: body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:19:14 GMT + recorded_at: Mon, 18 Mar 2024 12:14:17 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/patchinfo?view=info @@ -259,10 +62,10 @@ http_interactions: body: encoding: UTF-8 string: | - + _patchinfo - recorded_at: Fri, 15 Mar 2024 17:19:14 GMT + recorded_at: Mon, 18 Mar 2024 12:14:17 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/patchinfo @@ -292,10 +95,10 @@ http_interactions: body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:19:14 GMT + recorded_at: Mon, 18 Mar 2024 12:14:17 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/patchinfo/_patchinfo @@ -332,141 +135,16 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:19:14 GMT + recorded_at: Mon, 18 Mar 2024 12:14:17 GMT - request: - method: put - uri: http://backend:5352/source/home:kugelblitz/ball/_meta?user=kugelblitz - body: - encoding: UTF-8 - string: | - - No Longer at Ease - Accusantium eum officia quos. - - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '153' - body: - encoding: UTF-8 - string: | - - No Longer at Ease - Accusantium eum officia quos. - - recorded_at: Fri, 15 Mar 2024 17:19:14 GMT -- request: - method: put - uri: http://backend:5352/source/home:titan/_meta?user=titan - body: - encoding: UTF-8 - string: | - - - <description/> - <person userid="titan" role="maintainer"/> - </project> - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '132' - body: - encoding: UTF-8 - string: | - <project name="home:titan"> - <title> - - - - recorded_at: Fri, 15 Mar 2024 17:19:14 GMT -- request: - method: put - uri: http://backend:5352/source/MaintenanceProject/_meta?user=kugelblitz - body: - encoding: UTF-8 - string: | - - official maintenance space - - - - - - - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '221' - body: - encoding: UTF-8 - string: | - - official maintenance space - - - - - - - recorded_at: Fri, 15 Mar 2024 17:19:14 GMT -- request: - method: put - uri: http://backend:5352/source/MaintenanceProject/_project/_attribute?meta=1&user=kugelblitz + method: get + uri: http://backend:5352/build/home:kugelblitz/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status body: - encoding: UTF-8 - string: | - - - + encoding: US-ASCII + string: '' headers: + X-Request-Id: + - 18fe51d6-9521-4d34-a4a9-bdf414cffecb Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -485,32 +163,19 @@ http_interactions: Connection: - close Content-Length: - - '172' + - '55' body: encoding: UTF-8 - string: | - - 45aed8f5a3bea1c585a60f0b0af875d4 - - kugelblitz - - - - recorded_at: Fri, 15 Mar 2024 17:19:14 GMT + string: ' + +' + recorded_at: Mon, 18 Mar 2024 12:14:18 GMT - request: - method: put - uri: http://backend:5352/source/MaintenanceProject/_meta?user=kugelblitz + method: get + uri: http://backend:5352/source/home:kugelblitz/ball.home_titan body: - encoding: UTF-8 - string: | - - official maintenance space - - - - - - + encoding: US-ASCII + string: '' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -520,8 +185,8 @@ http_interactions: - Ruby response: status: - code: 200 - message: OK + code: 404 + message: package 'ball.home_titan' does not exist headers: Content-Type: - text/xml @@ -530,19 +195,15 @@ http_interactions: Connection: - close Content-Length: - - '221' + - '158' body: encoding: UTF-8 string: | - - official maintenance space - - - - - - - recorded_at: Fri, 15 Mar 2024 17:19:14 GMT + + package 'ball.home_titan' does not exist +
404 package 'ball.home_titan' does not exist
+
+ recorded_at: Mon, 18 Mar 2024 12:14:18 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/ball.home_titan @@ -550,6 +211,8 @@ http_interactions: encoding: US-ASCII string: '' headers: + X-Request-Id: + - 18fe51d6-9521-4d34-a4a9-bdf414cffecb Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -576,7 +239,7 @@ http_interactions: package 'ball.home_titan' does not exist
404 package 'ball.home_titan' does not exist
- recorded_at: Fri, 15 Mar 2024 17:19:14 GMT + recorded_at: Mon, 18 Mar 2024 12:14:18 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/ball.home_titan @@ -584,6 +247,8 @@ http_interactions: encoding: US-ASCII string: '' headers: + X-Request-Id: + - 18fe51d6-9521-4d34-a4a9-bdf414cffecb Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -610,16 +275,18 @@ http_interactions: package 'ball.home_titan' does not exist
404 package 'ball.home_titan' does not exist
- recorded_at: Fri, 15 Mar 2024 17:19:14 GMT + recorded_at: Mon, 18 Mar 2024 12:14:18 GMT - request: method: post - uri: http://backend:5352/source/home:kugelblitz/ball.home_titan?cmd=diff&expand=1&filelimit=10000&orev=0&rev=&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:kugelblitz/ball.home_titan?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' headers: Content-Type: - application/octet-stream + X-Request-Id: + - 18fe51d6-9521-4d34-a4a9-bdf414cffecb Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -645,160 +312,7 @@ http_interactions: revision is empty - recorded_at: Fri, 15 Mar 2024 17:19:14 GMT -- request: - method: get - uri: http://backend:5352/source/home:kugelblitz/patchinfo - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '199' - body: - encoding: UTF-8 - string: | - - - - recorded_at: Fri, 15 Mar 2024 17:19:15 GMT -- request: - method: get - uri: http://backend:5352/source/home:kugelblitz/patchinfo - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '199' - body: - encoding: UTF-8 - string: | - - - - recorded_at: Fri, 15 Mar 2024 17:19:15 GMT -- request: - method: post - uri: http://backend:5352/source/home:kugelblitz/patchinfo?cmd=diff&expand=1&filelimit=10000&orev=0&rev=2&tarlimit=10000&view=xml&withissues=1 - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '726' - body: - encoding: UTF-8 - string: | - - - - - - - @@ -0,0 +1,7 @@ - +<patchinfo> - + <category>recommended</category> - + <rating>low</rating> - + <packager>kugelblitz</packager> - + <summary/> - + <description/> - +</patchinfo> - \ No newline at end of file - - - - - - - recorded_at: Fri, 15 Mar 2024 17:19:15 GMT -- request: - method: get - uri: http://backend:5352/build/home:kugelblitz/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status - body: - encoding: US-ASCII - string: '' - headers: - X-Request-Id: - - 5cc21e4e-aac4-4402-b45b-db60af20cf88 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '55' - body: - encoding: UTF-8 - string: ' - -' - recorded_at: Fri, 15 Mar 2024 17:19:15 GMT + recorded_at: Mon, 18 Mar 2024 12:14:18 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/ball.home_titan @@ -832,7 +346,7 @@ http_interactions: package 'ball.home_titan' does not exist
404 package 'ball.home_titan' does not exist
- recorded_at: Fri, 15 Mar 2024 17:19:15 GMT + recorded_at: Mon, 18 Mar 2024 12:14:18 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/ball.home_titan @@ -841,7 +355,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 5cc21e4e-aac4-4402-b45b-db60af20cf88 + - 18fe51d6-9521-4d34-a4a9-bdf414cffecb Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -868,7 +382,7 @@ http_interactions: package 'ball.home_titan' does not exist
404 package 'ball.home_titan' does not exist
- recorded_at: Fri, 15 Mar 2024 17:19:15 GMT + recorded_at: Mon, 18 Mar 2024 12:14:18 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/ball.home_titan @@ -877,7 +391,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 5cc21e4e-aac4-4402-b45b-db60af20cf88 + - 18fe51d6-9521-4d34-a4a9-bdf414cffecb Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -904,7 +418,7 @@ http_interactions: package 'ball.home_titan' does not exist
404 package 'ball.home_titan' does not exist
- recorded_at: Fri, 15 Mar 2024 17:19:15 GMT + recorded_at: Mon, 18 Mar 2024 12:14:18 GMT - request: method: post uri: http://backend:5352/source/home:kugelblitz/ball.home_titan?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=&tarlimit=10000&view=xml&withissues=1 @@ -915,7 +429,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 5cc21e4e-aac4-4402-b45b-db60af20cf88 + - 18fe51d6-9521-4d34-a4a9-bdf414cffecb Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -941,7 +455,7 @@ http_interactions: revision is empty - recorded_at: Fri, 15 Mar 2024 17:19:15 GMT + recorded_at: Mon, 18 Mar 2024 12:14:18 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/patchinfo @@ -950,7 +464,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 5cc21e4e-aac4-4402-b45b-db60af20cf88 + - 18fe51d6-9521-4d34-a4a9-bdf414cffecb Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -973,13 +487,13 @@ http_interactions: body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:19:15 GMT + recorded_at: Mon, 18 Mar 2024 12:14:18 GMT - request: method: get - uri: http://backend:5352/source/home:kugelblitz/patchinfo/_patchinfo?rev=2 + uri: http://backend:5352/source/home:kugelblitz/patchinfo/_patchinfo?rev=9 body: encoding: US-ASCII string: '' @@ -1013,7 +527,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:19:15 GMT + recorded_at: Mon, 18 Mar 2024 12:14:18 GMT - request: method: get uri: http://backend:5352/build/home:kugelblitz/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status @@ -1022,7 +536,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 24c92294-5270-450e-849a-bc056855e17b + - 39b46519-1afc-47e3-aea2-7d922789cc2d Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1047,5 +561,5 @@ http_interactions: string: ' ' - recorded_at: Fri, 15 Mar 2024 17:19:15 GMT + recorded_at: Mon, 18 Mar 2024 12:14:18 GMT recorded_with: VCR 6.2.0 diff --git a/src/api/spec/cassettes/Requests/a_request_with_patchinfo/shows_patch_information.yml b/src/api/spec/cassettes/Requests/a_request_with_patchinfo/shows_patch_information.yml index 51402119eb8..1bc97078aca 100644 --- a/src/api/spec/cassettes/Requests/a_request_with_patchinfo/shows_patch_information.yml +++ b/src/api/spec/cassettes/Requests/a_request_with_patchinfo/shows_patch_information.yml @@ -1,202 +1,5 @@ --- http_interactions: -- request: - method: put - uri: http://backend:5352/source/home:kugelblitz/_meta?user=kugelblitz - body: - encoding: UTF-8 - string: | - - - <description/> - <person userid="kugelblitz" role="maintainer"/> - </project> - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '142' - body: - encoding: UTF-8 - string: | - <project name="home:kugelblitz"> - <title> - - - - recorded_at: Fri, 15 Mar 2024 17:18:40 GMT -- request: - method: put - uri: http://backend:5352/source/home:kugelblitz/patchinfo/_meta?user=kugelblitz - body: - encoding: UTF-8 - string: | - - Patchinfo - Collected packages for update - - - - - - - - - - - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '272' - body: - encoding: UTF-8 - string: | - - Patchinfo - Collected packages for update - - - - - - - - - - - recorded_at: Fri, 15 Mar 2024 17:18:44 GMT -- request: - method: put - uri: http://backend:5352/source/home:kugelblitz/patchinfo/_patchinfo?comment=generated%20by%20createpatchinfo%20call&user=kugelblitz - body: - encoding: UTF-8 - string: |- - - recommended - low - kugelblitz - - - - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '243' - body: - encoding: UTF-8 - string: | - - ad6350770882b0851e64646bc9a83d06 - unknown - - kugelblitz - generated by createpatchinfo call - - - recorded_at: Fri, 15 Mar 2024 17:18:44 GMT -- request: - method: put - uri: http://backend:5352/source/home:kugelblitz/patchinfo/_meta?user=kugelblitz - body: - encoding: UTF-8 - string: | - - Patchinfo - Collected packages for update - - - - - - - - - - - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '272' - body: - encoding: UTF-8 - string: | - - Patchinfo - Collected packages for update - - - - - - - - - - - recorded_at: Fri, 15 Mar 2024 17:18:44 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/patchinfo @@ -226,10 +29,10 @@ http_interactions: body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:18:44 GMT + recorded_at: Mon, 18 Mar 2024 12:14:19 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/patchinfo?view=info @@ -259,10 +62,10 @@ http_interactions: body: encoding: UTF-8 string: | - + _patchinfo - recorded_at: Fri, 15 Mar 2024 17:18:44 GMT + recorded_at: Mon, 18 Mar 2024 12:14:19 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/patchinfo @@ -292,10 +95,10 @@ http_interactions: body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:18:44 GMT + recorded_at: Mon, 18 Mar 2024 12:14:19 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/patchinfo/_patchinfo @@ -332,141 +135,16 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:18:45 GMT -- request: - method: put - uri: http://backend:5352/source/home:kugelblitz/ball/_meta?user=kugelblitz - body: - encoding: UTF-8 - string: | - - Bury My Heart at Wounded Knee - Aut aperiam omnis sit. - - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '158' - body: - encoding: UTF-8 - string: | - - Bury My Heart at Wounded Knee - Aut aperiam omnis sit. - - recorded_at: Fri, 15 Mar 2024 17:18:45 GMT -- request: - method: put - uri: http://backend:5352/source/home:titan/_meta?user=titan - body: - encoding: UTF-8 - string: | - - - <description/> - <person userid="titan" role="maintainer"/> - </project> - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '132' - body: - encoding: UTF-8 - string: | - <project name="home:titan"> - <title> - - - - recorded_at: Fri, 15 Mar 2024 17:18:45 GMT -- request: - method: put - uri: http://backend:5352/source/MaintenanceProject/_meta?user=kugelblitz - body: - encoding: UTF-8 - string: | - - official maintenance space - - - - - - - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '221' - body: - encoding: UTF-8 - string: | - - official maintenance space - - - - - - - recorded_at: Fri, 15 Mar 2024 17:18:45 GMT + recorded_at: Mon, 18 Mar 2024 12:14:19 GMT - request: - method: put - uri: http://backend:5352/source/MaintenanceProject/_project/_attribute?meta=1&user=kugelblitz + method: get + uri: http://backend:5352/build/home:kugelblitz/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status body: - encoding: UTF-8 - string: | - - - + encoding: US-ASCII + string: '' headers: + X-Request-Id: + - 7221b56a-e263-41f5-9476-574334be6f97 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -485,32 +163,19 @@ http_interactions: Connection: - close Content-Length: - - '172' + - '55' body: encoding: UTF-8 - string: | - - 45aed8f5a3bea1c585a60f0b0af875d4 - - kugelblitz - - - - recorded_at: Fri, 15 Mar 2024 17:18:45 GMT + string: ' + +' + recorded_at: Mon, 18 Mar 2024 12:14:19 GMT - request: - method: put - uri: http://backend:5352/source/MaintenanceProject/_meta?user=kugelblitz + method: get + uri: http://backend:5352/source/home:kugelblitz/ball.home_titan body: - encoding: UTF-8 - string: | - - official maintenance space - - - - - - + encoding: US-ASCII + string: '' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -520,8 +185,8 @@ http_interactions: - Ruby response: status: - code: 200 - message: OK + code: 404 + message: package 'ball.home_titan' does not exist headers: Content-Type: - text/xml @@ -530,19 +195,15 @@ http_interactions: Connection: - close Content-Length: - - '221' + - '158' body: encoding: UTF-8 string: | - - official maintenance space - - - - - - - recorded_at: Fri, 15 Mar 2024 17:18:45 GMT + + package 'ball.home_titan' does not exist +
404 package 'ball.home_titan' does not exist
+
+ recorded_at: Mon, 18 Mar 2024 12:14:19 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/ball.home_titan @@ -550,6 +211,8 @@ http_interactions: encoding: US-ASCII string: '' headers: + X-Request-Id: + - 7221b56a-e263-41f5-9476-574334be6f97 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -576,7 +239,7 @@ http_interactions: package 'ball.home_titan' does not exist
404 package 'ball.home_titan' does not exist
- recorded_at: Fri, 15 Mar 2024 17:18:45 GMT + recorded_at: Mon, 18 Mar 2024 12:14:19 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/ball.home_titan @@ -584,6 +247,8 @@ http_interactions: encoding: US-ASCII string: '' headers: + X-Request-Id: + - 7221b56a-e263-41f5-9476-574334be6f97 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -610,16 +275,18 @@ http_interactions: package 'ball.home_titan' does not exist
404 package 'ball.home_titan' does not exist
- recorded_at: Fri, 15 Mar 2024 17:18:45 GMT + recorded_at: Mon, 18 Mar 2024 12:14:19 GMT - request: method: post - uri: http://backend:5352/source/home:kugelblitz/ball.home_titan?cmd=diff&expand=1&filelimit=10000&orev=0&rev=&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:kugelblitz/ball.home_titan?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' headers: Content-Type: - application/octet-stream + X-Request-Id: + - 7221b56a-e263-41f5-9476-574334be6f97 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -645,160 +312,7 @@ http_interactions: revision is empty - recorded_at: Fri, 15 Mar 2024 17:18:45 GMT -- request: - method: get - uri: http://backend:5352/source/home:kugelblitz/patchinfo - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '199' - body: - encoding: UTF-8 - string: | - - - - recorded_at: Fri, 15 Mar 2024 17:18:45 GMT -- request: - method: get - uri: http://backend:5352/source/home:kugelblitz/patchinfo - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '199' - body: - encoding: UTF-8 - string: | - - - - recorded_at: Fri, 15 Mar 2024 17:18:45 GMT -- request: - method: post - uri: http://backend:5352/source/home:kugelblitz/patchinfo?cmd=diff&expand=1&filelimit=10000&orev=0&rev=1&tarlimit=10000&view=xml&withissues=1 - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '726' - body: - encoding: UTF-8 - string: | - - - - - - - @@ -0,0 +1,7 @@ - +<patchinfo> - + <category>recommended</category> - + <rating>low</rating> - + <packager>kugelblitz</packager> - + <summary/> - + <description/> - +</patchinfo> - \ No newline at end of file - - - - - - - recorded_at: Fri, 15 Mar 2024 17:18:45 GMT -- request: - method: get - uri: http://backend:5352/build/home:kugelblitz/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status - body: - encoding: US-ASCII - string: '' - headers: - X-Request-Id: - - a3a84a47-03ae-465a-b499-948389f710ad - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '55' - body: - encoding: UTF-8 - string: ' - -' - recorded_at: Fri, 15 Mar 2024 17:18:45 GMT + recorded_at: Mon, 18 Mar 2024 12:14:19 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/ball.home_titan @@ -832,7 +346,7 @@ http_interactions: package 'ball.home_titan' does not exist
404 package 'ball.home_titan' does not exist
- recorded_at: Fri, 15 Mar 2024 17:18:45 GMT + recorded_at: Mon, 18 Mar 2024 12:14:19 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/ball.home_titan @@ -841,7 +355,7 @@ http_interactions: string: '' headers: X-Request-Id: - - a3a84a47-03ae-465a-b499-948389f710ad + - 7221b56a-e263-41f5-9476-574334be6f97 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -868,7 +382,7 @@ http_interactions: package 'ball.home_titan' does not exist
404 package 'ball.home_titan' does not exist
- recorded_at: Fri, 15 Mar 2024 17:18:45 GMT + recorded_at: Mon, 18 Mar 2024 12:14:19 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/ball.home_titan @@ -877,7 +391,7 @@ http_interactions: string: '' headers: X-Request-Id: - - a3a84a47-03ae-465a-b499-948389f710ad + - 7221b56a-e263-41f5-9476-574334be6f97 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -904,7 +418,7 @@ http_interactions: package 'ball.home_titan' does not exist
404 package 'ball.home_titan' does not exist
- recorded_at: Fri, 15 Mar 2024 17:18:45 GMT + recorded_at: Mon, 18 Mar 2024 12:14:19 GMT - request: method: post uri: http://backend:5352/source/home:kugelblitz/ball.home_titan?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=&tarlimit=10000&view=xml&withissues=1 @@ -915,7 +429,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - a3a84a47-03ae-465a-b499-948389f710ad + - 7221b56a-e263-41f5-9476-574334be6f97 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -941,7 +455,7 @@ http_interactions: revision is empty - recorded_at: Fri, 15 Mar 2024 17:18:45 GMT + recorded_at: Mon, 18 Mar 2024 12:14:19 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/patchinfo @@ -950,7 +464,7 @@ http_interactions: string: '' headers: X-Request-Id: - - a3a84a47-03ae-465a-b499-948389f710ad + - 7221b56a-e263-41f5-9476-574334be6f97 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -973,13 +487,13 @@ http_interactions: body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:18:45 GMT + recorded_at: Mon, 18 Mar 2024 12:14:19 GMT - request: method: get - uri: http://backend:5352/source/home:kugelblitz/patchinfo/_patchinfo?rev=1 + uri: http://backend:5352/source/home:kugelblitz/patchinfo/_patchinfo?rev=9 body: encoding: US-ASCII string: '' @@ -1013,7 +527,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:18:45 GMT + recorded_at: Mon, 18 Mar 2024 12:14:19 GMT - request: method: get uri: http://backend:5352/build/home:kugelblitz/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status @@ -1022,7 +536,7 @@ http_interactions: string: '' headers: X-Request-Id: - - c111c768-b0a8-4481-a193-eac1799c2663 + - 2ce97d81-31a9-4e21-a3d4-833b7f733a1d Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1047,5 +561,5 @@ http_interactions: string: ' ' - recorded_at: Fri, 15 Mar 2024 17:18:46 GMT + recorded_at: Mon, 18 Mar 2024 12:14:19 GMT recorded_with: VCR 6.2.0 diff --git a/src/api/spec/cassettes/Requests/a_request_with_patchinfo/shows_rating_badge.yml b/src/api/spec/cassettes/Requests/a_request_with_patchinfo/shows_rating_badge.yml index 7dd0cfa4fd0..c776730cc60 100644 --- a/src/api/spec/cassettes/Requests/a_request_with_patchinfo/shows_rating_badge.yml +++ b/src/api/spec/cassettes/Requests/a_request_with_patchinfo/shows_rating_badge.yml @@ -1,202 +1,5 @@ --- http_interactions: -- request: - method: put - uri: http://backend:5352/source/home:kugelblitz/_meta?user=kugelblitz - body: - encoding: UTF-8 - string: | - - - <description/> - <person userid="kugelblitz" role="maintainer"/> - </project> - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '142' - body: - encoding: UTF-8 - string: | - <project name="home:kugelblitz"> - <title> - - - - recorded_at: Fri, 15 Mar 2024 17:19:27 GMT -- request: - method: put - uri: http://backend:5352/source/home:kugelblitz/patchinfo/_meta?user=kugelblitz - body: - encoding: UTF-8 - string: | - - Patchinfo - Collected packages for update - - - - - - - - - - - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '272' - body: - encoding: UTF-8 - string: | - - Patchinfo - Collected packages for update - - - - - - - - - - - recorded_at: Fri, 15 Mar 2024 17:19:32 GMT -- request: - method: put - uri: http://backend:5352/source/home:kugelblitz/patchinfo/_patchinfo?comment=generated%20by%20createpatchinfo%20call&user=kugelblitz - body: - encoding: UTF-8 - string: |- - - recommended - low - kugelblitz - - - - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '243' - body: - encoding: UTF-8 - string: | - - ad6350770882b0851e64646bc9a83d06 - unknown - - kugelblitz - generated by createpatchinfo call - - - recorded_at: Fri, 15 Mar 2024 17:19:32 GMT -- request: - method: put - uri: http://backend:5352/source/home:kugelblitz/patchinfo/_meta?user=kugelblitz - body: - encoding: UTF-8 - string: | - - Patchinfo - Collected packages for update - - - - - - - - - - - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '272' - body: - encoding: UTF-8 - string: | - - Patchinfo - Collected packages for update - - - - - - - - - - - recorded_at: Fri, 15 Mar 2024 17:19:32 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/patchinfo @@ -226,10 +29,10 @@ http_interactions: body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:19:32 GMT + recorded_at: Mon, 18 Mar 2024 12:14:21 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/patchinfo?view=info @@ -259,10 +62,10 @@ http_interactions: body: encoding: UTF-8 string: | - + _patchinfo - recorded_at: Fri, 15 Mar 2024 17:19:32 GMT + recorded_at: Mon, 18 Mar 2024 12:14:21 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/patchinfo @@ -292,10 +95,10 @@ http_interactions: body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:19:32 GMT + recorded_at: Mon, 18 Mar 2024 12:14:21 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/patchinfo/_patchinfo @@ -332,141 +135,16 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:19:32 GMT + recorded_at: Mon, 18 Mar 2024 12:14:21 GMT - request: - method: put - uri: http://backend:5352/source/home:kugelblitz/ball/_meta?user=kugelblitz - body: - encoding: UTF-8 - string: | - - The Violent Bear It Away - Et autem doloremque quo. - - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '155' - body: - encoding: UTF-8 - string: | - - The Violent Bear It Away - Et autem doloremque quo. - - recorded_at: Fri, 15 Mar 2024 17:19:32 GMT -- request: - method: put - uri: http://backend:5352/source/home:titan/_meta?user=titan - body: - encoding: UTF-8 - string: | - - - <description/> - <person userid="titan" role="maintainer"/> - </project> - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '132' - body: - encoding: UTF-8 - string: | - <project name="home:titan"> - <title> - - - - recorded_at: Fri, 15 Mar 2024 17:19:33 GMT -- request: - method: put - uri: http://backend:5352/source/MaintenanceProject/_meta?user=kugelblitz - body: - encoding: UTF-8 - string: | - - official maintenance space - - - - - - - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '221' - body: - encoding: UTF-8 - string: | - - official maintenance space - - - - - - - recorded_at: Fri, 15 Mar 2024 17:19:33 GMT -- request: - method: put - uri: http://backend:5352/source/MaintenanceProject/_project/_attribute?meta=1&user=kugelblitz + method: get + uri: http://backend:5352/build/home:kugelblitz/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status body: - encoding: UTF-8 - string: | - - - + encoding: US-ASCII + string: '' headers: + X-Request-Id: + - 5cad2328-1445-4134-9bf7-3f0770083f00 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -485,32 +163,19 @@ http_interactions: Connection: - close Content-Length: - - '172' + - '55' body: encoding: UTF-8 - string: | - - 45aed8f5a3bea1c585a60f0b0af875d4 - - kugelblitz - - - - recorded_at: Fri, 15 Mar 2024 17:19:33 GMT + string: ' + +' + recorded_at: Mon, 18 Mar 2024 12:14:21 GMT - request: - method: put - uri: http://backend:5352/source/MaintenanceProject/_meta?user=kugelblitz + method: get + uri: http://backend:5352/source/home:kugelblitz/ball.home_titan body: - encoding: UTF-8 - string: | - - official maintenance space - - - - - - + encoding: US-ASCII + string: '' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -520,8 +185,8 @@ http_interactions: - Ruby response: status: - code: 200 - message: OK + code: 404 + message: package 'ball.home_titan' does not exist headers: Content-Type: - text/xml @@ -530,19 +195,15 @@ http_interactions: Connection: - close Content-Length: - - '221' + - '158' body: encoding: UTF-8 string: | - - official maintenance space - - - - - - - recorded_at: Fri, 15 Mar 2024 17:19:33 GMT + + package 'ball.home_titan' does not exist +
404 package 'ball.home_titan' does not exist
+
+ recorded_at: Mon, 18 Mar 2024 12:14:21 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/ball.home_titan @@ -550,6 +211,8 @@ http_interactions: encoding: US-ASCII string: '' headers: + X-Request-Id: + - 5cad2328-1445-4134-9bf7-3f0770083f00 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -576,7 +239,7 @@ http_interactions: package 'ball.home_titan' does not exist
404 package 'ball.home_titan' does not exist
- recorded_at: Fri, 15 Mar 2024 17:19:33 GMT + recorded_at: Mon, 18 Mar 2024 12:14:21 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/ball.home_titan @@ -584,6 +247,8 @@ http_interactions: encoding: US-ASCII string: '' headers: + X-Request-Id: + - 5cad2328-1445-4134-9bf7-3f0770083f00 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -610,16 +275,18 @@ http_interactions: package 'ball.home_titan' does not exist
404 package 'ball.home_titan' does not exist
- recorded_at: Fri, 15 Mar 2024 17:19:33 GMT + recorded_at: Mon, 18 Mar 2024 12:14:21 GMT - request: method: post - uri: http://backend:5352/source/home:kugelblitz/ball.home_titan?cmd=diff&expand=1&filelimit=10000&orev=0&rev=&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:kugelblitz/ball.home_titan?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' headers: Content-Type: - application/octet-stream + X-Request-Id: + - 5cad2328-1445-4134-9bf7-3f0770083f00 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -645,160 +312,7 @@ http_interactions: revision is empty - recorded_at: Fri, 15 Mar 2024 17:19:33 GMT -- request: - method: get - uri: http://backend:5352/source/home:kugelblitz/patchinfo - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '199' - body: - encoding: UTF-8 - string: | - - - - recorded_at: Fri, 15 Mar 2024 17:19:33 GMT -- request: - method: get - uri: http://backend:5352/source/home:kugelblitz/patchinfo - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '199' - body: - encoding: UTF-8 - string: | - - - - recorded_at: Fri, 15 Mar 2024 17:19:33 GMT -- request: - method: post - uri: http://backend:5352/source/home:kugelblitz/patchinfo?cmd=diff&expand=1&filelimit=10000&orev=0&rev=3&tarlimit=10000&view=xml&withissues=1 - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '726' - body: - encoding: UTF-8 - string: | - - - - - - - @@ -0,0 +1,7 @@ - +<patchinfo> - + <category>recommended</category> - + <rating>low</rating> - + <packager>kugelblitz</packager> - + <summary/> - + <description/> - +</patchinfo> - \ No newline at end of file - - - - - - - recorded_at: Fri, 15 Mar 2024 17:19:33 GMT -- request: - method: get - uri: http://backend:5352/build/home:kugelblitz/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status - body: - encoding: US-ASCII - string: '' - headers: - X-Request-Id: - - 9b6002a3-35ac-4af4-b9db-b087fe574b83 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '55' - body: - encoding: UTF-8 - string: ' - -' - recorded_at: Fri, 15 Mar 2024 17:19:33 GMT + recorded_at: Mon, 18 Mar 2024 12:14:21 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/ball.home_titan @@ -832,7 +346,7 @@ http_interactions: package 'ball.home_titan' does not exist
404 package 'ball.home_titan' does not exist
- recorded_at: Fri, 15 Mar 2024 17:19:33 GMT + recorded_at: Mon, 18 Mar 2024 12:14:21 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/ball.home_titan @@ -841,7 +355,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 9b6002a3-35ac-4af4-b9db-b087fe574b83 + - 5cad2328-1445-4134-9bf7-3f0770083f00 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -868,7 +382,7 @@ http_interactions: package 'ball.home_titan' does not exist
404 package 'ball.home_titan' does not exist
- recorded_at: Fri, 15 Mar 2024 17:19:33 GMT + recorded_at: Mon, 18 Mar 2024 12:14:21 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/ball.home_titan @@ -877,7 +391,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 9b6002a3-35ac-4af4-b9db-b087fe574b83 + - 5cad2328-1445-4134-9bf7-3f0770083f00 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -904,7 +418,7 @@ http_interactions: package 'ball.home_titan' does not exist
404 package 'ball.home_titan' does not exist
- recorded_at: Fri, 15 Mar 2024 17:19:33 GMT + recorded_at: Mon, 18 Mar 2024 12:14:21 GMT - request: method: post uri: http://backend:5352/source/home:kugelblitz/ball.home_titan?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=&tarlimit=10000&view=xml&withissues=1 @@ -915,7 +429,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - 9b6002a3-35ac-4af4-b9db-b087fe574b83 + - 5cad2328-1445-4134-9bf7-3f0770083f00 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -941,7 +455,7 @@ http_interactions: revision is empty - recorded_at: Fri, 15 Mar 2024 17:19:33 GMT + recorded_at: Mon, 18 Mar 2024 12:14:21 GMT - request: method: get uri: http://backend:5352/source/home:kugelblitz/patchinfo @@ -950,7 +464,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 9b6002a3-35ac-4af4-b9db-b087fe574b83 + - 5cad2328-1445-4134-9bf7-3f0770083f00 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -973,13 +487,13 @@ http_interactions: body: encoding: UTF-8 string: | - + - recorded_at: Fri, 15 Mar 2024 17:19:33 GMT + recorded_at: Mon, 18 Mar 2024 12:14:21 GMT - request: method: get - uri: http://backend:5352/source/home:kugelblitz/patchinfo/_patchinfo?rev=3 + uri: http://backend:5352/source/home:kugelblitz/patchinfo/_patchinfo?rev=9 body: encoding: US-ASCII string: '' @@ -1013,7 +527,7 @@ http_interactions: - recorded_at: Fri, 15 Mar 2024 17:19:33 GMT + recorded_at: Mon, 18 Mar 2024 12:14:21 GMT - request: method: get uri: http://backend:5352/build/home:kugelblitz/_result?lastbuild=0&locallink=1&multibuild=1&package=patchinfo&view=status @@ -1022,7 +536,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 997de04d-fd26-4166-abe8-f4ebb2a26d8f + - e957a7d5-2560-4479-a0f2-539efd172983 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1047,5 +561,5 @@ http_interactions: string: ' ' - recorded_at: Fri, 15 Mar 2024 17:19:34 GMT + recorded_at: Mon, 18 Mar 2024 12:14:21 GMT recorded_with: VCR 6.2.0 diff --git a/src/api/spec/cassettes/Requests_Submissions/submit_package/when_under_the_beta_program/a_request_that_has_a_broken_comment/displays_the_comment_in_the_timeline.yml b/src/api/spec/cassettes/Requests_Submissions/submit_package/when_under_the_beta_program/a_request_that_has_a_broken_comment/displays_the_comment_in_the_timeline.yml index 5778e4bab7a..7c04e1c732b 100644 --- a/src/api/spec/cassettes/Requests_Submissions/submit_package/when_under_the_beta_program/a_request_that_has_a_broken_comment/displays_the_comment_in_the_timeline.yml +++ b/src/api/spec/cassettes/Requests_Submissions/submit_package/when_under_the_beta_program/a_request_that_has_a_broken_comment/displays_the_comment_in_the_timeline.yml @@ -39,16 +39,16 @@ http_interactions: - recorded_at: Tue, 19 Mar 2024 13:45:44 GMT + recorded_at: Fri, 22 Mar 2024 09:11:42 GMT - request: method: put - uri: http://backend:5352/source/home:mr_receiver/Quebec/_meta?user=user_3 + uri: http://backend:5352/source/home:mr_receiver/Quebec/_meta?user=user_1 body: encoding: UTF-8 string: | - Look Homeward, Angel - Sunt similique doloribus reiciendis. + An Instant In The Wind + Voluptas unde ut perspiciatis. headers: Accept-Encoding: @@ -69,21 +69,21 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '162' body: encoding: UTF-8 string: | - Look Homeward, Angel - Sunt similique doloribus reiciendis. + An Instant In The Wind + Voluptas unde ut perspiciatis. - recorded_at: Tue, 19 Mar 2024 13:45:44 GMT + recorded_at: Fri, 22 Mar 2024 09:11:42 GMT - request: method: put uri: http://backend:5352/source/home:mr_receiver/Quebec/_config body: encoding: UTF-8 - string: Dolor quia asperiores. Placeat dolores dolor. Qui aut alias. + string: In rerum consequatur. Similique quia ipsam. Quaerat quidem dicta. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -103,25 +103,25 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '209' body: encoding: UTF-8 string: | - - ce16a88d4226bb2187b379f15c5079b3 + + 94cdd38459eec2e10b3437f7972edee8 unknown - + unknown - recorded_at: Tue, 19 Mar 2024 13:45:44 GMT + recorded_at: Fri, 22 Mar 2024 09:11:42 GMT - request: method: put uri: http://backend:5352/source/home:mr_receiver/Quebec/somefile.txt body: encoding: UTF-8 - string: Molestiae dolore repellat. Id incidunt sunt. Voluptas pariatur sint. + string: Corrupti et voluptate. Aut omnis repellendus. Sed quis sint. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -141,19 +141,19 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '209' body: encoding: UTF-8 string: | - - a4a269b52d76e39263fe5598b9a0ed81 + + 1497da6b4ce70597f5e8a4b7d44968ad unknown - + unknown - recorded_at: Tue, 19 Mar 2024 13:45:44 GMT + recorded_at: Fri, 22 Mar 2024 09:11:42 GMT - request: method: put uri: http://backend:5352/source/home:madam_submitter/_meta?user=madam_submitter @@ -193,16 +193,16 @@ http_interactions: - recorded_at: Tue, 19 Mar 2024 13:45:44 GMT + recorded_at: Fri, 22 Mar 2024 09:11:42 GMT - request: method: put - uri: http://backend:5352/source/home:madam_submitter/Quebec/_meta?user=user_4 + uri: http://backend:5352/source/home:madam_submitter/Quebec/_meta?user=user_2 body: encoding: UTF-8 string: | - Beneath the Bleeding - Illum et vel earum. + Wildfire at Midnight + Culpa et doloremque corrupti. headers: Accept-Encoding: @@ -223,21 +223,21 @@ http_interactions: Connection: - close Content-Length: - - '153' + - '163' body: encoding: UTF-8 string: | - Beneath the Bleeding - Illum et vel earum. + Wildfire at Midnight + Culpa et doloremque corrupti. - recorded_at: Tue, 19 Mar 2024 13:45:44 GMT + recorded_at: Fri, 22 Mar 2024 09:11:42 GMT - request: method: put uri: http://backend:5352/source/home:madam_submitter/Quebec/_config body: encoding: UTF-8 - string: Mollitia quos id. Debitis recusandae modi. Qui totam soluta. + string: Dolor facere et. Magnam et eius. Dolores velit illum. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -257,25 +257,25 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '209' body: encoding: UTF-8 string: | - - bd7af4a760a28e239f9548f3ad241cde + + 41f4680e0cce8af5582e6820c66848bc unknown - + unknown - recorded_at: Tue, 19 Mar 2024 13:45:44 GMT + recorded_at: Fri, 22 Mar 2024 09:11:42 GMT - request: method: put uri: http://backend:5352/source/home:madam_submitter/Quebec/somefile.txt body: encoding: UTF-8 - string: Nulla quaerat et. Sed numquam suscipit. Laudantium voluptatem minima. + string: Itaque ut odit. Aut sequi fuga. Placeat labore sequi. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -295,19 +295,19 @@ http_interactions: Connection: - close Content-Length: - - '207' + - '209' body: encoding: UTF-8 string: | - - d7cce9aa23b37073b8757523548d7048 + + 18b0c999b75804773944b4189aac07b2 unknown - + unknown - recorded_at: Tue, 19 Mar 2024 13:45:44 GMT + recorded_at: Fri, 22 Mar 2024 09:11:42 GMT - request: method: get uri: http://backend:5352/source/home:madam_submitter/Quebec @@ -333,15 +333,15 @@ http_interactions: Connection: - close Content-Length: - - '291' + - '293' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Tue, 19 Mar 2024 13:45:44 GMT + recorded_at: Fri, 22 Mar 2024 09:11:42 GMT - request: method: post uri: http://backend:5352/source/home:madam_submitter/Quebec?cmd=diff&expand=1&filelimit=10000&opackage=Quebec&oproject=home:mr_receiver&tarlimit=10000&view=xml&withissues=1 @@ -369,31 +369,31 @@ http_interactions: Connection: - close Content-Length: - - '1185' + - '1161' body: encoding: UTF-8 string: | - - - + + + - - + + @@ -1,1 +1,1 @@ - -Dolor quia asperiores. Placeat dolores dolor. Qui aut alias. + -In rerum consequatur. Similique quia ipsam. Quaerat quidem dicta. \ No newline at end of file - +Mollitia quos id. Debitis recusandae modi. Qui totam soluta. + +Dolor facere et. Magnam et eius. Dolores velit illum. \ No newline at end of file - - + + @@ -1,1 +1,1 @@ - -Molestiae dolore repellat. Id incidunt sunt. Voluptas pariatur sint. + -Corrupti et voluptate. Aut omnis repellendus. Sed quis sint. \ No newline at end of file - +Nulla quaerat et. Sed numquam suscipit. Laudantium voluptatem minima. + +Itaque ut odit. Aut sequi fuga. Placeat labore sequi. \ No newline at end of file @@ -401,7 +401,7 @@ http_interactions: - recorded_at: Tue, 19 Mar 2024 13:45:44 GMT + recorded_at: Fri, 22 Mar 2024 09:11:42 GMT - request: method: get uri: http://backend:5352/build/home:madam_submitter/_result?lastbuild=0&locallink=1&multibuild=1&package=Quebec&view=status @@ -410,7 +410,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b0cb0def-aa62-473f-9a61-53ef257b21f5 + - 1af3a078-089a-4710-8a39-6893bca73e77 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -435,7 +435,7 @@ http_interactions: string: ' ' - recorded_at: Tue, 19 Mar 2024 13:45:46 GMT + recorded_at: Fri, 22 Mar 2024 09:11:48 GMT - request: method: get uri: http://backend:5352/source/home:madam_submitter/Quebec @@ -444,7 +444,7 @@ http_interactions: string: '' headers: X-Request-Id: - - b0cb0def-aa62-473f-9a61-53ef257b21f5 + - 1af3a078-089a-4710-8a39-6893bca73e77 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -463,15 +463,15 @@ http_interactions: Connection: - close Content-Length: - - '291' + - '293' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Tue, 19 Mar 2024 13:45:46 GMT + recorded_at: Fri, 22 Mar 2024 09:11:48 GMT - request: method: post uri: http://backend:5352/source/home:madam_submitter/Quebec?cacheonly=1&cmd=diff&expand=1&filelimit=10000&opackage=Quebec&oproject=home:mr_receiver&tarlimit=10000&view=xml&withissues=1 @@ -482,7 +482,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - b0cb0def-aa62-473f-9a61-53ef257b21f5 + - 1af3a078-089a-4710-8a39-6893bca73e77 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -497,7 +497,7 @@ http_interactions: Content-Type: - text/xml Content-Length: - - '1185' + - '1161' Cache-Control: - no-cache Connection: @@ -505,27 +505,27 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - - + + @@ -1,1 +1,1 @@ - -Dolor quia asperiores. Placeat dolores dolor. Qui aut alias. + -In rerum consequatur. Similique quia ipsam. Quaerat quidem dicta. \ No newline at end of file - +Mollitia quos id. Debitis recusandae modi. Qui totam soluta. + +Dolor facere et. Magnam et eius. Dolores velit illum. \ No newline at end of file - - + + @@ -1,1 +1,1 @@ - -Molestiae dolore repellat. Id incidunt sunt. Voluptas pariatur sint. + -Corrupti et voluptate. Aut omnis repellendus. Sed quis sint. \ No newline at end of file - +Nulla quaerat et. Sed numquam suscipit. Laudantium voluptatem minima. + +Itaque ut odit. Aut sequi fuga. Placeat labore sequi. \ No newline at end of file @@ -533,16 +533,16 @@ http_interactions: - recorded_at: Tue, 19 Mar 2024 13:45:46 GMT + recorded_at: Fri, 22 Mar 2024 09:11:48 GMT - request: method: get - uri: http://backend:5352/source/home:mr_receiver/Quebec + uri: http://backend:5352/source/home:madam_submitter/Quebec body: encoding: US-ASCII string: '' headers: X-Request-Id: - - b0cb0def-aa62-473f-9a61-53ef257b21f5 + - 1af3a078-089a-4710-8a39-6893bca73e77 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -561,15 +561,77 @@ http_interactions: Connection: - close Content-Length: - - '291' + - '293' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Tue, 19 Mar 2024 13:45:46 GMT + recorded_at: Fri, 22 Mar 2024 09:11:48 GMT +- request: + method: post + uri: http://backend:5352/source/home:madam_submitter/Quebec?cacheonly=1&cmd=diff&expand=1&filelimit=10000&opackage=Quebec&oproject=home:mr_receiver&tarlimit=10000&view=xml&withissues=1 + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + X-Request-Id: + - 1af3a078-089a-4710-8a39-6893bca73e77 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Content-Length: + - '1161' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: | + + + + + + + + @@ -1,1 +1,1 @@ + -In rerum consequatur. Similique quia ipsam. Quaerat quidem dicta. + \ No newline at end of file + +Dolor facere et. Magnam et eius. Dolores velit illum. + \ No newline at end of file + + + + + + @@ -1,1 +1,1 @@ + -Corrupti et voluptate. Aut omnis repellendus. Sed quis sint. + \ No newline at end of file + +Itaque ut odit. Aut sequi fuga. Placeat labore sequi. + \ No newline at end of file + + + + + + + recorded_at: Fri, 22 Mar 2024 09:11:48 GMT - request: method: get uri: http://backend:5352/build/home:madam_submitter/_result?lastbuild=0&locallink=1&multibuild=1&package=Quebec&view=status @@ -578,7 +640,7 @@ http_interactions: string: '' headers: X-Request-Id: - - fc76d026-63fc-4e47-81b4-e7e2b2495fb5 + - f270340a-957f-495e-9a84-c1d76de3b828 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -603,5 +665,5 @@ http_interactions: string: ' ' - recorded_at: Tue, 19 Mar 2024 13:45:47 GMT + recorded_at: Fri, 22 Mar 2024 09:11:48 GMT recorded_with: VCR 6.2.0 diff --git a/src/api/spec/cassettes/Requests_Submissions/submit_package/when_under_the_beta_program/submit_several_packages_at_once_against_a_factory_staging_project/shows_the_beta_version_of_the_requests_page.yml b/src/api/spec/cassettes/Requests_Submissions/submit_package/when_under_the_beta_program/submit_several_packages_at_once_against_a_factory_staging_project/shows_the_beta_version_of_the_requests_page.yml index 70d7bca8928..cd0e8343db9 100644 --- a/src/api/spec/cassettes/Requests_Submissions/submit_package/when_under_the_beta_program/submit_several_packages_at_once_against_a_factory_staging_project/shows_the_beta_version_of_the_requests_page.yml +++ b/src/api/spec/cassettes/Requests_Submissions/submit_package/when_under_the_beta_program/submit_several_packages_at_once_against_a_factory_staging_project/shows_the_beta_version_of_the_requests_page.yml @@ -7,7 +7,7 @@ http_interactions: encoding: UTF-8 string: | - Mr Standfast + The Green Bay Tree headers: @@ -29,18 +29,18 @@ http_interactions: Connection: - close Content-Length: - - '105' + - '111' body: encoding: UTF-8 string: | - Mr Standfast + The Green Bay Tree - recorded_at: Wed, 20 Mar 2024 13:32:21 GMT + recorded_at: Tue, 19 Mar 2024 09:49:18 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:Factory/_project/_staging_workflow?user=user_3 + uri: http://backend:5352/source/openSUSE:Factory/_project/_staging_workflow?user=user_1 body: encoding: UTF-8 string: | @@ -66,21 +66,21 @@ http_interactions: Connection: - close Content-Length: - - '169' + - '170' body: encoding: UTF-8 string: | - + 855ca4c8a51f444848eca1a4a8164fe6 - - user_3 + + user_1 - recorded_at: Wed, 20 Mar 2024 13:32:22 GMT + recorded_at: Tue, 19 Mar 2024 09:49:18 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:Factory:Staging:A/_meta?user=user_3 + uri: http://backend:5352/source/openSUSE:Factory:Staging:A/_meta?user=user_1 body: encoding: UTF-8 string: | @@ -117,10 +117,10 @@ http_interactions: - recorded_at: Wed, 20 Mar 2024 13:32:22 GMT + recorded_at: Tue, 19 Mar 2024 09:49:18 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:Factory/_project/_staging_workflow?user=user_3 + uri: http://backend:5352/source/openSUSE:Factory/_project/_staging_workflow?user=user_1 body: encoding: UTF-8 string: | @@ -147,21 +147,21 @@ http_interactions: Connection: - close Content-Length: - - '169' + - '170' body: encoding: UTF-8 string: | - + 761abadd20bf5e8eb79df3df4aad59fc - - user_3 + + user_1 - recorded_at: Wed, 20 Mar 2024 13:32:22 GMT + recorded_at: Tue, 19 Mar 2024 09:49:18 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:Factory:Staging:B/_meta?user=user_3 + uri: http://backend:5352/source/openSUSE:Factory:Staging:B/_meta?user=user_1 body: encoding: UTF-8 string: | @@ -198,15 +198,15 @@ http_interactions: - recorded_at: Wed, 20 Mar 2024 13:32:22 GMT + recorded_at: Tue, 19 Mar 2024 09:49:18 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:Factory/_meta?user=user_3 + uri: http://backend:5352/source/openSUSE:Factory/_meta?user=user_1 body: encoding: UTF-8 string: | - Mr Standfast + The Green Bay Tree @@ -229,16 +229,16 @@ http_interactions: Connection: - close Content-Length: - - '150' + - '156' body: encoding: UTF-8 string: | - Mr Standfast + The Green Bay Tree - recorded_at: Wed, 20 Mar 2024 13:32:22 GMT + recorded_at: Tue, 19 Mar 2024 09:49:18 GMT - request: method: put uri: http://backend:5352/source/home:mr_receiver/_meta?user=mr_receiver @@ -278,7 +278,7 @@ http_interactions: - recorded_at: Wed, 20 Mar 2024 13:32:22 GMT + recorded_at: Tue, 19 Mar 2024 09:49:18 GMT - request: method: put uri: http://backend:5352/source/home:mr_receiver/Quebec/_meta?user=mr_receiver @@ -286,8 +286,8 @@ http_interactions: encoding: UTF-8 string: | - No Highway - Quos molestiae et at. + His Dark Materials + Beatae nobis vitae id. headers: Accept-Encoding: @@ -308,21 +308,22 @@ http_interactions: Connection: - close Content-Length: - - '141' + - '150' body: encoding: UTF-8 string: | - No Highway - Quos molestiae et at. + His Dark Materials + Beatae nobis vitae id. - recorded_at: Wed, 20 Mar 2024 13:32:23 GMT + recorded_at: Tue, 19 Mar 2024 09:49:18 GMT - request: method: put uri: http://backend:5352/source/home:mr_receiver/Quebec/_config body: encoding: UTF-8 - string: Commodi voluptatum voluptatem. Qui vitae est. Et id laborum. + string: Odit atque perspiciatis. Occaecati necessitatibus totam. Eligendi temporibus + hic. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -342,26 +343,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - a6bf6cd0ca7104e43140ab4f6b6ea3c2 + + 8dc1908339413f401d634c8892799a27 unknown - + unknown - recorded_at: Wed, 20 Mar 2024 13:32:23 GMT + recorded_at: Tue, 19 Mar 2024 09:49:18 GMT - request: method: put uri: http://backend:5352/source/home:mr_receiver/Quebec/somefile.txt body: encoding: UTF-8 - string: Reiciendis commodi in. Optio sapiente labore. Blanditiis voluptates - aut. + string: Rerum iure earum. Commodi iste officiis. Eos laboriosam et. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -381,19 +381,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '211' body: encoding: UTF-8 string: | - - 04cf4ffb7a13ab1aff81933bb07698ff + + 4dd556cb7581636c9bf9cc0bd35fc7f4 unknown - + unknown - recorded_at: Wed, 20 Mar 2024 13:32:23 GMT + recorded_at: Tue, 19 Mar 2024 09:49:18 GMT - request: method: put uri: http://backend:5352/source/home:madam_submitter/_meta?user=madam_submitter @@ -433,7 +433,7 @@ http_interactions: - recorded_at: Wed, 20 Mar 2024 13:32:23 GMT + recorded_at: Tue, 19 Mar 2024 09:49:18 GMT - request: method: put uri: http://backend:5352/source/home:madam_submitter/package_a/_meta?user=mr_receiver @@ -441,8 +441,8 @@ http_interactions: encoding: UTF-8 string: | - What's Become of Waring - Similique sit voluptatibus voluptate. + A Glass of Blessings + Numquam alias aliquid sequi. headers: Accept-Encoding: @@ -463,21 +463,21 @@ http_interactions: Connection: - close Content-Length: - - '177' + - '165' body: encoding: UTF-8 string: | - What's Become of Waring - Similique sit voluptatibus voluptate. + A Glass of Blessings + Numquam alias aliquid sequi. - recorded_at: Wed, 20 Mar 2024 13:32:24 GMT + recorded_at: Tue, 19 Mar 2024 09:49:18 GMT - request: method: put uri: http://backend:5352/source/home:madam_submitter/package_a/README.txt body: encoding: UTF-8 - string: Quibusdam natus occaecati. Nemo architecto debitis. Ipsam suscipit assumenda. + string: Minus molestiae sed. Et quia accusantium. Quibusdam non fuga. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -497,19 +497,19 @@ http_interactions: Connection: - close Content-Length: - - '203' + - '205' body: encoding: UTF-8 string: | - - 7acf1b037e0b65f2d7d9b2fb51ef53f7 + + 2aec50672cbef466a403a198264e2650 1 - + unknown - recorded_at: Wed, 20 Mar 2024 13:32:24 GMT + recorded_at: Tue, 19 Mar 2024 09:49:18 GMT - request: method: put uri: http://backend:5352/source/home:madam_submitter/package_a/package_a.spec @@ -562,19 +562,19 @@ http_interactions: Connection: - close Content-Length: - - '203' + - '205' body: encoding: UTF-8 string: | - - 7acf1b037e0b65f2d7d9b2fb51ef53f7 + + 2aec50672cbef466a403a198264e2650 1 - + unknown - recorded_at: Wed, 20 Mar 2024 13:32:24 GMT + recorded_at: Tue, 19 Mar 2024 09:49:18 GMT - request: method: put uri: http://backend:5352/source/home:madam_submitter/package_a/package_a.changes @@ -600,19 +600,19 @@ http_interactions: Connection: - close Content-Length: - - '203' + - '205' body: encoding: UTF-8 string: | - - 7acf1b037e0b65f2d7d9b2fb51ef53f7 + + 2aec50672cbef466a403a198264e2650 1 - + unknown - recorded_at: Wed, 20 Mar 2024 13:32:24 GMT + recorded_at: Tue, 19 Mar 2024 09:49:18 GMT - request: method: get uri: http://backend:5352/source/home:madam_submitter/package_a @@ -638,16 +638,16 @@ http_interactions: Connection: - close Content-Length: - - '406' + - '408' body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Wed, 20 Mar 2024 13:32:25 GMT + recorded_at: Tue, 19 Mar 2024 09:49:19 GMT - request: method: get uri: http://backend:5352/source/home:madam_submitter/package_a @@ -673,19 +673,19 @@ http_interactions: Connection: - close Content-Length: - - '406' + - '408' body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Wed, 20 Mar 2024 13:32:25 GMT + recorded_at: Tue, 19 Mar 2024 09:49:19 GMT - request: method: post - uri: http://backend:5352/source/home:madam_submitter/package_a?cmd=diff&expand=1&filelimit=10000&orev=0&rev=27&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:madam_submitter/package_a?cmd=diff&expand=1&filelimit=10000&orev=0&rev=126&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -710,18 +710,18 @@ http_interactions: Connection: - close Content-Length: - - '1788' + - '1773' body: encoding: UTF-8 string: | - + - + - + @@ -0,0 +1,1 @@ - +Quibusdam natus occaecati. Nemo architecto debitis. Ipsam suscipit assumenda. + +Minus molestiae sed. Et quia accusantium. Quibusdam non fuga. \ No newline at end of file @@ -770,7 +770,7 @@ http_interactions: - recorded_at: Wed, 20 Mar 2024 13:32:25 GMT + recorded_at: Tue, 19 Mar 2024 09:49:19 GMT - request: method: put uri: http://backend:5352/source/openSUSE:Factory/package_b/_meta?user=mr_receiver @@ -778,8 +778,8 @@ http_interactions: encoding: UTF-8 string: | - Far From the Madding Crowd - Laudantium nesciunt at corrupti. + Pale Kings and Princes + Et architecto iste vitae. headers: Accept-Encoding: @@ -800,15 +800,15 @@ http_interactions: Connection: - close Content-Length: - - '171' + - '160' body: encoding: UTF-8 string: | - Far From the Madding Crowd - Laudantium nesciunt at corrupti. + Pale Kings and Princes + Et architecto iste vitae. - recorded_at: Wed, 20 Mar 2024 13:32:25 GMT + recorded_at: Tue, 19 Mar 2024 09:49:19 GMT - request: method: get uri: http://backend:5352/source/home:madam_submitter/package_a @@ -834,16 +834,16 @@ http_interactions: Connection: - close Content-Length: - - '406' + - '408' body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Wed, 20 Mar 2024 13:32:25 GMT + recorded_at: Tue, 19 Mar 2024 09:49:19 GMT - request: method: post uri: http://backend:5352/source/home:madam_submitter/package_a?cmd=diff&expand=1&filelimit=10000&opackage=package_b&oproject=openSUSE:Factory&tarlimit=10000&view=xml&withissues=1 @@ -871,18 +871,18 @@ http_interactions: Connection: - close Content-Length: - - '1784' + - '1769' body: encoding: UTF-8 string: | - + - + - + @@ -0,0 +1,1 @@ - +Quibusdam natus occaecati. Nemo architecto debitis. Ipsam suscipit assumenda. + +Minus molestiae sed. Et quia accusantium. Quibusdam non fuga. \ No newline at end of file @@ -931,7 +931,7 @@ http_interactions: - recorded_at: Wed, 20 Mar 2024 13:32:25 GMT + recorded_at: Tue, 19 Mar 2024 09:49:19 GMT - request: method: get uri: http://backend:5352/build/home:madam_submitter/_result?lastbuild=0&locallink=1&multibuild=1&package=package_a&view=status @@ -940,7 +940,7 @@ http_interactions: string: '' headers: X-Request-Id: - - a9c5af76-5a6e-421c-8df6-266e0543c1e7 + - aaf9db80-e9d4-41fc-b668-a313e16c4ff9 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -965,7 +965,7 @@ http_interactions: string: ' ' - recorded_at: Wed, 20 Mar 2024 13:32:30 GMT + recorded_at: Tue, 19 Mar 2024 09:49:24 GMT - request: method: get uri: http://backend:5352/build/home:madam_submitter/_result?lastbuild=0&locallink=1&multibuild=1&package=package_a&view=status @@ -974,7 +974,7 @@ http_interactions: string: '' headers: X-Request-Id: - - a9c5af76-5a6e-421c-8df6-266e0543c1e7 + - aaf9db80-e9d4-41fc-b668-a313e16c4ff9 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -999,7 +999,171 @@ http_interactions: string: ' ' - recorded_at: Wed, 20 Mar 2024 13:32:30 GMT + recorded_at: Tue, 19 Mar 2024 09:49:24 GMT +- request: + method: get + uri: http://backend:5352/source/home:madam_submitter/package_a + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - aaf9db80-e9d4-41fc-b668-a313e16c4ff9 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '408' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Tue, 19 Mar 2024 09:49:24 GMT +- request: + method: get + uri: http://backend:5352/source/home:madam_submitter/package_a + body: + encoding: US-ASCII + string: '' + headers: + X-Request-Id: + - aaf9db80-e9d4-41fc-b668-a313e16c4ff9 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '408' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Tue, 19 Mar 2024 09:49:24 GMT +- request: + method: post + uri: http://backend:5352/source/home:madam_submitter/package_a?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=126&tarlimit=10000&view=xml&withissues=1 + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + X-Request-Id: + - aaf9db80-e9d4-41fc-b668-a313e16c4ff9 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Content-Length: + - '1773' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: | + + + + + + + @@ -0,0 +1,1 @@ + +Minus molestiae sed. Et quia accusantium. Quibusdam non fuga. + \ No newline at end of file + + + + + @@ -0,0 +1,1 @@ + +- Fixes boo#1111101 CVE-2011-1101 + \ No newline at end of file + + + + + @@ -0,0 +1,27 @@ + +Name: package_a + +Version: 1 + +Release: 1 + +Summary: Most simple RPM package + +License: CC0-1.0 + + + +%description + +This is my first RPM package, which does nothing. + + + +%prep + +# we have no source, so nothing here + + + +%build + +cat > package_a.sh <<EOF + +#!/usr/bin/bash + +echo Hello world, from package_a. + +EOF + + + +%install + +mkdir -p %{buildroot}/usr/bin/ + +install -m 755 package_a.sh %{buildroot}/usr/bin/package_a.sh + + + +%files + +/usr/bin/package_a.sh + + + +%changelog + +# let skip this for now + + + + + + + + + recorded_at: Tue, 19 Mar 2024 09:49:24 GMT - request: method: get uri: http://backend:5352/source/home:madam_submitter/package_a @@ -1008,7 +1172,7 @@ http_interactions: string: '' headers: X-Request-Id: - - a9c5af76-5a6e-421c-8df6-266e0543c1e7 + - aaf9db80-e9d4-41fc-b668-a313e16c4ff9 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1027,16 +1191,16 @@ http_interactions: Connection: - close Content-Length: - - '406' + - '408' body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Wed, 20 Mar 2024 13:32:30 GMT + recorded_at: Tue, 19 Mar 2024 09:49:24 GMT - request: method: get uri: http://backend:5352/source/home:madam_submitter/package_a @@ -1045,7 +1209,7 @@ http_interactions: string: '' headers: X-Request-Id: - - a9c5af76-5a6e-421c-8df6-266e0543c1e7 + - aaf9db80-e9d4-41fc-b668-a313e16c4ff9 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1064,19 +1228,19 @@ http_interactions: Connection: - close Content-Length: - - '406' + - '408' body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Wed, 20 Mar 2024 13:32:30 GMT + recorded_at: Tue, 19 Mar 2024 09:49:24 GMT - request: method: post - uri: http://backend:5352/source/home:madam_submitter/package_a?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=27&tarlimit=10000&view=xml&withissues=1 + uri: http://backend:5352/source/home:madam_submitter/package_a?cacheonly=1&cmd=diff&expand=1&filelimit=10000&orev=0&rev=126&tarlimit=10000&view=xml&withissues=1 body: encoding: UTF-8 string: '' @@ -1084,7 +1248,7 @@ http_interactions: Content-Type: - application/octet-stream X-Request-Id: - - a9c5af76-5a6e-421c-8df6-266e0543c1e7 + - aaf9db80-e9d4-41fc-b668-a313e16c4ff9 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1099,7 +1263,7 @@ http_interactions: Content-Type: - text/xml Content-Length: - - '1788' + - '1773' Cache-Control: - no-cache Connection: @@ -1107,14 +1271,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - + @@ -0,0 +1,1 @@ - +Quibusdam natus occaecati. Nemo architecto debitis. Ipsam suscipit assumenda. + +Minus molestiae sed. Et quia accusantium. Quibusdam non fuga. \ No newline at end of file @@ -1163,7 +1327,7 @@ http_interactions: - recorded_at: Wed, 20 Mar 2024 13:32:30 GMT + recorded_at: Tue, 19 Mar 2024 09:49:24 GMT - request: method: get uri: http://backend:5352/build/home:madam_submitter/_result?lastbuild=0&locallink=1&multibuild=1&package=package_a&view=status @@ -1172,7 +1336,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 45530bed-cda1-4b14-a75a-360bdd031503 + - cfe16a8e-7dd5-4b7b-8bc8-f6f9d6272e5d Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1197,7 +1361,7 @@ http_interactions: string: ' ' - recorded_at: Wed, 20 Mar 2024 13:32:31 GMT + recorded_at: Tue, 19 Mar 2024 09:49:25 GMT - request: method: get uri: http://backend:5352/build/home:madam_submitter/_result?lastbuild=0&locallink=1&multibuild=1&package=package_a&view=status @@ -1206,7 +1370,7 @@ http_interactions: string: '' headers: X-Request-Id: - - 45530bed-cda1-4b14-a75a-360bdd031503 + - cfe16a8e-7dd5-4b7b-8bc8-f6f9d6272e5d Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -1231,5 +1395,5 @@ http_interactions: string: ' ' - recorded_at: Wed, 20 Mar 2024 13:32:31 GMT + recorded_at: Tue, 19 Mar 2024 09:49:25 GMT recorded_with: VCR 6.2.0 diff --git a/src/api/spec/cassettes/SourcediffComponent/with_a_request_with_a_submit_action/renders_the_diff.yml b/src/api/spec/cassettes/SourcediffComponent/with_a_request_with_a_submit_action/renders_the_diff.yml index c31f20da18f..18c23431458 100644 --- a/src/api/spec/cassettes/SourcediffComponent/with_a_request_with_a_submit_action/renders_the_diff.yml +++ b/src/api/spec/cassettes/SourcediffComponent/with_a_request_with_a_submit_action/renders_the_diff.yml @@ -7,7 +7,7 @@ http_interactions: encoding: UTF-8 string: | - The Proper Study + No Highway headers: @@ -29,15 +29,15 @@ http_interactions: Connection: - close Content-Length: - - '107' + - '101' body: encoding: UTF-8 string: | - The Proper Study + No Highway - recorded_at: Fri, 19 May 2023 11:55:36 GMT + recorded_at: Mon, 18 Mar 2024 22:13:59 GMT - request: method: put uri: http://backend:5352/source/target_project/target_package/_meta?user=user_2 @@ -45,8 +45,8 @@ http_interactions: encoding: UTF-8 string: | - An Instant In The Wind - Nobis soluta sed ipsum. + An Acceptable Time + Ab numquam distinctio corporis. headers: Accept-Encoding: @@ -67,22 +67,21 @@ http_interactions: Connection: - close Content-Length: - - '161' + - '165' body: encoding: UTF-8 string: | - An Instant In The Wind - Nobis soluta sed ipsum. + An Acceptable Time + Ab numquam distinctio corporis. - recorded_at: Fri, 19 May 2023 11:55:36 GMT + recorded_at: Mon, 18 Mar 2024 22:13:59 GMT - request: method: put uri: http://backend:5352/source/target_project/target_package/_config body: encoding: UTF-8 - string: Tenetur voluptatem unde. Voluptas corporis consectetur. Enim debitis - dolorem. + string: Sit esse quo. Ipsa sit quaerat. Eos ut eius. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -106,15 +105,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 7251f5d682a3fe94ce35c4d19c108a77 + + 92f4033f51ba65c819aac2bdc5aa031f unknown - + unknown - recorded_at: Fri, 19 May 2023 11:55:36 GMT + recorded_at: Mon, 18 Mar 2024 22:13:59 GMT - request: method: put uri: http://backend:5352/source/target_project/target_package/somefile.txt @@ -140,19 +139,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '207' body: encoding: UTF-8 string: | - - 7251f5d682a3fe94ce35c4d19c108a77 + + 92f4033f51ba65c819aac2bdc5aa031f unknown - + unknown - recorded_at: Fri, 19 May 2023 11:55:36 GMT + recorded_at: Mon, 18 Mar 2024 22:13:59 GMT - request: method: put uri: http://backend:5352/source/source_project/_meta?user=user_3 @@ -160,7 +159,7 @@ http_interactions: encoding: UTF-8 string: | - Endless Night + Those Barren Leaves, Thrones, Dominations headers: @@ -182,15 +181,15 @@ http_interactions: Connection: - close Content-Length: - - '104' + - '132' body: encoding: UTF-8 string: | - Endless Night + Those Barren Leaves, Thrones, Dominations - recorded_at: Fri, 19 May 2023 11:55:36 GMT + recorded_at: Mon, 18 Mar 2024 22:13:59 GMT - request: method: put uri: http://backend:5352/source/source_project/_project/_attribute?meta=1&user=user_3 @@ -223,14 +222,14 @@ http_interactions: body: encoding: UTF-8 string: | - - 88f9eb2ec37d6e6bec49f42a36e4d53d - + + 4305d32c9058925fb5502e571b6884ad + user_3 - recorded_at: Fri, 19 May 2023 11:55:37 GMT + recorded_at: Mon, 18 Mar 2024 22:13:59 GMT - request: method: put uri: http://backend:5352/source/source_project/source_package/_meta?user=user_4 @@ -238,8 +237,8 @@ http_interactions: encoding: UTF-8 string: | - That Hideous Strength - Laudantium id quod iure. + Some Buried Caesar + Voluptates ab sint consequatur. headers: Accept-Encoding: @@ -260,21 +259,21 @@ http_interactions: Connection: - close Content-Length: - - '161' + - '165' body: encoding: UTF-8 string: | - That Hideous Strength - Laudantium id quod iure. + Some Buried Caesar + Voluptates ab sint consequatur. - recorded_at: Fri, 19 May 2023 11:55:37 GMT + recorded_at: Mon, 18 Mar 2024 22:13:59 GMT - request: method: put uri: http://backend:5352/source/source_project/source_package/_config body: encoding: UTF-8 - string: Ea earum perferendis. Et et quas. Inventore consectetur facere. + string: Et nihil esse. Mollitia eveniet laborum. Commodi sed rem. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -298,15 +297,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 8fd61c1124aa43f064e28fedf8467d05 + + 0426af132c909c0c229c12fc8a60eaab unknown - + unknown - recorded_at: Fri, 19 May 2023 11:55:37 GMT + recorded_at: Mon, 18 Mar 2024 22:13:59 GMT - request: method: put uri: http://backend:5352/source/source_project/source_package/somefile.txt @@ -332,19 +331,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '207' body: encoding: UTF-8 string: | - - 8fd61c1124aa43f064e28fedf8467d05 + + 0426af132c909c0c229c12fc8a60eaab unknown - + unknown - recorded_at: Fri, 19 May 2023 11:55:37 GMT + recorded_at: Mon, 18 Mar 2024 22:13:59 GMT - request: method: get uri: http://backend:5352/source/source_project/source_package @@ -370,15 +369,15 @@ http_interactions: Connection: - close Content-Length: - - '301' + - '299' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 May 2023 11:55:37 GMT + recorded_at: Mon, 18 Mar 2024 22:14:00 GMT - request: method: post uri: http://backend:5352/source/source_project/source_package?cmd=diff&expand=1&filelimit=10000&opackage=target_package&oproject=target_project&tarlimit=10000&view=xml&withissues=1 @@ -406,21 +405,21 @@ http_interactions: Connection: - close Content-Length: - - '1123' + - '1082' body: encoding: UTF-8 string: | - - - + + + - - + + @@ -1,1 +1,1 @@ - -Tenetur voluptatem unde. Voluptas corporis consectetur. Enim debitis dolorem. + -Sit esse quo. Ipsa sit quaerat. Eos ut eius. \ No newline at end of file - +Ea earum perferendis. Et et quas. Inventore consectetur facere. + +Et nihil esse. Mollitia eveniet laborum. Commodi sed rem. \ No newline at end of file @@ -438,7 +437,7 @@ http_interactions: - recorded_at: Fri, 19 May 2023 11:55:37 GMT + recorded_at: Mon, 18 Mar 2024 22:14:00 GMT - request: method: get uri: http://backend:5352/source/source_project/source_package @@ -464,15 +463,15 @@ http_interactions: Connection: - close Content-Length: - - '301' + - '299' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 May 2023 11:55:37 GMT + recorded_at: Mon, 18 Mar 2024 22:14:00 GMT - request: method: post uri: http://backend:5352/source/source_project/source_package?cacheonly=1&cmd=diff&expand=1&filelimit=10000&opackage=target_package&oproject=target_project&tarlimit=10000&view=xml&withissues=1 @@ -496,7 +495,101 @@ http_interactions: Content-Type: - text/xml Content-Length: - - '1123' + - '1082' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: | + + + + + + + + @@ -1,1 +1,1 @@ + -Sit esse quo. Ipsa sit quaerat. Eos ut eius. + \ No newline at end of file + +Et nihil esse. Mollitia eveniet laborum. Commodi sed rem. + \ No newline at end of file + + + + + + @@ -1,1 +1,1 @@ + -# This will be replaced + \ No newline at end of file + +# This is the new text + \ No newline at end of file + + + + + + + recorded_at: Mon, 18 Mar 2024 22:14:00 GMT +- request: + method: get + uri: http://backend:5352/source/source_project/source_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '299' + body: + encoding: UTF-8 + string: | + + + + + recorded_at: Mon, 18 Mar 2024 22:14:00 GMT +- request: + method: post + uri: http://backend:5352/source/source_project/source_package?cmd=diff&expand=1&filelimit=10000&opackage=target_package&oproject=target_project&tarlimit=10000&view=xml&withissues=1 + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Content-Length: + - '1082' Cache-Control: - no-cache Connection: @@ -504,17 +597,17 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - - + + @@ -1,1 +1,1 @@ - -Tenetur voluptatem unde. Voluptas corporis consectetur. Enim debitis dolorem. + -Sit esse quo. Ipsa sit quaerat. Eos ut eius. \ No newline at end of file - +Ea earum perferendis. Et et quas. Inventore consectetur facere. + +Et nihil esse. Mollitia eveniet laborum. Commodi sed rem. \ No newline at end of file @@ -532,10 +625,10 @@ http_interactions: - recorded_at: Fri, 19 May 2023 11:55:37 GMT + recorded_at: Mon, 18 Mar 2024 22:14:00 GMT - request: method: get - uri: http://backend:5352/source/target_project/target_package + uri: http://backend:5352/source/source_project/source_package body: encoding: US-ASCII string: '' @@ -558,15 +651,75 @@ http_interactions: Connection: - close Content-Length: - - '301' + - '299' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 May 2023 11:55:37 GMT + recorded_at: Mon, 18 Mar 2024 22:14:00 GMT +- request: + method: post + uri: http://backend:5352/source/source_project/source_package?cmd=diff&expand=1&filelimit=10000&opackage=target_package&oproject=target_project&tarlimit=10000&view=xml&withissues=1 + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Content-Length: + - '1082' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: | + + + + + + + + @@ -1,1 +1,1 @@ + -Sit esse quo. Ipsa sit quaerat. Eos ut eius. + \ No newline at end of file + +Et nihil esse. Mollitia eveniet laborum. Commodi sed rem. + \ No newline at end of file + + + + + + @@ -1,1 +1,1 @@ + -# This will be replaced + \ No newline at end of file + +# This is the new text + \ No newline at end of file + + + + + + + recorded_at: Mon, 18 Mar 2024 22:14:00 GMT - request: method: get uri: http://backend:5352/source/source_project/source_package?expand=1 @@ -592,15 +745,15 @@ http_interactions: Connection: - close Content-Length: - - '301' + - '299' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 May 2023 11:55:37 GMT + recorded_at: Mon, 18 Mar 2024 22:14:00 GMT - request: method: get uri: http://backend:5352/source/source_project/source_package?expand=1 @@ -626,15 +779,15 @@ http_interactions: Connection: - close Content-Length: - - '301' + - '299' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 May 2023 11:55:37 GMT + recorded_at: Mon, 18 Mar 2024 22:14:00 GMT - request: method: get uri: http://backend:5352/source/target_project/target_package?expand=1 @@ -660,15 +813,15 @@ http_interactions: Connection: - close Content-Length: - - '301' + - '299' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 May 2023 11:55:37 GMT + recorded_at: Mon, 18 Mar 2024 22:14:00 GMT - request: method: get uri: http://backend:5352/source/target_project/target_package?expand=1 @@ -694,15 +847,15 @@ http_interactions: Connection: - close Content-Length: - - '301' + - '299' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 May 2023 11:55:37 GMT + recorded_at: Mon, 18 Mar 2024 22:14:00 GMT - request: method: get uri: http://backend:5352/source/source_project/source_package?expand=1 @@ -728,15 +881,15 @@ http_interactions: Connection: - close Content-Length: - - '301' + - '299' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 May 2023 11:55:37 GMT + recorded_at: Mon, 18 Mar 2024 22:14:00 GMT - request: method: get uri: http://backend:5352/source/source_project/source_package?expand=1 @@ -762,15 +915,15 @@ http_interactions: Connection: - close Content-Length: - - '301' + - '299' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 May 2023 11:55:37 GMT + recorded_at: Mon, 18 Mar 2024 22:14:00 GMT - request: method: get uri: http://backend:5352/source/target_project/target_package?expand=1 @@ -796,15 +949,15 @@ http_interactions: Connection: - close Content-Length: - - '301' + - '299' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 May 2023 11:55:37 GMT + recorded_at: Mon, 18 Mar 2024 22:14:00 GMT - request: method: get uri: http://backend:5352/source/target_project/target_package?expand=1 @@ -830,13 +983,13 @@ http_interactions: Connection: - close Content-Length: - - '301' + - '299' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 May 2023 11:55:37 GMT -recorded_with: VCR 6.1.0 + recorded_at: Mon, 18 Mar 2024 22:14:00 GMT +recorded_with: VCR 6.2.0 diff --git a/src/api/spec/components/sourcediff_component_spec.rb b/src/api/spec/components/sourcediff_component_spec.rb index 2dada601751..61c3bad4376 100644 --- a/src/api/spec/components/sourcediff_component_spec.rb +++ b/src/api/spec/components/sourcediff_component_spec.rb @@ -13,8 +13,7 @@ context 'with a request with a submit action' do before do - action = bs_request.send(:action_details, bs_request_opts, xml: bs_request.bs_request_actions.last) - render_inline(described_class.new(bs_request: bs_request, action: action)) + render_inline(described_class.new(bs_request: bs_request, action: bs_request.bs_request_actions.last)) end it 'renders the diff' do diff --git a/src/api/spec/features/webui/requests/submissions_spec.rb b/src/api/spec/features/webui/requests/submissions_spec.rb index 32688e8a079..cca33abc8ec 100644 --- a/src/api/spec/features/webui/requests/submissions_spec.rb +++ b/src/api/spec/features/webui/requests/submissions_spec.rb @@ -134,7 +134,7 @@ describe 'when under the beta program', :beta do describe 'submit several packages at once against a factory staging project' do let!(:factory) { create(:project, name: 'openSUSE:Factory') } - let!(:staging_workflow) { create(:staging_workflow, project: factory) } + let!(:staging_workflow) { create(:staging_workflow, project: factory, commit_user: factory.commit_user) } # Create another action to submit new files from different packages to package_b let!(:another_bs_request_action) do receiver.run_as do