Skip to content

Commit

Permalink
desliga schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
pixuimpou committed Jun 20, 2024
1 parent 96667e1 commit 1f1835d
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions pipelines/rj_smtr/br_rj_riodejaneiro_recursos/flows.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
from pipelines.rj_smtr.tasks import get_current_timestamp

from pipelines.rj_smtr.flows import default_capture_flow, default_materialization_flow
from pipelines.rj_smtr.schedules import every_day

# from pipelines.rj_smtr.schedules import every_day


# CAPTURA DOS TICKETS #
Expand Down Expand Up @@ -106,9 +107,11 @@
]

table_params = task(
lambda tables, exclude: [t for t in tables if t["table_id"] not in exclude]
if exclude is not None
else tables,
lambda tables, exclude: (
[t for t in tables if t["table_id"] not in exclude]
if exclude is not None
else tables
),
checkpoint=False,
name="get_tables_to_run",
)(tables=constants.SUBSIDIO_SPPO_RECURSOS_TABLE_IDS.value, exclude=exclude)
Expand Down Expand Up @@ -197,4 +200,4 @@
)

# Schedule
subsidio_sppo_recurso.schedule = every_day
# subsidio_sppo_recurso.schedule = every_day

0 comments on commit 1f1835d

Please sign in to comment.