diff options
author | Monty Taylor <mordred@inaugust.com> | 2016-02-25 15:30:48 -0600 |
---|---|---|
committer | Monty Taylor <mordred@inaugust.com> | 2016-02-25 15:30:48 -0600 |
commit | cb8c25e3c10c00858b0460ecb021b0dbd5fc935c (patch) | |
tree | 046f255285857c4ce1b807ff377abf6581ac836e /src | |
parent | b5929b1e09215e5de52001929d67cc70ee9d4bb0 (diff) |
Fix bug in example
Diffstat (limited to 'src')
-rw-r--r-- | src/posts/simple-openstack-clients.hbs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/posts/simple-openstack-clients.hbs b/src/posts/simple-openstack-clients.hbs index d95bf6c..882a691 100644 --- a/src/posts/simple-openstack-clients.hbs +++ b/src/posts/simple-openstack-clients.hbs | |||
@@ -81,7 +81,7 @@ client = cloud_config.get_legacy_client('compute') | |||
81 | <p>Make a Session object for nova that uses env vars for auth info:</p> | 81 | <p>Make a Session object for nova that uses env vars for auth info:</p> |
82 | 82 | ||
83 | <pre><code> | 83 | <pre><code> |
84 | client = os_client_config.session_client('compute') | 84 | session = os_client_config.session_client('compute') |
85 | </code></pre> | 85 | </code></pre> |
86 | 86 | ||
87 | <p>That will get you a keystoneauth Session object that has been "mounted" on the compute service. So you can do this:</p> | 87 | <p>That will get you a keystoneauth Session object that has been "mounted" on the compute service. So you can do this:</p> |