Storwize has the limitation that can not burst more than
3 new ssh connection within 1 second.So slow down storwize
driver initialization.
Closes-Bug: #
1335722
Change-Id: Id442cd6421ef23b953a3cb45a5f6dd6969064a6e
"""
import math
+import time
+
from oslo.config import cfg
from cinder import context
'system_id': None,
'code_level': None,
}
+ # Storwize has the limitation that can not burst more than 3 new ssh
+ # connections within 1 second. So slow down the initialization.
+ time.sleep(1)
def do_setup(self, ctxt):
"""Check that we have all configuration details from the storage."""