diff options
author | Sithara Nambiar <sitharav.aredath@huawei.com> | 2020-04-20 21:39:33 +0530 |
---|---|---|
committer | Sithara Nambiar <sitharav.aredath@huawei.com> | 2020-04-21 13:53:52 +0530 |
commit | 2ac2b0c1c177dfec588b9c3439a41340d555897b (patch) | |
tree | 43be48a427e21af985979d5f4f04a0f4c99cb0cf /osdfapp.py | |
parent | a5d124e5fa47a7ff5a0717a1b2e160bb766169b7 (diff) |
Route optimization -take 2
Issue-ID: OPTFRA-420
Signed-off-by: Sithara Nambiar <sitharav.aredath@huawei.com>
Change-Id: I06624f5adee060ce220a82f2a05a17c0986ca904
Diffstat (limited to 'osdfapp.py')
-rwxr-xr-x | osdfapp.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -101,7 +101,7 @@ def do_route_calc(): """ request_json = request.get_json() audit_log.info("Calculate Route request received!") - response = RouteOpt().getRoute(request_json) + response = RouteOpt().get_route(request_json, osdf_config) return response @app.route("/api/oof/v1/selection/nst", methods=["POST"]) |