p1-taskqueue 0.1.7__py3-none-any.whl → 0.1.8__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 p1-taskqueue might be problematic. Click here for more details.
- {p1_taskqueue-0.1.7.dist-info → p1_taskqueue-0.1.8.dist-info}/METADATA +1 -1
- {p1_taskqueue-0.1.7.dist-info → p1_taskqueue-0.1.8.dist-info}/RECORD +5 -5
- taskqueue/libs/helper_test.py +9 -4
- {p1_taskqueue-0.1.7.dist-info → p1_taskqueue-0.1.8.dist-info}/WHEEL +0 -0
- {p1_taskqueue-0.1.7.dist-info → p1_taskqueue-0.1.8.dist-info}/top_level.txt +0 -0
|
@@ -2,8 +2,8 @@ taskqueue/__init__.py,sha256=nNHXIyysNLom9f8of-d__pWJ-YF53Mbrbsb1frPzPPI,298
|
|
|
2
2
|
taskqueue/celery_app.py,sha256=dUT-7XzsSQbr8vKrLv7f_6iYxTCUEJZHEt9fL-KIQ5U,3302
|
|
3
3
|
taskqueue/cmanager.py,sha256=raQwdccYTpWRiW8UGU5OcUEN0jZr9TTlIEnhZGtamiI,12274
|
|
4
4
|
taskqueue/libs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
taskqueue/libs/helper_test.py,sha256=
|
|
6
|
-
p1_taskqueue-0.1.
|
|
7
|
-
p1_taskqueue-0.1.
|
|
8
|
-
p1_taskqueue-0.1.
|
|
9
|
-
p1_taskqueue-0.1.
|
|
5
|
+
taskqueue/libs/helper_test.py,sha256=aZSeW5BK6j3NH7OaD8hRIPI7yaZi9hEvlJy6H_u6g5I,3991
|
|
6
|
+
p1_taskqueue-0.1.8.dist-info/METADATA,sha256=-RuB08xZgH4fsf10073v3nbkj4gNwB3e6-gRB_rtNjc,1508
|
|
7
|
+
p1_taskqueue-0.1.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
8
|
+
p1_taskqueue-0.1.8.dist-info/top_level.txt,sha256=hA3SM1ik2K8iPqtlt_-_nJ4TAePwHPN3vsOc4EiynqU,10
|
|
9
|
+
p1_taskqueue-0.1.8.dist-info/RECORD,,
|
taskqueue/libs/helper_test.py
CHANGED
|
@@ -58,10 +58,15 @@ def celery_worker_burst(include_func_names: List[str], channel: str = "default")
|
|
|
58
58
|
decoded_body) > 1 else {}
|
|
59
59
|
|
|
60
60
|
full_func_name = ""
|
|
61
|
-
if task_name.endswith("dynamic_function_executor")
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
full_func_name = f"{
|
|
61
|
+
if task_name.endswith("dynamic_function_executor"):
|
|
62
|
+
module_path = task_kwargs.get('module_path', '')
|
|
63
|
+
function_name = task_kwargs.get('function_name', '')
|
|
64
|
+
full_func_name = f"{module_path}.{function_name}"
|
|
65
|
+
elif task_name.endswith("dynamic_class_method_executor"):
|
|
66
|
+
module_path = task_kwargs.get('module_path', '')
|
|
67
|
+
class_name = task_kwargs.get('class_name', '')
|
|
68
|
+
method_name = task_kwargs.get('method_name', '')
|
|
69
|
+
full_func_name = f"{module_path}.{class_name}.{method_name}"
|
|
65
70
|
|
|
66
71
|
should_execute = full_func_name in included_set if full_func_name else False
|
|
67
72
|
|
|
File without changes
|
|
File without changes
|