From: Martin Skorupski Date: Sun, 17 Dec 2023 12:51:57 +0000 (+0100) Subject: The output files should be compressed X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=80e6a1e7e5af82dfed202194a8c8960b4456147a;p=oam.git The output files should be compressed - update config files according to new schema Issue-ID: OAM-394 Change-Id: I596000f7cc68ef94af347ac3d7757d2d7865ef26 Signed-off-by: Martin Skorupski --- diff --git a/code/network-generator/config.json b/code/network-generator/config.json index 2e13bbc..9cc8afe 100644 --- a/code/network-generator/config.json +++ b/code/network-generator/config.json @@ -39,8 +39,17 @@ }, "outputFolder": "output", "generationTasks": { - "topology": true, - "svg": true, - "kml": true + "topology": { + "enabled": true, + "compressed": true + }, + "svg": { + "enabled": true, + "compressed": true + }, + "kml": { + "enabled": true, + "compressed": true + } } } \ No newline at end of file diff --git a/code/network-generator/test_config.json b/code/network-generator/test_config.json index fa60319..9b70e65 100644 --- a/code/network-generator/test_config.json +++ b/code/network-generator/test_config.json @@ -39,8 +39,17 @@ }, "outputFolder": "output", "generationTasks": { - "topology": true, - "svg": true, - "kml": true + "topology": { + "enabled": true, + "compressed": true + }, + "svg": { + "enabled": true, + "compressed": true + }, + "kml": { + "enabled": true, + "compressed": true + } } } \ No newline at end of file