Skip to content

Commit

Permalink
Fix query path
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentAntoine committed Oct 14, 2023
1 parent 592b458 commit 594b1c9
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@

from prefect import Flow

from config import QUERIES_LOCATION
from src.pipeline.shared_tasks.etl import run_sql_script

with Flow("Remove broken missions resources links") as flow:
run_sql_script("monitorenv/remove_broken_missions_resources_links.sql")
run_sql_script(
QUERIES_LOCATION
/ "monitorenv/remove_broken_missions_resources_links.sql"
)

flow.file_name = Path(__file__).name

0 comments on commit 594b1c9

Please sign in to comment.