Fixed error in add_model example.
authorPete Vander Giessen <petevg@gmail.com>
Fri, 27 Jan 2017 22:47:14 +0000 (17:47 -0500)
committerPete Vander Giessen <petevg@gmail.com>
Fri, 27 Jan 2017 22:47:14 +0000 (17:47 -0500)
We weren't actually awaiting the 'juju ssh' test, and had a mistake in
the command, to boot.

examples/add_model.py

index 323b6ec..efa325b 100644 (file)
@@ -21,7 +21,8 @@ async def main():
     await controller.connect_current()
 
     try:
-        model = await controller.add_model("quux")
+        model_name = "quux"
+        model = await controller.add_model(model_name)
 
         print('Deploying ubuntu')
         application = await model.deploy(
@@ -38,7 +39,8 @@ async def main():
                         for unit in application.units))
 
         print("Verifying that we can ssh into the created model")
-        ret = utils.execute_process('juju', 'ssh', 'ls /', log=LOG)
+        ret = await utils.execute_process(
+            'juju', 'ssh', '-m', model_name, 'ubuntu/0', 'ls /', log=LOG)
         assert ret
 
         print('Removing ubuntu')