Package ganeti :: Module opcodes :: Class OpTestDelay
[hide private]
[frames] | no frames]

Class OpTestDelay

source code


Sleeps for a configured amount of time.

This is used just for debugging and testing.

Parameters:

If the on_master parameter is true, it will execute a sleep on the master (before any node sleep).

If the on_nodes list is not empty, it will sleep on those nodes (after the sleep on the master, if that is enabled).

As an additional feature, the case of duration < 0 will be reported as an execution error, so this opcode can be used as a failure generator. The case of duration == 0 will not be treated specially.

Nested Classes [hide private]

Inherited from opcodes_base.BaseOpCode: __metaclass__

Instance Methods [hide private]
 
OP_RESULT(val)
Callable to verify opcode result
source code

Inherited from OpCode: Summary, TinySummary, __getstate__

Inherited from opcodes_base.BaseOpCode: Validate, __init__, __setstate__

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Methods [hide private]

Inherited from OpCode: LoadOpCode

Inherited from opcodes_base.BaseOpCode: GetAllParams

Inherited from outils.ValidatedSlots: GetAllSlots

Class Variables [hide private]
  OP_DSC_FIELD = "duration"
The name of a field whose value will be included in the string returned by Summary(); see the docstring of that method for details).
  OP_PARAMS = [("duration", None, ht.TDouble, "Duration paramete...
List of opcode attributes, the default values they should get if not already defined, and types they must match.

Inherited from OpCode: OP_DSC_FORMATTER, OP_ID, WITH_LU

Instance Variables [hide private]

Inherited from OpCode: dry_run, priority

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

OP_RESULT(val)

source code 
Callable to verify opcode result
Decorators:
  • @WithDesc("None")
Overrides: OP_RESULT

Class Variable Details [hide private]

OP_PARAMS

List of opcode attributes, the default values they should get if not already defined, and types they must match.
Value:
[("duration", None, ht.TDouble, "Duration parameter for 'OpTestDelay'"\
), ("on_master", True, ht.TBool, "on_master field for 'OpTestDelay'"),\
 ("on_nodes", [], ht.TListOf(ht.TNonEmptyString), "on_nodes field for \
'OpTestDelay'"), ("on_node_uuids", None, ht.TMaybe(ht.TListOf(ht.TNonE\
mptyString)), "on_node_uuids field for 'OpTestDelay'"), ("repeat", 0, \
ht.TNonNegative(ht.TInt), "Repeat parameter for OpTestDelay"), ("inter\
ruptible", False, ht.TBool, "Allows socket-based interruption of a run\
ning OpTestDelay"), ("no_locks", True, ht.TBool, "Don't take locks dur\
...