X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=emuvim%2Fapi%2Fzerorpcapi.py;h=be44444ee57a993b67c4dbee633454defbc49c2b;hb=7973f056b636b5eaef7d0d5b330bccecddda8588;hp=8a0813165658a0511a18bb3932db9756be736523;hpb=fa4bcc77c95dc01bfd98f664fafe433d255cfa33;p=osm%2Fvim-emu.git diff --git a/emuvim/api/zerorpcapi.py b/emuvim/api/zerorpcapi.py index 8a08131..be44444 100644 --- a/emuvim/api/zerorpcapi.py +++ b/emuvim/api/zerorpcapi.py @@ -56,11 +56,11 @@ class MultiDatacenterApi(object): def __init__(self, dcs): self.dcs = dcs - def compute_action_start(self, dc_name, compute_name): + def compute_action_start(self, dc_name, compute_name, image): # TODO what to return UUID / given name / internal name ? logging.debug("RPC CALL: compute start") try: - c = self.dcs.get(dc_name).startCompute(compute_name) + c = self.dcs.get(dc_name).startCompute(compute_name, image=image) return str(c.name) except Exception as ex: logging.exception("RPC error.")