pulpcore 3.89.1__py3-none-any.whl → 3.90.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulpcore might be problematic. Click here for more details.
- pulp_certguard/app/__init__.py +1 -1
- pulp_file/app/__init__.py +1 -1
- pulp_file/tests/functional/api/test_filesystem_export.py +220 -0
- pulp_file/tests/functional/api/test_pulp_export.py +103 -3
- pulpcore/app/apps.py +1 -1
- pulpcore/app/importexport.py +18 -2
- pulpcore/app/management/commands/shell.py +8 -0
- pulpcore/app/migrations/0144_delete_old_appstatus.py +28 -0
- pulpcore/app/migrations/0145_domainize_import_export.py +53 -0
- pulpcore/app/modelresource.py +61 -21
- pulpcore/app/models/__init__.py +2 -5
- pulpcore/app/models/exporter.py +7 -1
- pulpcore/app/models/fields.py +0 -1
- pulpcore/app/models/importer.py +8 -1
- pulpcore/app/models/repository.py +16 -0
- pulpcore/app/models/status.py +8 -138
- pulpcore/app/models/task.py +15 -25
- pulpcore/app/serializers/domain.py +1 -1
- pulpcore/app/serializers/exporter.py +4 -4
- pulpcore/app/serializers/importer.py +2 -2
- pulpcore/app/serializers/task.py +11 -8
- pulpcore/app/tasks/importer.py +44 -10
- pulpcore/app/tasks/repository.py +27 -0
- pulpcore/app/viewsets/base.py +18 -14
- pulpcore/app/viewsets/domain.py +1 -1
- pulpcore/app/viewsets/exporter.py +1 -8
- pulpcore/app/viewsets/importer.py +1 -6
- pulpcore/app/viewsets/task.py +0 -1
- pulpcore/openapi/__init__.py +16 -2
- pulpcore/plugin/tasking.py +4 -2
- pulpcore/tasking/tasks.py +245 -127
- pulpcore/tasking/worker.py +6 -17
- pulpcore/tests/functional/api/test_crud_domains.py +7 -0
- pulpcore/tests/functional/api/test_tasking.py +2 -2
- pulpcore/tests/functional/api/using_plugin/test_crud_repos.py +9 -2
- pulpcore/tests/unit/content/test_handler.py +43 -0
- {pulpcore-3.89.1.dist-info → pulpcore-3.90.0.dist-info}/METADATA +7 -7
- {pulpcore-3.89.1.dist-info → pulpcore-3.90.0.dist-info}/RECORD +42 -38
- {pulpcore-3.89.1.dist-info → pulpcore-3.90.0.dist-info}/WHEEL +0 -0
- {pulpcore-3.89.1.dist-info → pulpcore-3.90.0.dist-info}/entry_points.txt +0 -0
- {pulpcore-3.89.1.dist-info → pulpcore-3.90.0.dist-info}/licenses/LICENSE +0 -0
- {pulpcore-3.89.1.dist-info → pulpcore-3.90.0.dist-info}/top_level.txt +0 -0
pulpcore/tasking/worker.py
CHANGED
|
@@ -28,7 +28,7 @@ from pulpcore.constants import (
|
|
|
28
28
|
)
|
|
29
29
|
from pulpcore.metrics import init_otel_meter
|
|
30
30
|
from pulpcore.app.apps import pulp_plugin_configs
|
|
31
|
-
from pulpcore.app.models import
|
|
31
|
+
from pulpcore.app.models import Task, AppStatus
|
|
32
32
|
from pulpcore.app.util import PGAdvisoryLock
|
|
33
33
|
from pulpcore.exceptions import AdvisoryLockError
|
|
34
34
|
|
|
@@ -142,7 +142,7 @@ class PulpcoreWorker:
|
|
|
142
142
|
elif notification.payload == TASK_WAKEUP_HANDLE:
|
|
143
143
|
self.wakeup_handle = True
|
|
144
144
|
else:
|
|
145
|
-
_logger.
|
|
145
|
+
_logger.warning("Unknown wakeup call recieved. Reason: '%s'", notification.payload)
|
|
146
146
|
# We cannot be sure so assume everything happened.
|
|
147
147
|
self.wakeup_unblock = not self.auxiliary
|
|
148
148
|
self.wakeup_handle = True
|
|
@@ -188,21 +188,12 @@ class PulpcoreWorker:
|
|
|
188
188
|
self.ignored_task_ids.remove(pk)
|
|
189
189
|
|
|
190
190
|
def worker_cleanup(self):
|
|
191
|
-
qs = AppStatus.objects.
|
|
191
|
+
qs = AppStatus.objects.missing()
|
|
192
192
|
for app_worker in qs:
|
|
193
|
-
_logger.
|
|
193
|
+
_logger.warning(
|
|
194
|
+
"Cleanup record of missing %s process %s.", app_worker.app_type, app_worker.name
|
|
195
|
+
)
|
|
194
196
|
qs.delete()
|
|
195
|
-
with contextlib.suppress(DatabaseError):
|
|
196
|
-
# By now a migration on a newer release may have deleted these tables already.
|
|
197
|
-
for cls, cls_name in (
|
|
198
|
-
(Worker, "pulp"),
|
|
199
|
-
(ApiAppStatus, "api"),
|
|
200
|
-
(ContentAppStatus, "content"),
|
|
201
|
-
):
|
|
202
|
-
qs = cls.objects.missing(age=timedelta(days=7))
|
|
203
|
-
for app_worker in qs:
|
|
204
|
-
_logger.info(_("Clean missing %s worker %s."), cls_name, app_worker.name)
|
|
205
|
-
qs.delete()
|
|
206
197
|
|
|
207
198
|
def beat(self):
|
|
208
199
|
if self.app_status.last_heartbeat < timezone.now() - self.heartbeat_period:
|
|
@@ -330,8 +321,6 @@ class PulpcoreWorker:
|
|
|
330
321
|
)
|
|
331
322
|
task.unblock()
|
|
332
323
|
count += 1
|
|
333
|
-
# Don't consider this task's resources as held.
|
|
334
|
-
continue
|
|
335
324
|
|
|
336
325
|
elif (
|
|
337
326
|
task.state == TASK_STATES.WAITING
|
|
@@ -44,6 +44,13 @@ def test_crud_domains(pulpcore_bindings, monitor_task):
|
|
|
44
44
|
valid_settings["location"] = "/testing/"
|
|
45
45
|
assert domain.storage_settings == valid_settings
|
|
46
46
|
|
|
47
|
+
# An update request with no changes should return a 200 OK (without dispatching a task)
|
|
48
|
+
response = pulpcore_bindings.DomainsApi.partial_update_with_http_info(
|
|
49
|
+
domain.pulp_href, update_body
|
|
50
|
+
)
|
|
51
|
+
assert response.status_code == 200
|
|
52
|
+
assert response.data == domain
|
|
53
|
+
|
|
47
54
|
# Delete the domain
|
|
48
55
|
response = pulpcore_bindings.DomainsApi.delete(domain.pulp_href)
|
|
49
56
|
monitor_task(response.task)
|
|
@@ -484,7 +484,7 @@ class TestImmediateTaskWithNoResource:
|
|
|
484
484
|
)
|
|
485
485
|
task = pulpcore_bindings.TasksApi.read(task_href)
|
|
486
486
|
assert task.state == "failed"
|
|
487
|
-
assert "
|
|
487
|
+
assert "timed out after" in task.error["description"]
|
|
488
488
|
|
|
489
489
|
|
|
490
490
|
@pytest.fixture
|
|
@@ -576,4 +576,4 @@ class TestImmediateTaskWithBlockedResource:
|
|
|
576
576
|
exclusive_resources=[COMMON_RESOURCE],
|
|
577
577
|
)
|
|
578
578
|
monitor_task(task_href)
|
|
579
|
-
assert "
|
|
579
|
+
assert "timed out after" in ctx.value.task.error["description"]
|
|
@@ -208,6 +208,11 @@ def test_crud_remotes_full_workflow(
|
|
|
208
208
|
new_remote = file_bindings.RemotesFileApi.read(remote.pulp_href)
|
|
209
209
|
_compare_results(data, new_remote)
|
|
210
210
|
|
|
211
|
+
# An update request with no changes should return a 200 OK (without dispatching a task)
|
|
212
|
+
response = file_bindings.RemotesFileApi.partial_update_with_http_info(remote.pulp_href, data)
|
|
213
|
+
assert response.status_code == 200
|
|
214
|
+
_compare_results(data, response.data)
|
|
215
|
+
|
|
211
216
|
# Test that a password can be updated with a PUT request.
|
|
212
217
|
temp_remote = file_remote_factory(
|
|
213
218
|
manifest_path=basic_manifest_path, url="http://", password="new"
|
|
@@ -226,6 +231,7 @@ def test_crud_remotes_full_workflow(
|
|
|
226
231
|
assert exc.stdout.rstrip("\n") == "changed"
|
|
227
232
|
|
|
228
233
|
# Test that password doesn't get unset when not passed with a PUT request.
|
|
234
|
+
# QUESTION: Why not? PUT is supposed to replace the whole entity in place.
|
|
229
235
|
temp_remote = file_remote_factory(url="http://", password="new")
|
|
230
236
|
href = temp_remote.pulp_href
|
|
231
237
|
uuid = re.search(r"/api/v3/remotes/file/file/([\w-]+)/", href).group(1)
|
|
@@ -235,8 +241,9 @@ def test_crud_remotes_full_workflow(
|
|
|
235
241
|
|
|
236
242
|
# test a PUT request without a password
|
|
237
243
|
remote_update = {"name": temp_remote.name, "url": "http://"}
|
|
238
|
-
response = file_bindings.RemotesFileApi.
|
|
239
|
-
|
|
244
|
+
response = file_bindings.RemotesFileApi.update_with_http_info(href, remote_update)
|
|
245
|
+
assert response.status_code == 200
|
|
246
|
+
_compare_results(remote_update, response.data)
|
|
240
247
|
exc = run(["pulpcore-manager", "shell", "-c", shell_cmd], text=True, capture_output=True)
|
|
241
248
|
assert exc.stdout.rstrip("\n") == "new"
|
|
242
249
|
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
from datetime import timedelta
|
|
2
2
|
import pytest
|
|
3
3
|
import uuid
|
|
4
|
+
import pytest_asyncio
|
|
4
5
|
|
|
5
6
|
from unittest.mock import Mock, AsyncMock
|
|
6
7
|
|
|
8
|
+
from pulpcore.constants import TASK_STATES
|
|
9
|
+
from django_guid import set_guid, clear_guid
|
|
7
10
|
from aiohttp.web_exceptions import HTTPMovedPermanently
|
|
8
11
|
from django.db import IntegrityError
|
|
9
12
|
from pulpcore.content.handler import Handler, CheckpointListings, PathNotResolved
|
|
@@ -18,6 +21,7 @@ from pulpcore.plugin.models import (
|
|
|
18
21
|
RepositoryVersion,
|
|
19
22
|
Publication,
|
|
20
23
|
)
|
|
24
|
+
from pulpcore.app.models import AppStatus
|
|
21
25
|
|
|
22
26
|
|
|
23
27
|
@pytest.fixture
|
|
@@ -552,3 +556,42 @@ async def test_pull_through_repository_add(request123, monkeypatch):
|
|
|
552
556
|
await repo.adelete()
|
|
553
557
|
await remote.adelete()
|
|
554
558
|
await distro.adelete()
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
@pytest_asyncio.fixture
|
|
562
|
+
async def app_status(monkeypatch):
|
|
563
|
+
monkeypatch.setattr(AppStatus.objects, "_current_app_status", None)
|
|
564
|
+
app_status = await AppStatus.objects.acreate(app_type="api", name="test_runner")
|
|
565
|
+
yield app_status
|
|
566
|
+
await app_status.adelete()
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
@pytest.mark.asyncio
|
|
570
|
+
@pytest.mark.django_db
|
|
571
|
+
@pytest.mark.parametrize("repeat", (1, 2))
|
|
572
|
+
async def test_app_status_fixture_is_reusable(app_status, repeat):
|
|
573
|
+
# testing this because AppStatus handles global process state
|
|
574
|
+
assert app_status
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
@pytest.mark.asyncio
|
|
578
|
+
@pytest.mark.django_db
|
|
579
|
+
async def test_async_pull_through_add(ca1, monkeypatch, app_status):
|
|
580
|
+
set_guid(uuid.uuid4()) # required for creating a task, no easily mockable
|
|
581
|
+
monkeypatch.setattr(
|
|
582
|
+
"pulpcore.tasking.tasks.async_are_resources_available", AsyncMock(return_value=True)
|
|
583
|
+
)
|
|
584
|
+
monkeypatch.setattr("pulpcore.tasking.tasks.wakeup_worker", Mock())
|
|
585
|
+
|
|
586
|
+
repo = await Repository.objects.acreate(name=str(uuid.uuid4()))
|
|
587
|
+
try:
|
|
588
|
+
task = await repo.async_pull_through_add_content(ca1)
|
|
589
|
+
assert task.state == TASK_STATES.COMPLETED
|
|
590
|
+
except Exception as e:
|
|
591
|
+
task = None
|
|
592
|
+
assert e is None
|
|
593
|
+
finally:
|
|
594
|
+
clear_guid()
|
|
595
|
+
await repo.adelete()
|
|
596
|
+
if task:
|
|
597
|
+
await task.adelete()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pulpcore
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.90.0
|
|
4
4
|
Summary: Pulp Django Application and Related Modules
|
|
5
5
|
Author-email: Pulp Team <pulp-list@redhat.com>
|
|
6
6
|
Project-URL: Homepage, https://pulpproject.org
|
|
@@ -25,7 +25,7 @@ Requires-Dist: aiohttp<3.13,>=3.8.3
|
|
|
25
25
|
Requires-Dist: asyncio-throttle<=1.0.2,>=1.0
|
|
26
26
|
Requires-Dist: backoff<2.3,>=2.1.2
|
|
27
27
|
Requires-Dist: click<8.3,>=8.1.0
|
|
28
|
-
Requires-Dist: cryptography<
|
|
28
|
+
Requires-Dist: cryptography<47.0,>=44.0.3
|
|
29
29
|
Requires-Dist: Django~=4.2.0
|
|
30
30
|
Requires-Dist: django-filter<=25.1,>=23.1
|
|
31
31
|
Requires-Dist: django-guid<3.6,>=3.3.0
|
|
@@ -34,7 +34,7 @@ Requires-Dist: django-lifecycle<=1.2.4,>=1.0
|
|
|
34
34
|
Requires-Dist: djangorestframework<=3.16.1,>=3.14.0
|
|
35
35
|
Requires-Dist: djangorestframework-queryfields<=1.1.0,>=1.0
|
|
36
36
|
Requires-Dist: drf-access-policy<1.5.1,>=1.1.2
|
|
37
|
-
Requires-Dist: drf-nested-routers<=0.
|
|
37
|
+
Requires-Dist: drf-nested-routers<=0.95.0,>=0.93.4
|
|
38
38
|
Requires-Dist: drf-spectacular==0.27.2
|
|
39
39
|
Requires-Dist: dynaconf<3.3.0,>=3.2.5
|
|
40
40
|
Requires-Dist: gunicorn<23.1.0,>=22.0
|
|
@@ -42,9 +42,9 @@ Requires-Dist: jinja2<=3.1.6,>=3.1
|
|
|
42
42
|
Requires-Dist: json_stream<2.4,>=2.3.2
|
|
43
43
|
Requires-Dist: jq<1.11.0,>=1.6.0
|
|
44
44
|
Requires-Dist: PyOpenSSL<26.0
|
|
45
|
-
Requires-Dist: opentelemetry-api<1.
|
|
46
|
-
Requires-Dist: opentelemetry-sdk<1.
|
|
47
|
-
Requires-Dist: opentelemetry-exporter-otlp-proto-http<1.
|
|
45
|
+
Requires-Dist: opentelemetry-api<1.38,>=1.27.0
|
|
46
|
+
Requires-Dist: opentelemetry-sdk<1.38,>=1.27.0
|
|
47
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-http<1.38,>=1.27.0
|
|
48
48
|
Requires-Dist: protobuf<7.0,>=4.21.1
|
|
49
49
|
Requires-Dist: pulp-glue<0.37,>=0.28.0
|
|
50
50
|
Requires-Dist: pygtrie<=2.5.0,>=2.5
|
|
@@ -56,7 +56,7 @@ Requires-Dist: redis<6.5,>=4.3.0
|
|
|
56
56
|
Requires-Dist: tablib<3.6,>=3.5.0
|
|
57
57
|
Requires-Dist: url-normalize<2.3,>=1.4.3
|
|
58
58
|
Requires-Dist: uuid6<=2025.0.1,>=2023.5.2
|
|
59
|
-
Requires-Dist: whitenoise<6.
|
|
59
|
+
Requires-Dist: whitenoise<6.12.0,>=5.0
|
|
60
60
|
Requires-Dist: yarl<1.21,>=1.9.1
|
|
61
61
|
Provides-Extra: sftp
|
|
62
62
|
Requires-Dist: django-storages[sftp]==1.14.6; extra == "sftp"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
pulp_certguard/__init__.py,sha256=llnEd00PrsAretsgAOHiNKFbmvIdXe3iDVPmSaKz7gU,71
|
|
2
2
|
pulp_certguard/pytest_plugin.py,sha256=qhRbChzqN2PROtD-65KuoTfKr5k9T3GPsz9daFgpqpM,852
|
|
3
|
-
pulp_certguard/app/__init__.py,sha256=
|
|
3
|
+
pulp_certguard/app/__init__.py,sha256=uY5MxqWB50uPfzKnPkMo6xp5m1OW9QAxP2SpB1NaQ7s,297
|
|
4
4
|
pulp_certguard/app/models.py,sha256=YLEhBtZM4hetekVZ_GTnbLlWD6CkIQw2B3ILwXRcq-s,7483
|
|
5
5
|
pulp_certguard/app/serializers.py,sha256=9IxlQiy783RdKF9oI1mrYS4haG5Boy2DOjfP_eJtMLY,1726
|
|
6
6
|
pulp_certguard/app/viewsets.py,sha256=1_gNmsWyOT8kcOiGVkn4-wrtAjZO4wC8q0-aoEsCpjI,697
|
|
@@ -51,7 +51,7 @@ pulp_certguard/tests/unit/test_rhsm_check_path.py,sha256=Q1CsXnUgD7ELvtolPeumyNr
|
|
|
51
51
|
pulp_file/__init__.py,sha256=0vOCXofR6Eyxkg4y66esnOGPeESCe23C1cNBHj56w44,61
|
|
52
52
|
pulp_file/manifest.py,sha256=1WwIOJrPSkFcmkRm7CkWifVOCoZvo_nnANgce6uuG7U,3796
|
|
53
53
|
pulp_file/pytest_plugin.py,sha256=l1PvTxUi5D3uJy4SnHWNhr-otWEYNcm-kc5nSqVJg0Y,10646
|
|
54
|
-
pulp_file/app/__init__.py,sha256=
|
|
54
|
+
pulp_file/app/__init__.py,sha256=bRADl_3HIkWGzx9Dv4ZJ6k71Kiq0-LenUmRK-MOaGrA,292
|
|
55
55
|
pulp_file/app/modelresource.py,sha256=v-m-_bBEsfr8wG0TI5ffx1TuKUy2-PsirhuQz4XXF-0,1063
|
|
56
56
|
pulp_file/app/models.py,sha256=QsrVg_2uKqnR89sLN2Y7Zy260_nLIcUfa94uZowlmFw,4571
|
|
57
57
|
pulp_file/app/replica.py,sha256=OtNWVmdFUgNTYhPttftVNQnSrnvx2_hnrJgtW_G0Vrg,1894
|
|
@@ -74,11 +74,12 @@ pulp_file/tests/functional/api/test_crud_content_unit.py,sha256=YUug-4ZCADnxYUj3
|
|
|
74
74
|
pulp_file/tests/functional/api/test_crud_remotes.py,sha256=ukQOUGssEiwYNm7A8ti5b_cv91eec8FsbGghCNgNXhs,3459
|
|
75
75
|
pulp_file/tests/functional/api/test_domains.py,sha256=jXcp4J4cTN7yaEJX7NyMIaD6uJY8aifLZhWkPsMFgCg,14938
|
|
76
76
|
pulp_file/tests/functional/api/test_download_policies.py,sha256=XC_ORhBuALYlEzLvahEoGzmeG6lA-Ww1k---EotYgIs,11192
|
|
77
|
+
pulp_file/tests/functional/api/test_filesystem_export.py,sha256=-c9wBQZzexg46HiJUJzOmSQa0bMWq23pLyVXiGpEywk,7688
|
|
77
78
|
pulp_file/tests/functional/api/test_generic_list.py,sha256=xDkjvLu88WLPQ1RtBb6EflhdKq6j5M9BsSHlCGZxFJM,1881
|
|
78
79
|
pulp_file/tests/functional/api/test_labels.py,sha256=1GaMil8p36mn9hQCpfOqp4ENntwy8KLshuDbkrXXDUk,6656
|
|
79
80
|
pulp_file/tests/functional/api/test_mime_types.py,sha256=ZTZVpEnYXcXsDVo1PaaWEXY6BR1l-i0SSqML3_kOQos,3484
|
|
80
81
|
pulp_file/tests/functional/api/test_publish.py,sha256=Bjb-IHknmlXS0gY15OUDvQFNJJQJqWaXU7uFmORBOOQ,5844
|
|
81
|
-
pulp_file/tests/functional/api/test_pulp_export.py,sha256=
|
|
82
|
+
pulp_file/tests/functional/api/test_pulp_export.py,sha256=8D4CwzL2L8-MqUtyDmCra-LglcSU9LlOl3xkhtoe_Vo,14268
|
|
82
83
|
pulp_file/tests/functional/api/test_rbac.py,sha256=8smU2gy94Bj03CiKC_8nIbB-AdZxoLbJT3G2rzGENgk,12423
|
|
83
84
|
pulp_file/tests/functional/api/test_remote_settings.py,sha256=gpIgzuPCR2y_fJF-lOIA5SFFMcVEWfFxF6S0PiHAl7s,12034
|
|
84
85
|
pulp_file/tests/functional/api/test_sync.py,sha256=jN87UoibkoJkqBV36ctvB9v72JKQHFnciRxFA-_1VfA,5673
|
|
@@ -96,17 +97,17 @@ pulpcore/pytest_plugin.py,sha256=fy9vz5-bw30T7f4jxDtNIgF7L_0MJ_q7KIAzpvizvnY,382
|
|
|
96
97
|
pulpcore/responses.py,sha256=mIGKmdCfTSoZxbFu4yIH1xbdLx1u5gqt3D99LTamcJg,6125
|
|
97
98
|
pulpcore/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
98
99
|
pulpcore/app/access_policy.py,sha256=5vCKy6WoHtIt1_-eS5vMaZ7CmR4G-CIpsrB8yT-d88Q,6079
|
|
99
|
-
pulpcore/app/apps.py,sha256=
|
|
100
|
+
pulpcore/app/apps.py,sha256=RzXIJpB4k0a0pscXvqlZqf2h2lD8AyQXw9zlQSuj_ZU,17412
|
|
100
101
|
pulpcore/app/authentication.py,sha256=1LIJW6HIQQlZrliHy__jdzkDEh6Oj7xKgd0V-vRcDus,2855
|
|
101
102
|
pulpcore/app/checks.py,sha256=jbfTF7nmftBbky4AQXHigpyCaGydKasvRUXsd72JZVg,1946
|
|
102
103
|
pulpcore/app/entrypoint.py,sha256=GYEq4GjglQZhFlU3865AT_H0nPypDKJAsf8qdyR4tPY,4985
|
|
103
104
|
pulpcore/app/files.py,sha256=BHq2T6cizPXfepQuEw_RfPXBqzcDRRVK3sedGDrgSJ4,6315
|
|
104
105
|
pulpcore/app/global_access_conditions.py,sha256=Jezc1Hf0bQFaZvZFEDPpBrJmK0EvIa6zHRHHZYkez2Y,30398
|
|
105
|
-
pulpcore/app/importexport.py,sha256=
|
|
106
|
+
pulpcore/app/importexport.py,sha256=Be6Z2EJ71KblAshTezVokYHhU3kPJCA8MuPUCSKm9mY,9665
|
|
106
107
|
pulpcore/app/loggers.py,sha256=7tteVBBIf4W7jk4tB7QNpFGjCZueDDrPAavHj46LdJI,79
|
|
107
108
|
pulpcore/app/manage.py,sha256=5YGD5ly3dJcLjX4jKIo3BBPFi_aqEPqi-CCoogV8lm8,286
|
|
108
109
|
pulpcore/app/mime_types.py,sha256=xQh9gd5jHKxS0RrYqUjg98pST-Cyfcrk_Et1l2eby_w,6706
|
|
109
|
-
pulpcore/app/modelresource.py,sha256=
|
|
110
|
+
pulpcore/app/modelresource.py,sha256=Wl6_TIg5bhUjh9-awivY5o_-zN7dO8Tll8tmFBFUGXA,6769
|
|
110
111
|
pulpcore/app/netutil.py,sha256=qO99WtWPLjAKPh_APw92Y3mUtxPH91NfeRuWLii1MLA,412
|
|
111
112
|
pulpcore/app/openpgp.py,sha256=MYwCTGz7J9-Zr5aSBrz7KGWWWNC1EI-aItGb5dr7XPE,17246
|
|
112
113
|
pulpcore/app/pulp_hashlib.py,sha256=NoVCO8duLz9rggPcilg0smi6fTDnsn-zS9dXgO831Pg,1327
|
|
@@ -137,6 +138,7 @@ pulpcore/app/management/commands/remove-signing-service.py,sha256=OF0IeGoldEhFAK
|
|
|
137
138
|
pulpcore/app/management/commands/repository-size.py,sha256=jSbYUIvLY-lxsNtzcN9TE_ZGvha4mzewu3cPdFkrMbM,4999
|
|
138
139
|
pulpcore/app/management/commands/reset-admin-password.py,sha256=vCELRG9KiiDzsmqNUfOpbI-Ii98MOpQkZJWNPe4mdSw,2255
|
|
139
140
|
pulpcore/app/management/commands/rotate-db-key.py,sha256=B-qsWVir9bqgc6y-C0AvqiU7UYg1L85XwcpIjweUR_M,2781
|
|
141
|
+
pulpcore/app/management/commands/shell.py,sha256=tf1vTYLN_a6Jq6ii5arHI7z_5bJUb0CrUwTJW0DqxQY,243
|
|
140
142
|
pulpcore/app/migrations/0001_squashed_0090_char_to_text_field.py,sha256=8edzYHRAFNAogHTc4lQqt2faA3dNsh5JthGRSPIpO9w,64100
|
|
141
143
|
pulpcore/app/migrations/0091_systemid.py,sha256=OF3vDsdpm5FFd2BDlDwd0IH2l7Ibqx4XMWvpUk7uYew,672
|
|
142
144
|
pulpcore/app/migrations/0092_alter_upload_options.py,sha256=9LvysGb0QSh7r4eGjN91swvYyG-Yu6rIXxUtHo1K4b8,394
|
|
@@ -192,27 +194,29 @@ pulpcore/app/migrations/0140_require_appstatus_zdu.py,sha256=KrSyuQDg6Wd_M4RetDf
|
|
|
192
194
|
pulpcore/app/migrations/0141_alter_appstatus_name.py,sha256=bkNO_1RrCFn5VQWTNRpz5LhZyWXluLdVekPfDGEHFB8,375
|
|
193
195
|
pulpcore/app/migrations/0142_task_result.py,sha256=aoq81R1-mPylVQr7pQy5Bf2Yfz5ssjDqmSXUjv2rPHg,514
|
|
194
196
|
pulpcore/app/migrations/0143_require_app_lock_zdu.py,sha256=RX6bk1VULScY9K5fyCejPBVbWojCVdRSB39WuLwgdIc,303
|
|
197
|
+
pulpcore/app/migrations/0144_delete_old_appstatus.py,sha256=GX9wuNG-GDAnuWm8S8cE9MZogIBosH0uST7MBB-r4hA,639
|
|
198
|
+
pulpcore/app/migrations/0145_domainize_import_export.py,sha256=aST3vmY7sVQ1sePzie28qtgB2qzLeF-hSa_7mEstTvU,1829
|
|
195
199
|
pulpcore/app/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
196
|
-
pulpcore/app/models/__init__.py,sha256=
|
|
200
|
+
pulpcore/app/models/__init__.py,sha256=JmTkIF4jVwPbHwTPuvE0ua2YFvS5BZ79eJYBQl7pm7A,3467
|
|
197
201
|
pulpcore/app/models/access_policy.py,sha256=o4L41RGoZ5UMmh5UeeenmadD5MJgShguphgd4eAVxQA,6071
|
|
198
202
|
pulpcore/app/models/acs.py,sha256=CZK61L41_K-fmb-qDEuRxLMNF06mm5sMlqdEWZ6eb74,1749
|
|
199
203
|
pulpcore/app/models/analytics.py,sha256=OJr_Zn5ixde6IQJwEGOgKo7hDaOMQ0QCae_4HdjZK-4,607
|
|
200
204
|
pulpcore/app/models/base.py,sha256=YbbH4LEEKIlFOWX_73bsYFlum8eOPmxHkESuKQTIapY,9102
|
|
201
205
|
pulpcore/app/models/content.py,sha256=8NE__k2suNvI1L9eNeWvIqB6i_fmpBHRJEt_B50S1zc,35713
|
|
202
206
|
pulpcore/app/models/domain.py,sha256=c9EUAKPEKKpeNxwDGhdw6UyD5cyZGrIA3qzjsN-RIc0,3685
|
|
203
|
-
pulpcore/app/models/exporter.py,sha256=
|
|
204
|
-
pulpcore/app/models/fields.py,sha256=
|
|
207
|
+
pulpcore/app/models/exporter.py,sha256=U7Qg6Ku3JqsNbFNFyFtAWLcg1hs8s1tnrimu06iaFic,4600
|
|
208
|
+
pulpcore/app/models/fields.py,sha256=NFmDYjyAvf4QzOogKSvcG7NReOalSKP3b5npIxrKRwQ,6450
|
|
205
209
|
pulpcore/app/models/generic.py,sha256=PWeVttDRysgy9aReSkJ0TUORwyTf1-lE68fp8wMGhik,962
|
|
206
|
-
pulpcore/app/models/importer.py,sha256=
|
|
210
|
+
pulpcore/app/models/importer.py,sha256=NjdcQ_nIwMLgjdq6dOBHUI8e-VzTNREBKg1-4tIH8Oc,3358
|
|
207
211
|
pulpcore/app/models/openpgp.py,sha256=3R5p8ZBPq63NzaE2_EwCXEMYPUQu7QUWanMcKCOoWkM,7874
|
|
208
212
|
pulpcore/app/models/progress.py,sha256=osD0cqPWC5oaebKgjpaOLY6tgv1bpjA66ty7nr8TaLU,13499
|
|
209
213
|
pulpcore/app/models/publication.py,sha256=75uUnm_sU5V_QraD6kPvEXVKxYyA1ikIsoFD517-1aE,27146
|
|
210
214
|
pulpcore/app/models/replica.py,sha256=i_wPxyPaVWpEVTJNVjJsBarxFauqeagtuwLadsmVz-g,2067
|
|
211
|
-
pulpcore/app/models/repository.py,sha256=
|
|
215
|
+
pulpcore/app/models/repository.py,sha256=UyKvHV_NxDweUFWcyC1AiIpPDpYggJfxPbGum4wFwL4,58692
|
|
212
216
|
pulpcore/app/models/role.py,sha256=dZklNd2VeAw4cT6dyJ7SyTBt9sZvdqakY86wXGAY3vU,3287
|
|
213
|
-
pulpcore/app/models/status.py,sha256=
|
|
217
|
+
pulpcore/app/models/status.py,sha256=khh0GalMNwirg9uyY3xEXh2bgsermImEWYZeZHOZcoY,4173
|
|
214
218
|
pulpcore/app/models/storage.py,sha256=2b-DQWaO31NqjV6FiISALegND-sQZAU7BVAsduUvm3o,6780
|
|
215
|
-
pulpcore/app/models/task.py,sha256=
|
|
219
|
+
pulpcore/app/models/task.py,sha256=yRy6Oi70jQRe25PCAwdbtHS5oIMeTWoEoCuixij2byA,15919
|
|
216
220
|
pulpcore/app/models/upload.py,sha256=3njXT2rrVJwBjEDegvqcLD9_7cPnnl974lhbAhikEp8,3004
|
|
217
221
|
pulpcore/app/models/vulnerability_report.py,sha256=DDAUjDaW3Kn9KPBkBl94u4EuQy8UIu5wKbmE5kMkhWE,1238
|
|
218
222
|
pulpcore/app/protobuf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -222,10 +226,10 @@ pulpcore/app/serializers/access_policy.py,sha256=NNtuzDW5H4RGfy5LbRFEHWDTDzXdL-K
|
|
|
222
226
|
pulpcore/app/serializers/acs.py,sha256=wBbGE5YHR7dJWuicbDtiPQUJ7xEgz1zKHGkJEaMfpDU,5834
|
|
223
227
|
pulpcore/app/serializers/base.py,sha256=ojWmsr2U2Mx8qpSFxqHLNQyfU2Z9q7hY1NUwVs9s3HE,21418
|
|
224
228
|
pulpcore/app/serializers/content.py,sha256=SWa9_PlrTtWhXU4axIvZwvRvevfkbetL7jOkycPG87c,12177
|
|
225
|
-
pulpcore/app/serializers/domain.py,sha256=
|
|
226
|
-
pulpcore/app/serializers/exporter.py,sha256=
|
|
229
|
+
pulpcore/app/serializers/domain.py,sha256=Yl5D3HALXBn8rOu9eRByCKV-Ya6EuYz2gm7XreLCYrs,22760
|
|
230
|
+
pulpcore/app/serializers/exporter.py,sha256=uDuK54g2v4-Mr0iRc_K16umG3jua4sX1bWQALa6FjnU,11164
|
|
227
231
|
pulpcore/app/serializers/fields.py,sha256=Ql-DXvOFWrJ98ISB-6GGR19K2FD2WNkvV2dJDeTPURM,16502
|
|
228
|
-
pulpcore/app/serializers/importer.py,sha256=
|
|
232
|
+
pulpcore/app/serializers/importer.py,sha256=HUfOVs1Ydoa0h3KrubE-EZ9x8kFq1qRKrLLdHP2Tj5o,8179
|
|
229
233
|
pulpcore/app/serializers/openpgp.py,sha256=3Svxskj_-HmOVbjay7QI82zXnKTsbtaSlZZ03CoT-MQ,8966
|
|
230
234
|
pulpcore/app/serializers/orphans.py,sha256=Vhyaj0fqYT4pkiYoNjgmsy1u5BiR_aHwZm2y7rk9cbk,1967
|
|
231
235
|
pulpcore/app/serializers/progress.py,sha256=j4IQDLb_XOrLzTud4Fq8T-8kkOqLewReMVkbS5uCEIg,2575
|
|
@@ -236,7 +240,7 @@ pulpcore/app/serializers/repair.py,sha256=uKrxTnhoarxyyGCixPRn9pmG19gRRVUTM7nPwC
|
|
|
236
240
|
pulpcore/app/serializers/replica.py,sha256=E3jwn1vfBqT4Y4s9pWsTrUEJKPO9pO0q2ZmwcpIDVh4,4044
|
|
237
241
|
pulpcore/app/serializers/repository.py,sha256=BNv0yX1JJs57VcMdzjU5rthRMcm1KB93Seqp6jve2i8,20468
|
|
238
242
|
pulpcore/app/serializers/status.py,sha256=RRlymRv_CrfCog3xIZUY86L03MHButvsJu8xmzdoreY,4245
|
|
239
|
-
pulpcore/app/serializers/task.py,sha256=
|
|
243
|
+
pulpcore/app/serializers/task.py,sha256=b-T3btKxeRxpindesPzH00N-FdXFF1WmDeOSpXGHCbY,9303
|
|
240
244
|
pulpcore/app/serializers/upload.py,sha256=4r6iBegbYHmgFYjBYPcqB8J7eSxXgY4ukayMxJZNh_M,2402
|
|
241
245
|
pulpcore/app/serializers/user.py,sha256=QBEnUCfq2my3Lq_pohj7hphDE8wqU6g6fnYuEXl8VtI,18413
|
|
242
246
|
pulpcore/app/serializers/vulnerability_report.py,sha256=N7geQkTDZ7_SCipo6Q4LGBInwuGy8-tGIpwGIPWimm4,787
|
|
@@ -244,13 +248,13 @@ pulpcore/app/tasks/__init__.py,sha256=J8S3QDCIc8ONYPLVmp7tSLEfQZbHjouvpYBhZHYYV0
|
|
|
244
248
|
pulpcore/app/tasks/analytics.py,sha256=taQqEJ9RROIp77uSHA9S32MNlpxkI8admexMcGnHj3I,4720
|
|
245
249
|
pulpcore/app/tasks/base.py,sha256=IlC8-StBagiWFy0quaLqPYCtS8kajAA4Bv8DFUE67nk,6175
|
|
246
250
|
pulpcore/app/tasks/export.py,sha256=dRg-KcnM7HumXUx8mjgJ-EVMcz2RbzSOPmMkzVtJEnI,19320
|
|
247
|
-
pulpcore/app/tasks/importer.py,sha256=
|
|
251
|
+
pulpcore/app/tasks/importer.py,sha256=wYy4qlYaCOInX974xmHx8q3Ikni9ui5xAfm7AvIwa7I,24899
|
|
248
252
|
pulpcore/app/tasks/migrate.py,sha256=wCjGskoF-XWzbINEyC_crgcigFZlC8EHqZTbjkLQykg,2452
|
|
249
253
|
pulpcore/app/tasks/orphan.py,sha256=4rTZLZ549niJ7mGMh_7suy-czIcj06oCTxPYnsPN8mU,4685
|
|
250
254
|
pulpcore/app/tasks/purge.py,sha256=IpdKTj9AvlNNuMNbkxa63xuaf3eK6dUvHZeMMWr_MjQ,7532
|
|
251
255
|
pulpcore/app/tasks/reclaim_space.py,sha256=FZ7KFasbScPAU7A6lzK98pdylmqgThssgnNMecG5bEw,3803
|
|
252
256
|
pulpcore/app/tasks/replica.py,sha256=T0Mky1FjrJH0j6ag61fE-vQmdQ0Otoe8_nOREXYHVXg,4485
|
|
253
|
-
pulpcore/app/tasks/repository.py,sha256=
|
|
257
|
+
pulpcore/app/tasks/repository.py,sha256=HyC3eAR-RObmhSmKxnFgkZ29Z67vgcToSoC3BdaVQFc,10646
|
|
254
258
|
pulpcore/app/tasks/telemetry.py,sha256=QXOcYi7VIx_TBPCfs2BfcaiiVzRCiTFPZCN8MlC-hw8,1338
|
|
255
259
|
pulpcore/app/tasks/test.py,sha256=sRGdELmjRDFTldso1gT6BEFXLwxNGzjFgpe0wzBqfy0,888
|
|
256
260
|
pulpcore/app/tasks/upload.py,sha256=3YJa32XYUFgqkEEWoERRPB9Q6ph9a6ashMtMi24R15k,1413
|
|
@@ -266,19 +270,19 @@ pulpcore/app/views/status.py,sha256=JRjQ9f9yTMcOOcExp1iLO0PUL7mdnLSBdTMUcCUa5K8,
|
|
|
266
270
|
pulpcore/app/viewsets/__init__.py,sha256=Dh0vT4xnPPnxxES6V6uUB-dXJ_Z99s57p0lb8i9K8ts,2286
|
|
267
271
|
pulpcore/app/viewsets/access_policy.py,sha256=Tjo443gpPfR9gRAgfQfTuV15eMWylZa7lPLucTAIKhQ,2447
|
|
268
272
|
pulpcore/app/viewsets/acs.py,sha256=JabJntgGAMELbarKlTXDWrgMSYdMPgv6evJxoRdj66Y,2078
|
|
269
|
-
pulpcore/app/viewsets/base.py,sha256=
|
|
273
|
+
pulpcore/app/viewsets/base.py,sha256=JFZu3SdwLvTiFdzhwEzi4mWDNTtB3Vt2PPD_vOlYExE,27459
|
|
270
274
|
pulpcore/app/viewsets/content.py,sha256=PLKdY6l_D5_5i3aFOYdVLAz5zpjKEJmXKrEFJOrcOFg,7919
|
|
271
275
|
pulpcore/app/viewsets/custom_filters.py,sha256=_O3HPCbZ_we4ZO4gxCMQwWvDjk8JMisGIRwpkk2rkSs,14465
|
|
272
|
-
pulpcore/app/viewsets/domain.py,sha256=
|
|
273
|
-
pulpcore/app/viewsets/exporter.py,sha256=
|
|
274
|
-
pulpcore/app/viewsets/importer.py,sha256=
|
|
276
|
+
pulpcore/app/viewsets/domain.py,sha256=Qyc3rjK85YSrwiskpUbInk-Gki2n3KwAMPCGEq45rHc,6082
|
|
277
|
+
pulpcore/app/viewsets/exporter.py,sha256=2U1_R0KbNzJQVjaWV7-DlQ_TSor1EyInLHPZ08Z7opE,5902
|
|
278
|
+
pulpcore/app/viewsets/importer.py,sha256=yI8QcPgUFJuS9fEvZTnta4WOShdTGkaq2y0itg0eoAY,3318
|
|
275
279
|
pulpcore/app/viewsets/openpgp.py,sha256=gkVbKwsLW4PKr0VOopYrK__nOQXm32DgUOWpN9hqo5s,6281
|
|
276
280
|
pulpcore/app/viewsets/orphans.py,sha256=wArGxXMBdvRO3D_MMwlqd1kZkXrLNEFoUOEJDkVTr1A,1422
|
|
277
281
|
pulpcore/app/viewsets/publication.py,sha256=5os3PVMs0Z7oRJX5HkQ7U8JojLengq7rYCUdVZ7PJd8,19443
|
|
278
282
|
pulpcore/app/viewsets/reclaim.py,sha256=s8eURE5LItYBwo8c3aBou5SgclnXfDm0-KOW2seIzHQ,1757
|
|
279
283
|
pulpcore/app/viewsets/replica.py,sha256=SOzcl30r-X5I5Ia_IZlb3BBGC31UqnMSf8uipgPC2sg,4981
|
|
280
284
|
pulpcore/app/viewsets/repository.py,sha256=kRk1Ww61bvTiKVTz_o9Gr4sSJcM2s5CXvcYCF8A_Br4,12975
|
|
281
|
-
pulpcore/app/viewsets/task.py,sha256=
|
|
285
|
+
pulpcore/app/viewsets/task.py,sha256=yYm8xuqi8X5PDLEbvDtI3yhKmGwNZx8-WgoMg22EALc,17038
|
|
282
286
|
pulpcore/app/viewsets/upload.py,sha256=Mfy9Vcm5KcqARooH4iExzoXVkL6boDddEqAnGWDWzFg,5452
|
|
283
287
|
pulpcore/app/viewsets/user.py,sha256=86eMawpaVrvp6ilQmb1C4j7SKpesPB5HgMovYL9rY3Q,13813
|
|
284
288
|
pulpcore/app/viewsets/vulnerability_report.py,sha256=XCvhbkzxC6qJ5JvTrHbRwuS_R3y5T1lSASf0HGg6p3A,689
|
|
@@ -298,7 +302,7 @@ pulpcore/exceptions/__init__.py,sha256=ZgqOLvuNEAEPkC8lUVEJIFyUJZJOy94whdzXYoMP2
|
|
|
298
302
|
pulpcore/exceptions/base.py,sha256=3iNTD8BsAfe7vpUaOzXl2f_WJPd4wfqEuf2GkFheBhs,2863
|
|
299
303
|
pulpcore/exceptions/plugin.py,sha256=CrfzjCP1YZk_W6p1yRFrUfqTv0Iptzu2aBxzlebXeLU,613
|
|
300
304
|
pulpcore/exceptions/validation.py,sha256=4iyDMxKzejHIzEuebDRXkvA_GNCdaommW9Ycsaa1v3Y,2481
|
|
301
|
-
pulpcore/openapi/__init__.py,sha256=
|
|
305
|
+
pulpcore/openapi/__init__.py,sha256=WKAk8y0Jgi3V5WPtnofFBGVKBCz5EiljB2givU064js,19364
|
|
302
306
|
pulpcore/openapi/hooks.py,sha256=uRFFW6khHNrntK6R99SUEDfP4LzmYJfsX7i8XGO4iaI,1426
|
|
303
307
|
pulpcore/plugin/__init__.py,sha256=q0qu_15BTEY_EqPB9DSDk8rdnZMvld3cZsFXEnOVjuo,131
|
|
304
308
|
pulpcore/plugin/access_policy.py,sha256=KHbWBXEOP59V8J_R52Pw2Q_Amodg-1bJYh6tyt5vDgk,4968
|
|
@@ -318,7 +322,7 @@ pulpcore/plugin/repo_version_utils.py,sha256=aFLnE04-Azd0Qq3qBnHKcw2MOLBMGpF_ncw
|
|
|
318
322
|
pulpcore/plugin/responses.py,sha256=VcgJtVaTzCPjdIGz_AS4nQwO4ooh4O5T9KBEa1FGA1w,62
|
|
319
323
|
pulpcore/plugin/storage.py,sha256=CMoWFPfZG82-SOmuuaf8aPDYerK7mvxlER_cgWdJzQA,82
|
|
320
324
|
pulpcore/plugin/sync.py,sha256=IwAUZ_7vVYuba2Uhm0ndMyEnNZTkOhX0kOVWtb8SgxE,1002
|
|
321
|
-
pulpcore/plugin/tasking.py,sha256=
|
|
325
|
+
pulpcore/plugin/tasking.py,sha256=7sQGg7JPxPPBgtcPD3LTW222nDsR1WO2GTGUfHDQwnU,832
|
|
322
326
|
pulpcore/plugin/util.py,sha256=Az0DDhdC6fEIPApC5ffdvM4oMwbqteISJ-b1yEcFRBE,1470
|
|
323
327
|
pulpcore/plugin/authentication/__init__.py,sha256=0qx9U7Poy96Ql3zu7DZwmzsA8Cx_yd1zHeeGKLeLXHg,69
|
|
324
328
|
pulpcore/plugin/cache/__init__.py,sha256=0P1OqLmYxJdAaxhND6flNZzYa-korgIrzS1eOiTT_kc,74
|
|
@@ -340,8 +344,8 @@ pulpcore/tasking/_util.py,sha256=fPW4k1nUa_NZ0ywy_A15Fuiejo5stY58abPbZTXw5t8,990
|
|
|
340
344
|
pulpcore/tasking/entrypoint.py,sha256=eAypZD4ORoNOrmBeMdbwO9p6GSQ59bMvZ3TrbnE0czw,1305
|
|
341
345
|
pulpcore/tasking/kafka.py,sha256=76z4DzeXM1WL5uu1HlKnduWeLO3-b-czvGBXdWR6054,3845
|
|
342
346
|
pulpcore/tasking/storage.py,sha256=zQkwlpC_FDQtmZGZ8vKwHqxvD6CLO_gAS4Q7wijZE-k,3106
|
|
343
|
-
pulpcore/tasking/tasks.py,sha256=
|
|
344
|
-
pulpcore/tasking/worker.py,sha256=
|
|
347
|
+
pulpcore/tasking/tasks.py,sha256=cn0y70GwXEOT_Y_mHnWce8Yvu0JSsu1TVBvMmhYjeZ4,16394
|
|
348
|
+
pulpcore/tasking/worker.py,sha256=TJ2nQhA2TpAfs-w5WyOy2owCm4ZDfCrkvmCYQGDnPVY,25955
|
|
345
349
|
pulpcore/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
346
350
|
pulpcore/tests/functional/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
347
351
|
pulpcore/tests/functional/content_with_coverage.py,sha256=gQK8himy32s9O9vpXdgoM6-_z2KySaXm5rTga9z0jGI,260
|
|
@@ -354,7 +358,7 @@ pulpcore/tests/functional/api/test_artifact_distribution.py,sha256=EWBsFWW_A-Wi3
|
|
|
354
358
|
pulpcore/tests/functional/api/test_auth.py,sha256=IemwGQW1YDe_TAvdBTpStkc1_yI9uIzZRxN1HvCMp70,6174
|
|
355
359
|
pulpcore/tests/functional/api/test_correlation_id.py,sha256=4iCKrI8exUPuwOr6tO1nqo8nTZ_8-n3tXChKRIqJHF4,519
|
|
356
360
|
pulpcore/tests/functional/api/test_crd_artifacts.py,sha256=NNr7Bd9Uy7gSaeqQS8vs03znSv8KunM-EVWn9ab_Ycg,7873
|
|
357
|
-
pulpcore/tests/functional/api/test_crud_domains.py,sha256=
|
|
361
|
+
pulpcore/tests/functional/api/test_crud_domains.py,sha256=7pckhsrZ_SQsDQngrOLeafU4jmnKrwqZzU_qgrK6V10,13349
|
|
358
362
|
pulpcore/tests/functional/api/test_filter.py,sha256=2tPd85CJRxMNPDZYPkHnrcVyRq9pa1R06uWiYBbpGeA,9296
|
|
359
363
|
pulpcore/tests/functional/api/test_login.py,sha256=BcOgch17WZ7jD7LGNN5s0i0KOdJt_uF25APbNYdYltI,5548
|
|
360
364
|
pulpcore/tests/functional/api/test_openapi_schema.py,sha256=L2auDfBMYOTUpKQKmPy1q-bBUd3fk7fEsMMvn7kY2ZY,4803
|
|
@@ -367,7 +371,7 @@ pulpcore/tests/functional/api/test_scoping.py,sha256=uiLOsx5_7puRMcvrpPKEYQziqlu
|
|
|
367
371
|
pulpcore/tests/functional/api/test_signing_service.py,sha256=yr1HXBrNoliBHJNAGAN4PAN0eBKPIvAQP-uMoMSrO_I,222
|
|
368
372
|
pulpcore/tests/functional/api/test_status.py,sha256=S4lWuemCLwM4rC3fCCZEehGMGypirPo5fnT7bkJuYxI,5384
|
|
369
373
|
pulpcore/tests/functional/api/test_task_purge.py,sha256=Av4DrUdCqf-JegfoP1pkY4B-teoUzYd1LBZKAhDa-08,7273
|
|
370
|
-
pulpcore/tests/functional/api/test_tasking.py,sha256=
|
|
374
|
+
pulpcore/tests/functional/api/test_tasking.py,sha256=Pe_jmNnI-MLZHP5wvOU3W7hqmfqaeBrzDNKZCCSZYO4,21194
|
|
371
375
|
pulpcore/tests/functional/api/test_upload.py,sha256=dG9G6jLl-qGqC87LWJfkDJ1s3ppDdeanTmbbIVQnYQQ,6814
|
|
372
376
|
pulpcore/tests/functional/api/test_users_groups.py,sha256=YFG0xtyJuIRraczR7ERl_UNS7dlJfKd2eUmXgD1lLBU,2926
|
|
373
377
|
pulpcore/tests/functional/api/test_workers.py,sha256=XJrQdxt0BpMeMVOdTyzcTEMk5bB8XC4rA8U580HnzBc,4691
|
|
@@ -380,7 +384,7 @@ pulpcore/tests/functional/api/using_plugin/test_content_directory.py,sha256=w4uY
|
|
|
380
384
|
pulpcore/tests/functional/api/using_plugin/test_content_path.py,sha256=fvqeptqo-mrUAiKIjlypuvHG1XsFeKKP81ocTmo4hv0,3334
|
|
381
385
|
pulpcore/tests/functional/api/using_plugin/test_content_promotion.py,sha256=Co4ytrfpzklwgDdEthv45dsmrceRpqIQfLJlZWM6EBY,2388
|
|
382
386
|
pulpcore/tests/functional/api/using_plugin/test_contentguard.py,sha256=aMZf4g1uNHhWM7cAJa7bC49A-9uNLIphlr6sBkCOzi8,12894
|
|
383
|
-
pulpcore/tests/functional/api/using_plugin/test_crud_repos.py,sha256=
|
|
387
|
+
pulpcore/tests/functional/api/using_plugin/test_crud_repos.py,sha256=XmcVnnzDaUgeYosiYvd2EqWJYdlLqtUVnOvAzujffCU,14758
|
|
384
388
|
pulpcore/tests/functional/api/using_plugin/test_distributions.py,sha256=CeOMN4iTzATp_NJC0Bu2n8RFyQKiIk3y8hcfERQJcfk,11992
|
|
385
389
|
pulpcore/tests/functional/api/using_plugin/test_filesystemexport.py,sha256=s5C9lW5Q4gaY56d3Rsa-uadcn_3D7rWQ2CosowTe8_Y,6059
|
|
386
390
|
pulpcore/tests/functional/api/using_plugin/test_labels.py,sha256=LO45iAFel4SKB6R5InUouiifGu_eHMZnoMFmwI4cSyE,2463
|
|
@@ -411,7 +415,7 @@ pulpcore/tests/unit/test_util.py,sha256=hgioXXC5-tufFpk6zrmMEHtWPG7UbmMHqeF5CiXO
|
|
|
411
415
|
pulpcore/tests/unit/test_viewsets.py,sha256=6rek28Rr0kEuYjQZ0_kTSnKsTvmMmD3l-WV_GVb48YQ,3208
|
|
412
416
|
pulpcore/tests/unit/test_vulnerability_report.py,sha256=KFehXFns2gIkGQ-zWsXyK--d8CqVfHgijlWbMI8QmF0,2986
|
|
413
417
|
pulpcore/tests/unit/content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
414
|
-
pulpcore/tests/unit/content/test_handler.py,sha256=
|
|
418
|
+
pulpcore/tests/unit/content/test_handler.py,sha256=sPVHfK7TKHMLQz1JF9d2L0FZhTkR8F8E8Eaiek0EtlA,21206
|
|
415
419
|
pulpcore/tests/unit/content/test_heartbeat.py,sha256=Xtj4cvyI0jBsFZskcypwxruKgMh5M9cgNXQGDWhXMP4,1250
|
|
416
420
|
pulpcore/tests/unit/download/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
417
421
|
pulpcore/tests/unit/download/test_downloader_base.py,sha256=TYG_OPuyj-_N5L-zLTW1qJD_29nKFMA_PC-fPfLKLOo,1281
|
|
@@ -442,9 +446,9 @@ pulpcore/tests/unit/stages/test_artifactdownloader.py,sha256=DX6jHctGYbDhsnzQpXf
|
|
|
442
446
|
pulpcore/tests/unit/stages/test_stages.py,sha256=H1a2BQLjdZlZvcb_qULp62huZ1xy6ItTcthktVyGU0w,4735
|
|
443
447
|
pulpcore/tests/unit/viewsets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
444
448
|
pulpcore/tests/unit/viewsets/test_viewset_base.py,sha256=gmVIgE9o0tAdiF92HCNiJkb1joc8oEaG5rnzh5V1loc,4837
|
|
445
|
-
pulpcore-3.
|
|
446
|
-
pulpcore-3.
|
|
447
|
-
pulpcore-3.
|
|
448
|
-
pulpcore-3.
|
|
449
|
-
pulpcore-3.
|
|
450
|
-
pulpcore-3.
|
|
449
|
+
pulpcore-3.90.0.dist-info/licenses/LICENSE,sha256=dhnHU8rJXUdAIgIjveSKAyYG_KzN5eVG-bxETIGrNW0,17988
|
|
450
|
+
pulpcore-3.90.0.dist-info/METADATA,sha256=vCTX7XfMuvbfNuLw3MbGSdHyUc4cu9rbMOWuRIIUygw,4104
|
|
451
|
+
pulpcore-3.90.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
452
|
+
pulpcore-3.90.0.dist-info/entry_points.txt,sha256=OZven4wzXzQA5b5q9MpP4HUpIPPQCSvIOvkKtNInrK0,452
|
|
453
|
+
pulpcore-3.90.0.dist-info/top_level.txt,sha256=6h-Lm3FKQSaT_nL1KSxu_hBnzKE15bcvf_BoU-ea4CI,34
|
|
454
|
+
pulpcore-3.90.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|