Bump version to 4.15.0-master #11
Annotations
4 errors
katello/test/actions/katello/content_view_version/republish_repositories_test.rb#L23
Failure: test_0001_plans with default values
Action Actions::Katello::Repository::BulkMetadataGenerate with plan_input [#<ActiveRecord::Associations::CollectionProxy [#<Katello::Repository id: 335884061, pulp_id: "debian_10_dev_library_view", library_instance_id: 697316289, content_view_version_id: 111397700, relative_path: "ACME_Corporation/dev/debian_10_library_library_vie...", environment_id: 292811013, saved_checksum_type: nil, distribution_version: nil, distribution_arch: nil, distribution_bootable: nil, distribution_family: nil, distribution_variant: nil, container_repository_name: nil, root_id: 957283996, remote_href: nil, publication_href: nil, version_href: nil, last_contents_changed: "1970-01-01 00:00:00.000000000 +0000", last_applicability_regen: "1970-01-01 00:00:00.000000000 +0000", last_indexed: "1970-01-01 00:00:00.000000000 +0000">, #<Katello::Repository id: 554444310, pulp_id: "fedora_17_dev_library_view", library_instance_id: 367202338, content_view_version_id: 111397700, relative_path: "ACME_Corporation/dev/fedora_17_library_library_vie...", environment_id: 292811013, saved_checksum_type: nil, distribution_version: nil, distribution_arch: nil, distribution_bootable: nil, distribution_family: nil, distribution_variant: nil, container_repository_name: nil, root_id: 184622981, remote_href: nil, publication_href: nil, version_href: nil, last_contents_changed: "1970-01-01 00:00:00.000000000 +0000", last_applicability_regen: "1970-01-01 00:00:00.000000000 +0000", last_indexed: "1970-01-01 00:00:00.000000000 +0000">, #<Katello::Repository id: 127576571, pulp_id: "8", library_instance_id: 103207400, content_view_version_id: 111397700, relative_path: "ACME_Corporation/dev/rhel_6_label", environment_id: 292811013, saved_checksum_type: nil, distribution_version: nil, distribution_arch: nil, distribution_bootable: nil, distribution_family: nil, distribution_variant: nil, container_repository_name: nil, root_id: 355376805, remote_href: nil, publication_href: nil, version_href: nil, last_contents_changed: "1970-01-01 00:00:00.000000000 +0000", last_applicability_regen: "1970-01-01 00:00:00.000000000 +0000", last_indexed: "1970-01-01 00:00:00.000000000 +0000">, #<Katello::Repository id: 952181839, pulp_id: "8_arch", library_instance_id: 103207400, content_view_version_id: 111397700, relative_path: "ACME_Corporation/archive/rhel_6_label", environment_id: nil, saved_checksum_type: nil, distribution_version: nil, distribution_arch: nil, distribution_bootable: nil, distribution_family: nil, distribution_variant: nil, container_repository_name: nil, root_id: 355376805, remote_href: nil, publication_href: nil, version_href: nil, last_contents_changed: "1970-01-01 00:00:00.000000000 +0000", last_applicability_regen: "1970-01-01 00:00:00.000000000 +0000", last_indexed: "1970-01-01 00:00:00.000000000 +0000">, #<Katello::Repository id: 129339708, pulp_id: "3_view2", library_instance_id: 367202338, content_view_version_id: 111397700, relative_path: "ACME_Corporation/library/LibraryView/fedora_17_lab...", environment_id: nil, saved_checksum_type: nil, distribution_version: nil, distribution_arch: nil, distribution_bootable: nil, distribution_family: nil, distribution_variant: nil, container_repository_name: nil, root_id: 184622981, remote_href: nil, publication_href: nil, version_href: nil, last_contents_changed: "1970-01-01 00:00:00.000000000 +0000", last_applicability_regen: "1970-01-01 00:00:00.000000000 +0000", last_indexed: "1970-01-01 00:00:00.000000000 +0000">, #<Katello::Repository id: 398981650, pulp_id: "3_view2_library", library_instance_id: 367202338, content_view_version_id: 111397700, relative_path: "ACME_Corporation/library/LibraryView/fedora_17_lab...", environment_id: 562075838, saved_checksum_type: nil, distribution_version: nil, distribution_arch: nil, distribution_bootable: nil, distribution_family: nil, distribution_variant: nil, container_repository_name: nil, root_id: 184622981, remote_href: nil, publication_href: nil, version_href: nil, last_contents_changed: "1970-01-01 00:00:00.000000000 +0000", last_a
|
katello/test/actions/pulp3/orchestration/alternate_content_source_refresh_test.rb#L56
Failure: test_yum_refresh
RuntimeError: Neutered Exception ForemanTasks::TaskError: Task 11c3d2ea-3eba-4cbf-8343-5b3566fafef6: VCR::Errors::UnhandledHTTPRequestError:
================================================================================
An HTTP request has been made that VCR does not know how to handle:
POST https://fv-az523-538/pulp/api/v3/acs/rpm/rpm/
VCR is currently using the following cassette:
- /home/runner/work/katello/katello/katello/test/fixtures/vcr_cassettes/actions/pulp3/alternate_content_source_refresh/yum_refresh.yml
- :record => :none
- :match_requests_on => [:method, :path, :params, :body_json]
Under the current configuration VCR can not find a suitable HTTP interaction
to replay and is prevented from recording new requests. There are a few ways
you can deal with this:
* If you're surprised VCR is raising this error
and want insight about how VCR attempted to handle the request,
you can use the debug_logger configuration option to log more details [1].
* You can use the :new_episodes record mode to allow VCR to
record this new request to the existing cassette [2].
* If you want VCR to ignore this request (and others like it), you can
set an `ignore_request` callback [3].
* The current record mode (:none) does not allow requests to be recorded. You
can temporarily change the record mode to :once, delete the cassette file
and re-run your tests to allow the cassette to be recorded with this request [4].
* The cassette contains 30 HTTP interactions that have not been
played back. If your request is non-deterministic, you may need to
change your :match_requests_on cassette option to be more lenient
or use a custom request matcher to allow it to match [5].
[1] https://benoittgt.github.io/vcr/?v=6-3-1#/configuration/debug_logging
[2] https://benoittgt.github.io/vcr/?v=6-3-1#/record_modes/new_episodes
[3] https://benoittgt.github.io/vcr/?v=6-3-1#/configuration/ignore_request
[4] https://benoittgt.github.io/vcr/?v=6-3-1#/record_modes/none
[5] https://benoittgt.github.io/vcr/?v=6-3-1#/request_matching
================================================================================
foreman-tasks (9.2.3) lib/foreman_tasks.rb:56:in `block in sync_task'
foreman-tasks (9.2.3) lib/foreman_tasks.rb:55:in `sync_task'
katello/test/actions/pulp3/orchestration/alternate_content_source_refresh_test.rb:55:in `test_yum_refresh'
katello/test/support/vcr.rb:24:in `block in run'
katello/test/support/vcr.rb:23:in `run'
|
katello/test/actions/pulp3/orchestration/alternate_content_source_refresh_test.rb#L56
Failure: test_yum_refresh_updates_remote
RuntimeError: Neutered Exception ForemanTasks::TaskError: Task 5184e73a-f33a-462f-b007-9e1a66e6418a: VCR::Errors::UnhandledHTTPRequestError:
================================================================================
An HTTP request has been made that VCR does not know how to handle:
POST https://fv-az523-538/pulp/api/v3/acs/rpm/rpm/
VCR is currently using the following cassette:
- /home/runner/work/katello/katello/katello/test/fixtures/vcr_cassettes/actions/pulp3/alternate_content_source_refresh/yum_refresh_updates_remote.yml
- :record => :none
- :match_requests_on => [:method, :path, :params, :body_json]
Under the current configuration VCR can not find a suitable HTTP interaction
to replay and is prevented from recording new requests. There are a few ways
you can deal with this:
* If you're surprised VCR is raising this error
and want insight about how VCR attempted to handle the request,
you can use the debug_logger configuration option to log more details [1].
* You can use the :new_episodes record mode to allow VCR to
record this new request to the existing cassette [2].
* If you want VCR to ignore this request (and others like it), you can
set an `ignore_request` callback [3].
* The current record mode (:none) does not allow requests to be recorded. You
can temporarily change the record mode to :once, delete the cassette file
and re-run your tests to allow the cassette to be recorded with this request [4].
* The cassette contains 32 HTTP interactions that have not been
played back. If your request is non-deterministic, you may need to
change your :match_requests_on cassette option to be more lenient
or use a custom request matcher to allow it to match [5].
[1] https://benoittgt.github.io/vcr/?v=6-3-1#/configuration/debug_logging
[2] https://benoittgt.github.io/vcr/?v=6-3-1#/record_modes/new_episodes
[3] https://benoittgt.github.io/vcr/?v=6-3-1#/configuration/ignore_request
[4] https://benoittgt.github.io/vcr/?v=6-3-1#/record_modes/none
[5] https://benoittgt.github.io/vcr/?v=6-3-1#/request_matching
================================================================================
foreman-tasks (9.2.3) lib/foreman_tasks.rb:56:in `block in sync_task'
foreman-tasks (9.2.3) lib/foreman_tasks.rb:55:in `sync_task'
katello/test/actions/pulp3/orchestration/alternate_content_source_refresh_test.rb:62:in `test_yum_refresh_updates_remote'
katello/test/support/vcr.rb:24:in `block in run'
katello/test/support/vcr.rb:23:in `run'
|
|
This job failed
Loading