X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=src%2Fnepi%2Futil%2Fproxy.py;h=04f3655a101a629e895fc7442aa16b7dc2683e1b;hb=1cf85539204432589217de408cd2eb37e3d68e6a;hp=9545a5ca20ee034853e1db98dfd7b61b531a3cb4;hpb=6adcdc48be0c061d3a0ae91344f22d3d053f03b5;p=nepi.git diff --git a/src/nepi/util/proxy.py b/src/nepi/util/proxy.py index 9545a5ca..04f3655a 100644 --- a/src/nepi/util/proxy.py +++ b/src/nepi/util/proxy.py @@ -761,8 +761,10 @@ class TestbedControllerServer(BaseServer): @Marshalling.handles(ADD_ROUTE) @Marshalling.args(int, str, int, str, int) @Marshalling.retvoid - def defer_add_route(self, guid, destination, netprefix, nexthop, metric): - self._testbed.defer_add_route(guid, destination, netprefix, nexthop, metric) + def defer_add_route(self, guid, destination, netprefix, nexthop, + metric, device): + self._testbed.defer_add_route(guid, destination, netprefix, nexthop, + metric, device) @Marshalling.handles(DO_SETUP) @Marshalling.args()