aboutsummaryrefslogtreecommitdiff
path: root/irati_support.py
diff options
context:
space:
mode:
authorVincenzo Maffione <[email protected]>2017-02-06 21:33:04 +0100
committerVincenzo Maffione <[email protected]>2017-02-06 21:33:04 +0100
commit64782b938b12a9c0f7b7bb7a152091f62e4db3a6 (patch)
treea10243885e19213dcee3cd132990b1c96b7e755d /irati_support.py
parent896c79348ef28d907fcb571995c54c947f4b5c75 (diff)
downloadrumba-64782b938b12a9c0f7b7bb7a152091f62e4db3a6.tar.gz
rumba-64782b938b12a9c0f7b7bb7a152091f62e4db3a6.zip
rhumba: realize --> swap_in, fix double definition in IRATI class
Diffstat (limited to 'irati_support.py')
-rw-r--r--irati_support.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/irati_support.py b/irati_support.py
index 59e0c63..d5c66d2 100644
--- a/irati_support.py
+++ b/irati_support.py
@@ -27,11 +27,6 @@ class IRATIExperiment(rhumba.Experiment):
def __init__(self, testbed, nodes = list()):
rhumba.Experiment.__init__(self, testbed, nodes)
- def run(self):
- print("[IRATI experiment] start")
- self.realize()
- print("[IRATI experiment] end")
-
def setup(self):
cmds = list()
@@ -48,7 +43,7 @@ class IRATIExperiment(rhumba.Experiment):
def run(self):
print("[IRATI experiment] start")
- self.realize()
+ self.swap_in()
print("Setting up IRATI on the nodes...")
self.setup()
print("[IRATI experiment] end")