pulpcore 3.91.0__py3-none-any.whl → 3.92.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.

@@ -6,6 +6,6 @@ class PulpCertGuardPluginAppConfig(PulpPluginAppConfig):
6
6
 
7
7
  name = "pulp_certguard.app"
8
8
  label = "certguard"
9
- version = "3.91.0"
9
+ version = "3.92.0"
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.0"
11
+ version = "3.92.0"
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.0"
242
+ version = "3.92.0"
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
 
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",
@@ -188,13 +188,37 @@ class SingleArtifactContentUploadSerializer(
188
188
  and "pulp_labels" in kwargs["data"]
189
189
  and isinstance(kwargs["data"]["pulp_labels"], str)
190
190
  ):
191
- kwargs["data"]["pulp_labels"] = json.loads(kwargs["data"]["pulp_labels"])
191
+ try:
192
+ kwargs["data"]["pulp_labels"] = json.loads(kwargs["data"]["pulp_labels"])
193
+ except AttributeError:
194
+ # malformed uploads cause request.data._mutable=False and pulp_labels will fail
195
+ # to be modified with "AttributeError: This QueryDict instance is immutable".
196
+ pass
192
197
 
193
198
  super().__init__(*args, **kwargs)
194
199
 
195
200
  if "artifact" in self.fields:
196
201
  self.fields["artifact"].required = False
197
202
 
203
+ def validate(self, data):
204
+ """
205
+ Validate the serializer data, with special handling for pulp_labels deserialization.
206
+
207
+ This method checks if pulp_labels failed to be deserialized from JSON string to dict
208
+ during initialization (typically due to immutable QueryDict).
209
+ """
210
+ if "pulp_labels" in data and isinstance(data["pulp_labels"], str):
211
+ raise ValidationError(
212
+ _(
213
+ """
214
+ Failed to deserialize pulp_labels!
215
+ This error often occurs when file didn't upload, is incomplete, or
216
+ when pulp_labels are not in a valid JSON format.
217
+ """
218
+ )
219
+ )
220
+ return super().validate(data)
221
+
198
222
  def deferred_validate(self, data):
199
223
  """
200
224
  Validate the content unit by deeply analyzing the specified Artifact.
@@ -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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulpcore
3
- Version: 3.91.0
3
+ Version: 3.92.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
@@ -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=XcInH95cKAi4LgiSvikWrya7M1eCZvjUCbiIK6Ki4Xc,297
3
+ pulp_certguard/app/__init__.py,sha256=N2pGf6BK6zVk0-ZhaLU1hytaKftp_b-mBOlOhZOQbgg,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=_6TzVdkfTWTfkDT6YC0Wwiw7jzi5-2mdu3J2_5H776o,292
54
+ pulp_file/app/__init__.py,sha256=YZ9-_M5xW0tMhtC165z3iTgFY8gSqmEM1oM5Ah8Upd4,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=tD-bUjkkNdvXcpRQemfeVnOrqxsG-vOYCYlIWSjkepY,17981
100
+ pulpcore/app/apps.py,sha256=_o8Whb-zJbDFt93YQo0jllvuwOB5_LrQg-W_1SiphSo,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
@@ -330,10 +330,10 @@ pulpcore/plugin/download/__init__.py,sha256=XRrHVz5_QfxSixHr15b4Cni0Z-D3xiRITqiS
330
330
  pulpcore/plugin/models/__init__.py,sha256=jY0kg1KB15WdD_nzX_8Nz9Gms-HLwIdwzMTjToa7IbQ,1948
331
331
  pulpcore/plugin/models/role.py,sha256=ZwWt9eQOfjjk2rcGKuXuENoOPldTjqLI9LLXKSBXsEQ,244
332
332
  pulpcore/plugin/serializers/__init__.py,sha256=rtEQYlxILhjgmQCDDoK2V3jH5sT3tmncmacjvVzIxyo,2698
333
- pulpcore/plugin/serializers/content.py,sha256=JSSrMZstG1XkNqJ-idq-y3Xt7RxTqrBpMcpw15PHx-k,9086
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
@@ -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.0.dist-info/licenses/LICENSE,sha256=dhnHU8rJXUdAIgIjveSKAyYG_KzN5eVG-bxETIGrNW0,17988
450
- pulpcore-3.91.0.dist-info/METADATA,sha256=q7Hb_jL0w-a1aGiGf2Vey5WT6BrXh0wLl7uXORInMDU,4104
451
- pulpcore-3.91.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
452
- pulpcore-3.91.0.dist-info/entry_points.txt,sha256=OZven4wzXzQA5b5q9MpP4HUpIPPQCSvIOvkKtNInrK0,452
453
- pulpcore-3.91.0.dist-info/top_level.txt,sha256=6h-Lm3FKQSaT_nL1KSxu_hBnzKE15bcvf_BoU-ea4CI,34
454
- pulpcore-3.91.0.dist-info/RECORD,,
449
+ pulpcore-3.92.0.dist-info/licenses/LICENSE,sha256=dhnHU8rJXUdAIgIjveSKAyYG_KzN5eVG-bxETIGrNW0,17988
450
+ pulpcore-3.92.0.dist-info/METADATA,sha256=MEgFG_JvyqV8y7HdNbrRMcGxJwEq5CrITkTCSccqml0,4104
451
+ pulpcore-3.92.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
452
+ pulpcore-3.92.0.dist-info/entry_points.txt,sha256=OZven4wzXzQA5b5q9MpP4HUpIPPQCSvIOvkKtNInrK0,452
453
+ pulpcore-3.92.0.dist-info/top_level.txt,sha256=6h-Lm3FKQSaT_nL1KSxu_hBnzKE15bcvf_BoU-ea4CI,34
454
+ pulpcore-3.92.0.dist-info/RECORD,,