Skip to content
Snippets Groups Projects
Commit 8b44c34f authored by Robert Latta's avatar Robert Latta
Browse files

added testing route for updating Lambdas

parent e95824af
No related branches found
No related tags found
No related merge requests found
...@@ -25,6 +25,12 @@ def update_interfaces_to_services(): ...@@ -25,6 +25,12 @@ def update_interfaces_to_services():
return Response('OK') 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") @routes.route("update-service-hierarchy")
def update_service_hierarchy(): def update_service_hierarchy():
worker.update_circuit_hierarchy.delay() worker.update_circuit_hierarchy.delay()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment