Comment 18 for bug 855030

Revision history for this message
David Kranz (david-kranz) wrote :

I tested again using the devstack install to create two nodes (after verifying that the fix for bug 838581 is in session.py) and still see the problem, but less frequently. It is not quite the same because this is running from source rather than packages, and using 'nova boot' instead of euca-run-instances. I don't know how to get euca-run-instances to work when using keystone to manage users. 'nova boot' doesn't seem to allow multiple instances to be created in one call but I changed the min_count default in the source to 8 for this test.

diff --git a/novaclient/v1_1/shell.py b/novaclient/v1_1/shell.py
index 6b83292..21ee0c9 100644
--- a/novaclient/v1_1/shell.py
+++ b/novaclient/v1_1/shell.py
@@ -33,7 +33,7 @@ AUTO_KEY = object()
 def _boot(cs, args, reservation_id=None, min_count=None, max_count=None):
     """Boot a new server."""
     if min_count is None:
- min_count = 1
+ min_count = 8
     if max_count is None:
         max_count = min_count
     if min_count > max_count:

This bug really needs to be reopened but I am not sure how to do that.