Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SMTR] [Migracao] Desliga schedule dos flows do SPPO #695

Merged
merged 1 commit into from
May 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions pipelines/rj_smtr/br_rj_riodejaneiro_onibus_gps/flows.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@
clean_br_rj_riodejaneiro_onibus_gps,
)

from pipelines.rj_smtr.schedules import (
every_hour_minute_six,
every_minute,
every_10_minutes,
)
# from pipelines.rj_smtr.schedules import (
# every_hour_minute_six,
# every_minute,
# every_10_minutes,
# )
from pipelines.utils.execute_dbt_model.tasks import run_dbt_model
from pipelines.utils.utils import skip_if_running_handler

Expand Down Expand Up @@ -135,7 +135,7 @@
image=emd_constants.DOCKER_IMAGE.value,
labels=[emd_constants.RJ_SMTR_AGENT_LABEL.value],
)
realocacao_sppo.schedule = every_10_minutes
# realocacao_sppo.schedule = every_10_minutes


with Flow(
Expand Down Expand Up @@ -317,7 +317,7 @@
image=emd_constants.DOCKER_IMAGE.value,
labels=[emd_constants.RJ_SMTR_AGENT_LABEL.value],
)
captura_sppo_v2.schedule = every_minute
# captura_sppo_v2.schedule = every_minute

with Flow(
"SMTR: GPS SPPO Realocação - Recaptura (subflow)",
Expand Down Expand Up @@ -528,4 +528,4 @@

recaptura.state_handlers.append(skip_if_running_handler)

recaptura.schedule = every_hour_minute_six
# recaptura.schedule = every_hour_minute_six
Loading