From 09fdf4225583b041e4a4f2e2d167362fc71133a9 Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Tue, 16 Nov 2021 12:35:18 +0100 Subject: [PATCH] extend the configuration with the runway assignments --- app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app.py b/app.py index 3f94468..43daa6d 100644 --- a/app.py +++ b/app.py @@ -131,6 +131,7 @@ def configure(): if False == config.addDependency(dependency[0], dependency[1]): return Response('{}', status=404, mimetype='application/json') + airport.Configuration.assignmentUpdate(config) airport.configure(config) return Response('{}', status=200, mimetype='application/json')