We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf9bbb6 commit 459898dCopy full SHA for 459898d
1 file changed
functions-python/tasks_executor/src/main.py
@@ -23,6 +23,7 @@
23
from shared.helpers.logger import init_logger
24
from tasks.data_import.transitfeeds.sync_transitfeeds import sync_transitfeeds_handler
25
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
27
from tasks.dataset_files.rebuild_missing_dataset_files import (
28
rebuild_missing_dataset_files_handler,
29
)
@@ -114,6 +115,10 @@
114
115
"description": "Imports TDG data into the system.",
116
"handler": import_tdg_handler,
117
},
118
+ "mdb_to_tdg_redirect": {
119
+ "description": "Redirect duplicate MDB feeds to TDG imported feeds.",
120
+ "handler": update_tdg_redirects_handler,
121
+ }
122
}
123
124
0 commit comments