Revision 38ea42a1 lib/cmdlib.py

b/lib/cmdlib.py
6841 6841
        raise errors.OpExecError("Error during master delay test")
6842 6842
    if self.op.on_nodes:
6843 6843
      result = self.rpc.call_test_delay(self.op.on_nodes, self.op.duration)
6844
      if not result:
6845
        raise errors.OpExecError("Complete failure from rpc call")
6846 6844
      for node, node_result in result.items():
6847
        node_result.Raise()
6848
        if not node_result.data:
6849
          raise errors.OpExecError("Failure during rpc call to node %s,"
6850
                                   " result: %s" % (node, node_result.data))
6845
        msg = node_result.RemoteFailMsg()
6846
        if msg:
6847
          raise errors.OpExecError("Failure during rpc call to node %s: %s"
6848
                                   % (node, msg))
6851 6849

  
6852 6850

  
6853 6851
class IAllocator(object):

Also available in: Unified diff