pulpcore 3.91.1__py3-none-any.whl → 3.92.1__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.

@@ -6,6 +6,6 @@ class PulpCertGuardPluginAppConfig(PulpPluginAppConfig):
6
6
 
7
7
  name = "pulp_certguard.app"
8
8
  label = "certguard"
9
- version = "3.91.1"
9
+ version = "3.92.1"
10
10
  python_package_name = "pulpcore"
11
11
  domain_compatible = True
pulp_file/app/__init__.py CHANGED
@@ -8,6 +8,6 @@ class PulpFilePluginAppConfig(PulpPluginAppConfig):
8
8
 
9
9
  name = "pulp_file.app"
10
10
  label = "file"
11
- version = "3.91.1"
11
+ version = "3.92.1"
12
12
  python_package_name = "pulpcore"
13
13
  domain_compatible = True
@@ -347,7 +347,7 @@ def test_reupload_damaged_artifact_chunked(
347
347
  pulpcore_bindings.UploadsApi.update(
348
348
  upload_href=upload.pulp_href,
349
349
  file=str(file_path),
350
- content_range=f"bytes 0-{iso_attrs['size']-1}/{iso_attrs['size']}",
350
+ content_range=f"bytes 0-{iso_attrs['size'] - 1}/{iso_attrs['size']}",
351
351
  )
352
352
  response = file_bindings.ContentFilesApi.create(upload=upload.pulp_href, relative_path="1.iso")
353
353
  monitor_task(response.task)
@@ -361,7 +361,7 @@ def test_reupload_damaged_artifact_chunked(
361
361
  pulpcore_bindings.UploadsApi.update(
362
362
  upload_href=upload.pulp_href,
363
363
  file=str(file_path),
364
- content_range=f"bytes 0-{iso_attrs['size']-1}/{iso_attrs['size']}",
364
+ content_range=f"bytes 0-{iso_attrs['size'] - 1}/{iso_attrs['size']}",
365
365
  )
366
366
  response = file_bindings.ContentFilesApi.create(upload=upload.pulp_href, relative_path="1.iso")
367
367
  monitor_task(response.task)
pulpcore/app/apps.py CHANGED
@@ -239,7 +239,7 @@ class PulpAppConfig(PulpPluginAppConfig):
239
239
  label = "core"
240
240
 
241
241
  # The version of this app
242
- version = "3.91.1"
242
+ version = "3.92.1"
243
243
 
244
244
  # The python package name providing this app
245
245
  python_package_name = "pulpcore"
@@ -600,23 +600,25 @@ class Content(MasterModel, QueryMixin):
600
600
  instead return a tuple of the unsaved content instance and a dictionary of the content's
601
601
  artifacts by their relative paths.
602
602
 
603
- For example::
604
-
603
+ Example:
604
+ ```python
605
605
  if path.isabs(relative_path):
606
606
  raise ValueError(_("Relative path can't start with '/'."))
607
607
  return FileContent(relative_path=relative_path, digest=artifact.sha256)
608
+ ```
608
609
 
609
610
  Args:
610
- artifact (pulpcore.plugin.models.Artifact) An instance of an Artifact
611
- relative_path (str): Relative path for the content
611
+ artifact: An instance of an [pulpcore.plugin.models.Artifact][].
612
+ relative_path: Relative path for the content
612
613
 
613
614
  Raises:
614
615
  ValueError: If relative_path starts with a '/'.
615
616
 
616
617
  Returns:
617
- An un-saved instance of [pulpcore.plugin.models.Content][] sub-class. Or a
618
- tuple of an un-saved instance of [pulpcore.plugin.models.Content][] and a dict
619
- of form [relative_path:str, Optional[artifact:`~pulpcore.plugin.models.Artifact`]]
618
+ Content: An un-saved instance of [pulpcore.plugin.models.Content][] sub-class.
619
+ ContentAndArtifacts: A tuple of an un-saved instance of
620
+ [pulpcore.plugin.models.Content][] and a
621
+ `dict[relative_path:str, Optional[artifact:pulpcore.plugin.models.Artifact]]`
620
622
  """
621
623
  raise NotImplementedError()
622
624
 
@@ -376,10 +376,10 @@ class Repository(MasterModel):
376
376
  if not cpk or already_present.exists():
377
377
  return None
378
378
 
379
- from pulpcore.plugin.tasking import dispatch, add_and_remove
379
+ from pulpcore.plugin.tasking import dispatch, aadd_and_remove
380
380
 
381
381
  body = {"repository_pk": self.pk, "add_content_units": [cpk], "remove_content_units": []}
382
- return dispatch(add_and_remove, kwargs=body, exclusive_resources=[self], immediate=True)
382
+ return dispatch(aadd_and_remove, kwargs=body, exclusive_resources=[self], immediate=True)
383
383
 
384
384
  async def async_pull_through_add_content(self, content_artifact):
385
385
  cpk = content_artifact.content_id
pulpcore/app/settings.py CHANGED
@@ -381,6 +381,8 @@ HIDE_GUARDED_DISTRIBUTIONS = False
381
381
 
382
382
  DOMAIN_ENABLED = False
383
383
 
384
+ MAX_CONCURRENT_CONTENT = 200
385
+
384
386
  SHELL_PLUS_IMPORTS = [
385
387
  "from pulpcore.app.util import get_domain, get_domain_pk, set_domain, get_url, extract_pk",
386
388
  "from pulpcore.tasking.tasks import dispatch, cancel_task, wakeup_worker",
@@ -903,7 +903,7 @@ class Handler:
903
903
  ca = ra.content_artifact
904
904
  # Try to add content to repository if present & supported
905
905
  if repository and repository.PULL_THROUGH_SUPPORTED:
906
- await sync_to_async(repository.pull_through_add_content)(ca)
906
+ await repository.async_pull_through_add_content(ca)
907
907
  # Try to stream the ContentArtifact if already created
908
908
  if ca.artifact:
909
909
  return await self._serve_content_artifact(ca, headers, request)
@@ -1347,7 +1347,7 @@ class Handler:
1347
1347
  )
1348
1348
  # Try to add content to repository if present & supported
1349
1349
  if repository and repository.PULL_THROUGH_SUPPORTED:
1350
- await sync_to_async(repository.pull_through_add_content)(ca)
1350
+ await repository.async_pull_through_add_content(ca)
1351
1351
  await response.write_eof()
1352
1352
 
1353
1353
  if response.status == 404:
@@ -2,6 +2,8 @@ import asyncio
2
2
  from collections import defaultdict
3
3
  from gettext import gettext as _
4
4
  import logging
5
+ from django.conf import settings
6
+
5
7
 
6
8
  from aiofiles import os as aos
7
9
  from asgiref.sync import sync_to_async
@@ -139,7 +141,7 @@ class GenericDownloader(Stage):
139
141
  PROGRESS_REPORTING_MESSAGE = "Downloading"
140
142
  PROGRESS_REPORTING_CODE = "sync.downloading"
141
143
 
142
- def __init__(self, max_concurrent_content=200, *args, **kwargs):
144
+ def __init__(self, max_concurrent_content=settings.MAX_CONCURRENT_CONTENT, *args, **kwargs):
143
145
  super().__init__(*args, **kwargs)
144
146
  self.max_concurrent_content = max_concurrent_content
145
147
 
pulpcore/tasking/tasks.py CHANGED
@@ -235,12 +235,13 @@ def dispatch(
235
235
 
236
236
  execute_now = immediate and not called_from_content_app()
237
237
  assert deferred or immediate, "A task must be at least `deferred` or `immediate`."
238
- send_wakeup_signal = True if not immediate else False
238
+ send_wakeup_signal = not execute_now
239
239
  function_name = get_function_name(func)
240
240
  versions = get_version(versions, function_name)
241
241
  colliding_resources, resources = get_resources(exclusive_resources, shared_resources, immediate)
242
+ app_lock = None if not execute_now else AppStatus.objects.current() # Lazy evaluation...
242
243
  task_payload = get_task_payload(
243
- function_name, task_group, args, kwargs, resources, versions, immediate, deferred
244
+ function_name, task_group, args, kwargs, resources, versions, immediate, deferred, app_lock
244
245
  )
245
246
  task = Task.objects.create(**task_payload)
246
247
  task.refresh_from_db() # The database will have assigned a timestamp for us.
@@ -278,9 +279,10 @@ async def adispatch(
278
279
  function_name = get_function_name(func)
279
280
  versions = get_version(versions, function_name)
280
281
  colliding_resources, resources = get_resources(exclusive_resources, shared_resources, immediate)
281
- send_wakeup_signal = False
282
+ send_wakeup_signal = not execute_now
283
+ app_lock = None if not execute_now else AppStatus.objects.current() # Lazy evaluation...
282
284
  task_payload = get_task_payload(
283
- function_name, task_group, args, kwargs, resources, versions, immediate, deferred
285
+ function_name, task_group, args, kwargs, resources, versions, immediate, deferred, app_lock
284
286
  )
285
287
  task = await Task.objects.acreate(**task_payload)
286
288
  await task.arefresh_from_db() # The database will have assigned a timestamp for us.
@@ -302,7 +304,7 @@ async def adispatch(
302
304
 
303
305
 
304
306
  def get_task_payload(
305
- function_name, task_group, args, kwargs, resources, versions, immediate, deferred
307
+ function_name, task_group, args, kwargs, resources, versions, immediate, deferred, app_lock
306
308
  ):
307
309
  payload = {
308
310
  "state": TASK_STATES.WAITING,
@@ -317,7 +319,7 @@ def get_task_payload(
317
319
  "immediate": immediate,
318
320
  "deferred": deferred,
319
321
  "profile_options": x_task_diagnostics_var.get(None),
320
- "app_lock": None if not immediate else AppStatus.objects.current(), # Lazy evaluation...
322
+ "app_lock": app_lock,
321
323
  }
322
324
  return payload
323
325
 
@@ -533,7 +533,7 @@ async def test_pull_through_repository_add(request123, monkeypatch):
533
533
  await create_remote_artifact(remote, ca)
534
534
  repo = await create_repository()
535
535
  monkeypatch.setattr(Remote, "get_remote_artifact_content_type", Mock(return_value=Content))
536
- monkeypatch.setattr(Repository, "pull_through_add_content", Mock())
536
+ monkeypatch.setattr(Repository, "async_pull_through_add_content", AsyncMock())
537
537
  distro = await create_distribution(remote, repository=repo)
538
538
 
539
539
  try:
@@ -541,7 +541,7 @@ async def test_pull_through_repository_add(request123, monkeypatch):
541
541
  await handler._match_and_stream(f"{distro.base_path}/c123", request123)
542
542
  handler._stream_content_artifact.assert_called_once()
543
543
  assert ca in handler._stream_content_artifact.call_args[0]
544
- repo.pull_through_add_content.assert_not_called()
544
+ repo.async_pull_through_add_content.assert_not_called()
545
545
 
546
546
  # Now set PULL_THROUGH_SUPPORTED=True and see the method is called with CA
547
547
  monkeypatch.setattr(Repository, "PULL_THROUGH_SUPPORTED", True)
@@ -549,8 +549,8 @@ async def test_pull_through_repository_add(request123, monkeypatch):
549
549
  await handler._match_and_stream(f"{distro.base_path}/c123", request123)
550
550
  handler._stream_content_artifact.assert_called_once()
551
551
  assert ca in handler._stream_content_artifact.call_args[0]
552
- repo.pull_through_add_content.assert_called_once()
553
- assert ca in repo.pull_through_add_content.call_args[0]
552
+ repo.async_pull_through_add_content.assert_called_once()
553
+ assert ca in repo.async_pull_through_add_content.call_args[0]
554
554
  finally:
555
555
  await content.adelete()
556
556
  await repo.adelete()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulpcore
3
- Version: 3.91.1
3
+ Version: 3.92.1
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
@@ -20,8 +20,8 @@ Requires-Python: >=3.11
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
22
  Requires-Dist: aiodns<3.6,>=3.3.0
23
- Requires-Dist: aiofiles<=24.1.0,>=22.1
24
- Requires-Dist: aiohttp<3.13,>=3.8.3
23
+ Requires-Dist: aiofiles<=25.1.0,>=22.1
24
+ Requires-Dist: aiohttp<3.14,>=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
@@ -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.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
45
+ Requires-Dist: opentelemetry-api<1.39,>=1.27.0
46
+ Requires-Dist: opentelemetry-sdk<1.39,>=1.27.0
47
+ Requires-Dist: opentelemetry-exporter-otlp-proto-http<1.39,>=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
@@ -52,12 +52,12 @@ Requires-Dist: psycopg[binary]<3.3,>=3.1.8
52
52
  Requires-Dist: pyparsing<3.3,>=3.1.0
53
53
  Requires-Dist: python-gnupg<0.6,>=0.5.0
54
54
  Requires-Dist: PyYAML<6.1,>=5.1.1
55
- Requires-Dist: redis<6.5,>=4.3.0
55
+ Requires-Dist: redis<7.1,>=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
59
  Requires-Dist: whitenoise<6.12.0,>=5.0
60
- Requires-Dist: yarl<1.21,>=1.9.1
60
+ Requires-Dist: yarl<1.23,>=1.9.1
61
61
  Provides-Extra: sftp
62
62
  Requires-Dist: django-storages[sftp]==1.14.6; extra == "sftp"
63
63
  Provides-Extra: s3
@@ -70,12 +70,12 @@ Provides-Extra: prometheus
70
70
  Requires-Dist: django-prometheus; extra == "prometheus"
71
71
  Provides-Extra: kafka
72
72
  Requires-Dist: cloudevents==1.11.0; extra == "kafka"
73
- Requires-Dist: confluent-kafka<2.12.0,>=2.4.0; extra == "kafka"
73
+ Requires-Dist: confluent-kafka<2.13.0,>=2.4.0; extra == "kafka"
74
74
  Provides-Extra: diagnostics
75
75
  Requires-Dist: pyinstrument~=5.0; extra == "diagnostics"
76
76
  Requires-Dist: memray~=1.17; extra == "diagnostics"
77
77
  Provides-Extra: uvloop
78
- Requires-Dist: uvloop<0.22,>=0.20; extra == "uvloop"
78
+ Requires-Dist: uvloop<0.23,>=0.20; extra == "uvloop"
79
79
  Dynamic: license-file
80
80
 
81
81
 
@@ -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=TiynDgA5oFYX4HV6JZGSOAoVH7LlgV_u_mdVDvTBMiI,297
3
+ pulp_certguard/app/__init__.py,sha256=hzmnwPoBb09t2bQa_KpeBO5twFILxTh3_wZDGmfxs8A,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=9hWYgtFBI5ps0jxPpiIASm2N3foPHKjn06_2M64om2Y,292
54
+ pulp_file/app/__init__.py,sha256=IKpdrCB9EaFEkGC1TR97EE90gQYctjPQE686MObdWBk,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
@@ -70,7 +70,7 @@ pulp_file/tests/functional/api/test_acs.py,sha256=L9MuroKKGSuxe2SzmHWCTeUUe3WSCl
70
70
  pulp_file/tests/functional/api/test_auto_publish.py,sha256=GGcXqIZhANsMd5R2MYNtjCsqp1vHT6q13AoEv-3dBE0,4514
71
71
  pulp_file/tests/functional/api/test_bad_sync.py,sha256=IKdMNDL3jRDA2SiaVsJHFU7PWCIBa-kpKM-ILNTKPaw,4448
72
72
  pulp_file/tests/functional/api/test_content_labels.py,sha256=9jvG3SPQ_40OrdgEu7xHQYmNNmqWseGoTHITe6OsWLw,6798
73
- pulp_file/tests/functional/api/test_crud_content_unit.py,sha256=YUug-4ZCADnxYUj3aB8e8lyJ7_rrXPPfRcXW3IlBKI8,14772
73
+ pulp_file/tests/functional/api/test_crud_content_unit.py,sha256=i2-06NonEJdBE458Xj2IQnbrL2LUgub1NCeD5x3-ZeE,14776
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
@@ -97,7 +97,7 @@ pulpcore/pytest_plugin.py,sha256=fy9vz5-bw30T7f4jxDtNIgF7L_0MJ_q7KIAzpvizvnY,382
97
97
  pulpcore/responses.py,sha256=mIGKmdCfTSoZxbFu4yIH1xbdLx1u5gqt3D99LTamcJg,6125
98
98
  pulpcore/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
99
99
  pulpcore/app/access_policy.py,sha256=5vCKy6WoHtIt1_-eS5vMaZ7CmR4G-CIpsrB8yT-d88Q,6079
100
- pulpcore/app/apps.py,sha256=zWa5JSfI0Ce1L0iACTx8AQoECvNyvt13qaLMEHWCmD0,17981
100
+ pulpcore/app/apps.py,sha256=xUQ2dbhyq5MVZ_dcD3MdwuH33TEMyNesdg-t4Ol2L3Y,17981
101
101
  pulpcore/app/authentication.py,sha256=1LIJW6HIQQlZrliHy__jdzkDEh6Oj7xKgd0V-vRcDus,2855
102
102
  pulpcore/app/checks.py,sha256=jbfTF7nmftBbky4AQXHigpyCaGydKasvRUXsd72JZVg,1946
103
103
  pulpcore/app/entrypoint.py,sha256=GYEq4GjglQZhFlU3865AT_H0nPypDKJAsf8qdyR4tPY,4985
@@ -116,7 +116,7 @@ pulpcore/app/redis_connection.py,sha256=VTdG0ulXuyESjYV6SJdG_jLzkLZH-MlLcD6pielw
116
116
  pulpcore/app/replica.py,sha256=rGE14OBaR_FKxmHL7NMxf_OizMyS-90IPsMRo_j9YRI,11474
117
117
  pulpcore/app/response.py,sha256=hYH_jSBrxmRsBr2bknmXE1qfs2g8JjDTXYcQ5ZWlF_c,1950
118
118
  pulpcore/app/role_util.py,sha256=84HSt8_9fxB--dtfSyg_TumVgOdyBbyP6rBaiAfTpOU,22393
119
- pulpcore/app/settings.py,sha256=tjq6rQW5_uDgiIJVwMTTuJDfXR32QK0gl9UqPDYPhJQ,21876
119
+ pulpcore/app/settings.py,sha256=iEQLhGG46h-LCHswEOiVgyoYroAEaOKaiUqofb_726o,21906
120
120
  pulpcore/app/urls.py,sha256=0gdI74CAdycJStXSw1gknviDGe3J3k0UhS4J8RYa5dg,8120
121
121
  pulpcore/app/util.py,sha256=dpBy7cewxjClAoHt5QSsM6_eqRQrRK1_W-qhYsS6U1I,23499
122
122
  pulpcore/app/wsgi.py,sha256=7rpZ_1NHEN_UfeNZCj8206bas1WeqRkHnGdxpd7rdDI,492
@@ -202,7 +202,7 @@ pulpcore/app/models/access_policy.py,sha256=o4L41RGoZ5UMmh5UeeenmadD5MJgShguphgd
202
202
  pulpcore/app/models/acs.py,sha256=CZK61L41_K-fmb-qDEuRxLMNF06mm5sMlqdEWZ6eb74,1749
203
203
  pulpcore/app/models/analytics.py,sha256=OJr_Zn5ixde6IQJwEGOgKo7hDaOMQ0QCae_4HdjZK-4,607
204
204
  pulpcore/app/models/base.py,sha256=YbbH4LEEKIlFOWX_73bsYFlum8eOPmxHkESuKQTIapY,9102
205
- pulpcore/app/models/content.py,sha256=8NE__k2suNvI1L9eNeWvIqB6i_fmpBHRJEt_B50S1zc,35713
205
+ pulpcore/app/models/content.py,sha256=ijxlOaTXLnlFcm9pnoLGbNKeY5SLThI6J57jkGIIsJs,35771
206
206
  pulpcore/app/models/domain.py,sha256=c9EUAKPEKKpeNxwDGhdw6UyD5cyZGrIA3qzjsN-RIc0,3685
207
207
  pulpcore/app/models/exporter.py,sha256=U7Qg6Ku3JqsNbFNFyFtAWLcg1hs8s1tnrimu06iaFic,4600
208
208
  pulpcore/app/models/fields.py,sha256=NFmDYjyAvf4QzOogKSvcG7NReOalSKP3b5npIxrKRwQ,6450
@@ -212,7 +212,7 @@ pulpcore/app/models/openpgp.py,sha256=3R5p8ZBPq63NzaE2_EwCXEMYPUQu7QUWanMcKCOoWk
212
212
  pulpcore/app/models/progress.py,sha256=osD0cqPWC5oaebKgjpaOLY6tgv1bpjA66ty7nr8TaLU,13499
213
213
  pulpcore/app/models/publication.py,sha256=75uUnm_sU5V_QraD6kPvEXVKxYyA1ikIsoFD517-1aE,27146
214
214
  pulpcore/app/models/replica.py,sha256=i_wPxyPaVWpEVTJNVjJsBarxFauqeagtuwLadsmVz-g,2067
215
- pulpcore/app/models/repository.py,sha256=UyKvHV_NxDweUFWcyC1AiIpPDpYggJfxPbGum4wFwL4,58692
215
+ pulpcore/app/models/repository.py,sha256=WOzaSW_Pehj_ChDDqvvaKQdccfoCK5Puqlqn2Usomi0,58694
216
216
  pulpcore/app/models/role.py,sha256=dZklNd2VeAw4cT6dyJ7SyTBt9sZvdqakY86wXGAY3vU,3287
217
217
  pulpcore/app/models/status.py,sha256=khh0GalMNwirg9uyY3xEXh2bgsermImEWYZeZHOZcoY,4173
218
218
  pulpcore/app/models/storage.py,sha256=2b-DQWaO31NqjV6FiISALegND-sQZAU7BVAsduUvm3o,6780
@@ -291,7 +291,7 @@ pulpcore/cache/cache.py,sha256=d8GMlvjeGG9MOMdi5_9029WpGCKH8Y5q9b2lt3wSREo,17371
291
291
  pulpcore/content/__init__.py,sha256=mHYi85Hy-IhG50AR-jICk9pIiMUatHJx5wO1dFJkn9k,4000
292
292
  pulpcore/content/authentication.py,sha256=lEZBkXBBBkIdtFMCSpHDD7583M0bO-zsZNYXTmpr4k8,3235
293
293
  pulpcore/content/entrypoint.py,sha256=DiQTQzfcUiuyl37uvy6Wpa_7kr8t79ekpMHr31MDL2s,2132
294
- pulpcore/content/handler.py,sha256=EubizF5HP5QK_N5eMe8sHIyUZT3ipVhaQJ-NYb1dr5g,56959
294
+ pulpcore/content/handler.py,sha256=H2bGQf1Llrxezb80DjOG3AOeobe0VJFUt4YCIZjKyEQ,56941
295
295
  pulpcore/content/instrumentation.py,sha256=spnqCJljCxshc4I05YkFxk4dFWjrqs8G0tBztP-jrQo,1608
296
296
  pulpcore/download/__init__.py,sha256=s3Wh2GKdsmbUooVIR6wSvhYVIhpaTbtfR3Ar1OJhC7s,154
297
297
  pulpcore/download/base.py,sha256=4KCAYnV8jSOX078ETwlfwNZGY3xCBF9yy866tyGKAzE,13095
@@ -333,7 +333,7 @@ pulpcore/plugin/serializers/__init__.py,sha256=rtEQYlxILhjgmQCDDoK2V3jH5sT3tmncm
333
333
  pulpcore/plugin/serializers/content.py,sha256=ycsDUpbL-0fwIrd27z70vh7Rs8SH_TR7YrRPOuWU_D0,10123
334
334
  pulpcore/plugin/stages/__init__.py,sha256=ZSMmgOKoPjEfg1VhNpldJf2bUvqezCG4gj_FBkJ4CpU,466
335
335
  pulpcore/plugin/stages/api.py,sha256=6iet7K6H5c9vk5lS9oE3gCyLlqdDKoqPMfF-lNIA-GQ,8435
336
- pulpcore/plugin/stages/artifact_stages.py,sha256=yKJQc06YevDiWGDsQDuWXzL0juj49UZ_wrE718Bd4CI,22870
336
+ pulpcore/plugin/stages/artifact_stages.py,sha256=yG4fa6r62tmvvdSRGlpwqiQsXWFrq1abML4RA4n5ios,22932
337
337
  pulpcore/plugin/stages/content_stages.py,sha256=kyoJfZY3K8QncmbuVMOCyG9PcLYp8athFvz6E7weL-Q,16082
338
338
  pulpcore/plugin/stages/declarative_version.py,sha256=Ml0baZHY4om4Ai12azUIuIR6xdINuJSoxHqlGlKXh14,7503
339
339
  pulpcore/plugin/stages/models.py,sha256=0b7xs9d64WTG2yHog1Zo_Z_-pomFAe-gC4u9wksY7H0,7490
@@ -344,7 +344,7 @@ pulpcore/tasking/_util.py,sha256=fPW4k1nUa_NZ0ywy_A15Fuiejo5stY58abPbZTXw5t8,990
344
344
  pulpcore/tasking/entrypoint.py,sha256=eAypZD4ORoNOrmBeMdbwO9p6GSQ59bMvZ3TrbnE0czw,1305
345
345
  pulpcore/tasking/kafka.py,sha256=76z4DzeXM1WL5uu1HlKnduWeLO3-b-czvGBXdWR6054,3845
346
346
  pulpcore/tasking/storage.py,sha256=zQkwlpC_FDQtmZGZ8vKwHqxvD6CLO_gAS4Q7wijZE-k,3106
347
- pulpcore/tasking/tasks.py,sha256=eda4mg6O7kWKfqR9UakLUdUCxPxveBlUixD6ZG6h5cU,16415
347
+ pulpcore/tasking/tasks.py,sha256=PsZ7cihjQklK28dxZHiDBbnhePfJQKkxmCUT3-LEFOo,16558
348
348
  pulpcore/tasking/worker.py,sha256=aycMAIx5JxkUHc3jgIFOTk59tHdmbgJna6KgWKUHXHo,26564
349
349
  pulpcore/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
350
350
  pulpcore/tests/functional/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -415,7 +415,7 @@ pulpcore/tests/unit/test_util.py,sha256=hgioXXC5-tufFpk6zrmMEHtWPG7UbmMHqeF5CiXO
415
415
  pulpcore/tests/unit/test_viewsets.py,sha256=6rek28Rr0kEuYjQZ0_kTSnKsTvmMmD3l-WV_GVb48YQ,3208
416
416
  pulpcore/tests/unit/test_vulnerability_report.py,sha256=KFehXFns2gIkGQ-zWsXyK--d8CqVfHgijlWbMI8QmF0,2986
417
417
  pulpcore/tests/unit/content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
418
- pulpcore/tests/unit/content/test_handler.py,sha256=sPVHfK7TKHMLQz1JF9d2L0FZhTkR8F8E8Eaiek0EtlA,21206
418
+ pulpcore/tests/unit/content/test_handler.py,sha256=0U9yHff_uVTcvkus6V6sLMj6kszvJBy312BxiO61MdM,21235
419
419
  pulpcore/tests/unit/content/test_heartbeat.py,sha256=Xtj4cvyI0jBsFZskcypwxruKgMh5M9cgNXQGDWhXMP4,1250
420
420
  pulpcore/tests/unit/download/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
421
421
  pulpcore/tests/unit/download/test_downloader_base.py,sha256=TYG_OPuyj-_N5L-zLTW1qJD_29nKFMA_PC-fPfLKLOo,1281
@@ -446,9 +446,9 @@ pulpcore/tests/unit/stages/test_artifactdownloader.py,sha256=DX6jHctGYbDhsnzQpXf
446
446
  pulpcore/tests/unit/stages/test_stages.py,sha256=H1a2BQLjdZlZvcb_qULp62huZ1xy6ItTcthktVyGU0w,4735
447
447
  pulpcore/tests/unit/viewsets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
448
448
  pulpcore/tests/unit/viewsets/test_viewset_base.py,sha256=gmVIgE9o0tAdiF92HCNiJkb1joc8oEaG5rnzh5V1loc,4837
449
- pulpcore-3.91.1.dist-info/licenses/LICENSE,sha256=dhnHU8rJXUdAIgIjveSKAyYG_KzN5eVG-bxETIGrNW0,17988
450
- pulpcore-3.91.1.dist-info/METADATA,sha256=l-w6DU1v1L24tnbBA5Tv9yfBOtQm5sxbjkdfNj6lMMs,4104
451
- pulpcore-3.91.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
452
- pulpcore-3.91.1.dist-info/entry_points.txt,sha256=OZven4wzXzQA5b5q9MpP4HUpIPPQCSvIOvkKtNInrK0,452
453
- pulpcore-3.91.1.dist-info/top_level.txt,sha256=6h-Lm3FKQSaT_nL1KSxu_hBnzKE15bcvf_BoU-ea4CI,34
454
- pulpcore-3.91.1.dist-info/RECORD,,
449
+ pulpcore-3.92.1.dist-info/licenses/LICENSE,sha256=dhnHU8rJXUdAIgIjveSKAyYG_KzN5eVG-bxETIGrNW0,17988
450
+ pulpcore-3.92.1.dist-info/METADATA,sha256=eAnxCeVZ6wOlwnNvxEGs_z1PTR0eJsm_ztrFFDHftec,4104
451
+ pulpcore-3.92.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
452
+ pulpcore-3.92.1.dist-info/entry_points.txt,sha256=OZven4wzXzQA5b5q9MpP4HUpIPPQCSvIOvkKtNInrK0,452
453
+ pulpcore-3.92.1.dist-info/top_level.txt,sha256=6h-Lm3FKQSaT_nL1KSxu_hBnzKE15bcvf_BoU-ea4CI,34
454
+ pulpcore-3.92.1.dist-info/RECORD,,