Revision ec79568d lib/opcodes.py

b/lib/opcodes.py
319 319
class OpQueryNodes(OpCode):
320 320
  """Compute the list of nodes."""
321 321
  OP_ID = "OP_NODE_QUERY"
322
  __slots__ = ["output_fields", "names"]
322
  __slots__ = ["output_fields", "names", "use_locking"]
323 323

  
324 324

  
325 325
class OpQueryNodeVolumes(OpCode):
......
450 450
class OpQueryInstances(OpCode):
451 451
  """Compute the list of instances."""
452 452
  OP_ID = "OP_INSTANCE_QUERY"
453
  __slots__ = ["output_fields", "names"]
453
  __slots__ = ["output_fields", "names", "use_locking"]
454 454

  
455 455

  
456 456
class OpQueryInstanceData(OpCode):
......
488 488
class OpQueryExports(OpCode):
489 489
  """Compute the list of exported images."""
490 490
  OP_ID = "OP_BACKUP_QUERY"
491
  __slots__ = ["nodes"]
491
  __slots__ = ["nodes", "use_locking"]
492 492

  
493 493

  
494 494
class OpExportInstance(OpCode):

Also available in: Unified diff