Skip to content

Commit a58c26b

Browse files
fixed documentation
1 parent fa44de7 commit a58c26b

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

SoftLayer/managers/vs.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -398,14 +398,12 @@ def _generate_create_dict(
398398
def wait_for_transaction(self, instance_id, limit, delay=10):
399399
"""Waits on a VS transaction for the specified amount of time.
400400
401-
This is really just a wrapper for wait_for_ready(pending=True).
401+
This is really just a wrapper for wait_for_ready(pending=True).
402402
Provided for backwards compatibility.
403403
404-
405404
:param int instance_id: The instance ID with the pending transaction
406405
:param int limit: The maximum amount of time to wait.
407-
:param int delay: The number of seconds to sleep before checks.
408-
Defaults to 1.
406+
:param int delay: The number of seconds to sleep before checks. Defaults to 10.
409407
"""
410408

411409
return self.wait_for_ready(instance_id, limit, delay=delay,
@@ -423,8 +421,7 @@ def wait_for_ready(self, instance_id, limit, delay=10, pending=False):
423421
424422
:param int instance_id: The instance ID with the pending transaction
425423
:param int limit: The maximum amount of time to wait.
426-
:param int delay: The number of seconds to sleep before checks.
427-
Defaults to 1.
424+
:param int delay: The number of seconds to sleep before checks. Defaults to 10.
428425
:param bool pending: Wait for pending transactions not related to
429426
provisioning or reloads such as monitoring.
430427

0 commit comments

Comments
 (0)