Browse code

Turn off caching of the token by default

Change-Id: I176f4595370b37e7928a96dd89629830aeae6dae

Vishvananda Ishaya authored on 2012/08/11 07:31:19
Showing 1 changed files
... ...
@@ -41,6 +41,10 @@ export OS_USERNAME=${OS_USERNAME:-demo}
41 41
 # or NOVA_PASSWORD.
42 42
 export OS_PASSWORD=${ADMIN_PASSWORD:-secrete}
43 43
 
44
+# Don't put the key into a keyring by default. Testing for development is much
45
+# easier with this off.
46
+export OS_NO_CACHE=${OS_NO_CACHE:-1}
47
+
44 48
 # Set api HOST_IP endpoint.  SERVICE_HOST may also be used to specify the endpoint,
45 49
 # which is convenient for some localrc configurations.
46 50
 HOST_IP=${HOST_IP:-127.0.0.1}