From afe0fe627fd1609c284386a6b8a27279d8d0a42f Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Mon, 13 Feb 2017 11:11:22 +0100 Subject: emulab: Fix complete experiment graph During a previous refactor emulab support got broken, this fixes it. --- rumba/testbeds/emulab.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rumba/testbeds/emulab.py') diff --git a/rumba/testbeds/emulab.py b/rumba/testbeds/emulab.py index 735bf3a..b7c0c51 100644 --- a/rumba/testbeds/emulab.py +++ b/rumba/testbeds/emulab.py @@ -200,7 +200,7 @@ class EmulabTestbed(Testbed): @param links: holds the links in the experiment ''' - node_full_name = full_name(self, nodes[0].name) + node_full_name = self.full_name(nodes[0].name) cmd = 'cat /var/emulab/boot/topomap' topomap = ssh.execute_command(self, node_full_name, cmd) # Almost as ugly as yo momma @@ -223,7 +223,7 @@ class EmulabTestbed(Testbed): for node in nodes: cmd = 'cat /var/emulab/boot/ifmap' - node_full_name = full_name(self, node.name) + node_full_name = self.full_name(node.name) output = ssh.execute_command(self, node_full_name, cmd) output = re.split('\\\\n', output) for item in output: @@ -241,4 +241,4 @@ class EmulabTestbed(Testbed): self._create_experiment(nodes, links) self.swap_exp_in() self.wait_until_nodes_up() - es.complete_experiment_graph(nodes, links) + self.complete_experiment_graph(nodes, links) -- cgit v1.2.3