From 317d2721e82a8087145675c179b1e4c506f12059 Mon Sep 17 00:00:00 2001 From: Alina Quereilhac Date: Sun, 17 Jul 2011 18:48:13 +0200 Subject: [PATCH] minor bug fixing --- src/nepi/core/execute.py | 1 + src/nepi/testbeds/ns3/attributes_metadata.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/nepi/core/execute.py b/src/nepi/core/execute.py index 76d2680d..65b26948 100644 --- a/src/nepi/core/execute.py +++ b/src/nepi/core/execute.py @@ -360,6 +360,7 @@ class ExperimentController(object): self._clear_caches() # update execution xml with execution-specific values + # TODO: BUG! BUggy code! cant stand all serializing all attribute values (ej: tun_key which is non ascci)" self._update_execute_xml() self.persist_execute_xml() diff --git a/src/nepi/testbeds/ns3/attributes_metadata.py b/src/nepi/testbeds/ns3/attributes_metadata.py index 7cdb5b03..b544e7aa 100644 --- a/src/nepi/testbeds/ns3/attributes_metadata.py +++ b/src/nepi/testbeds/ns3/attributes_metadata.py @@ -2412,7 +2412,8 @@ attributes = dict({ "value": "WIFI_PHY_STANDARD_80211a", "flags": Attribute.ExecReadOnly | \ Attribute.ExecImmutable | \ - Attribute.NoDefaultValue, + Attribute.NoDefaultValue | + Attribute.Metadata, "type": Attribute.ENUM, "allowed": wifi_standards.keys(), "help": "Wifi PHY standard" -- 2.47.0