Skip to content

Commit 459898d

Browse files
committed
fix: missing handler
1 parent cf9bbb6 commit 459898d

File tree

1 file changed

+5
-0
lines changed
  • functions-python/tasks_executor/src

1 file changed

+5
-0
lines changed

functions-python/tasks_executor/src/main.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
from shared.helpers.logger import init_logger
2424
from tasks.data_import.transitfeeds.sync_transitfeeds import sync_transitfeeds_handler
2525
from tasks.data_import.transportdatagouv.import_tdg_feeds import import_tdg_handler
26+
from tasks.data_import.transportdatagouv.redirect_mdb_feeds import update_tdg_redirects_handler
2627
from tasks.dataset_files.rebuild_missing_dataset_files import (
2728
rebuild_missing_dataset_files_handler,
2829
)
@@ -114,6 +115,10 @@
114115
"description": "Imports TDG data into the system.",
115116
"handler": import_tdg_handler,
116117
},
118+
"mdb_to_tdg_redirect": {
119+
"description": "Redirect duplicate MDB feeds to TDG imported feeds.",
120+
"handler": update_tdg_redirects_handler,
121+
}
117122
}
118123

119124

0 commit comments

Comments
 (0)