recurvedata-lib 0.1.490__py2.py3-none-any.whl → 0.1.491__py2.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 recurvedata-lib might be problematic. Click here for more details.
- recurvedata/__version__.py +1 -1
- recurvedata/schedulers/airflow_db_process.py +9 -6
- {recurvedata_lib-0.1.490.dist-info → recurvedata_lib-0.1.491.dist-info}/METADATA +1 -1
- {recurvedata_lib-0.1.490.dist-info → recurvedata_lib-0.1.491.dist-info}/RECORD +6 -6
- {recurvedata_lib-0.1.490.dist-info → recurvedata_lib-0.1.491.dist-info}/WHEEL +0 -0
- {recurvedata_lib-0.1.490.dist-info → recurvedata_lib-0.1.491.dist-info}/entry_points.txt +0 -0
recurvedata/__version__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.1.
|
|
1
|
+
__version__ = "0.1.491"
|
|
@@ -148,12 +148,15 @@ class AirflowDbService:
|
|
|
148
148
|
max_execution_date: datetime.datetime | None,
|
|
149
149
|
failed_only: bool,
|
|
150
150
|
):
|
|
151
|
-
|
|
152
|
-
dag_id
|
|
153
|
-
run_id
|
|
154
|
-
execution_start_date
|
|
155
|
-
execution_end_date
|
|
156
|
-
|
|
151
|
+
kwargs = {
|
|
152
|
+
"dag_id": dag.dag_id,
|
|
153
|
+
"run_id": run_id,
|
|
154
|
+
"execution_start_date": min_execution_date,
|
|
155
|
+
"execution_end_date": max_execution_date,
|
|
156
|
+
}
|
|
157
|
+
if min_execution_date or max_execution_date:
|
|
158
|
+
kwargs.pop("run_id")
|
|
159
|
+
drs: list[DagRun] = DagRun.find(**kwargs)
|
|
157
160
|
if not drs:
|
|
158
161
|
logger.info(f"skip rerun, no dag_run found for {dag.dag_id} at {run_id}")
|
|
159
162
|
return
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
recurvedata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
recurvedata/__version__.py,sha256=
|
|
2
|
+
recurvedata/__version__.py,sha256=zK7PI8pL8sGJb_fo1G1GjHdPpzyl1z9_ro5Q-ccc1S4,24
|
|
3
3
|
recurvedata/config.py,sha256=rbpccM6qr8ekdEC5p7XtsivayxmL64-Nb9ogrcWMgX8,3848
|
|
4
4
|
recurvedata/consts.py,sha256=y5BuAHBrz1jAcS5NgZxnrkfomQv3_5hvgafYwpLKpV8,1224
|
|
5
5
|
recurvedata/error_codes.py,sha256=y4OLrs0_2iLWdvQJEV10m-414uPkUdm4v0D7bE8iWOM,2303
|
|
@@ -255,7 +255,7 @@ recurvedata/providers/flywheel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
255
255
|
recurvedata/providers/mysql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
256
256
|
recurvedata/schedulers/__init__.py,sha256=euiId3-BC5JpPmXb2gSzXBycfLMCJyvjn3c5D2ZqK8U,21
|
|
257
257
|
recurvedata/schedulers/airflow.py,sha256=lX3nc-m2vrwuNuSABL560oaMR6t9G5mwhrKCExmrQDw,36198
|
|
258
|
-
recurvedata/schedulers/airflow_db_process.py,sha256=
|
|
258
|
+
recurvedata/schedulers/airflow_db_process.py,sha256=9Xm6SN6PFrrWMES5UHnsutCVNRg2Yq_BzhVjlFFAy0E,13968
|
|
259
259
|
recurvedata/schedulers/airflow_operators.py,sha256=-AfLwT9Oi8_JDCclc2XhspZ13cbTcu6ftj6yBw2-AWw,2011
|
|
260
260
|
recurvedata/schedulers/airflow_plugin.py,sha256=aUE1YxXJuMR4hL2hJ1XailBw3wA-V_ljYBVQz39MvYE,242
|
|
261
261
|
recurvedata/schedulers/airflow_trigger_dag_patch.py,sha256=bUVYRYDozgYeLcpQEmLZsNKoFbVS2PvuSwnpbIyTS0U,4300
|
|
@@ -326,7 +326,7 @@ recurvedata/utils/singleton.py,sha256=15PaK2nP9H5PyO26IZzQPpfzlW5h_Bp1NHA6QPb4H0
|
|
|
326
326
|
recurvedata/utils/sql.py,sha256=u3XRPv8_vsrMFMm-O1xyV63ZXChAFVHmJj2_xbRwcNg,264
|
|
327
327
|
recurvedata/utils/timeout.py,sha256=U5ssSgoyVRqop9P8vmyI3BJI-OnMH2k22PdzTh-JN4c,780
|
|
328
328
|
recurvedata/utils/tracing.py,sha256=gpK8q00ZjZmI81YpgQtDBPLzBvVSYpPA0sIq4wqnvBc,472
|
|
329
|
-
recurvedata_lib-0.1.
|
|
330
|
-
recurvedata_lib-0.1.
|
|
331
|
-
recurvedata_lib-0.1.
|
|
332
|
-
recurvedata_lib-0.1.
|
|
329
|
+
recurvedata_lib-0.1.491.dist-info/METADATA,sha256=kzD3uWpsIulJ8PoZ70Qyz2ESKK0vZEr8k_1yD4sUg0w,27743
|
|
330
|
+
recurvedata_lib-0.1.491.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
|
|
331
|
+
recurvedata_lib-0.1.491.dist-info/entry_points.txt,sha256=4KBBIfooz3wqXBoLlidRRP4_r36JUCnIF4BFn4igtms,209
|
|
332
|
+
recurvedata_lib-0.1.491.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|