diff --git a/inventory_provider/routes/testing.py b/inventory_provider/routes/testing.py index 6b7871be2ac54ced2f7b94f48ccc7bdc2e7b525f..45fdd056b5f5dbe4f7df4ac9d947db4f4ff0caaa 100644 --- a/inventory_provider/routes/testing.py +++ b/inventory_provider/routes/testing.py @@ -25,6 +25,12 @@ def update_interfaces_to_services(): return Response('OK') +@routes.route("update-geant-lambdas", methods=['GET', 'POST']) +def update_geant_lambdas(): + worker.update_geant_lambdas.delay() + return Response('OK') + + @routes.route("update-service-hierarchy") def update_service_hierarchy(): worker.update_circuit_hierarchy.delay()