Revision 518a45e5 lib/errors.py

b/lib/errors.py
30 30
#: Not enough resources (iallocator failure, disk space, memory, etc.)
31 31
ECODE_NORES = "insufficient_resources"
32 32

  
33
#: Temporarily out of resources; operation can be tried again
34
ECODE_TEMP_NORES = "insufficient_resources"
35

  
33 36
#: Wrong arguments (at syntax level)
34 37
ECODE_INVAL = "wrong_input"
35 38

  
......
55 58
ECODE_ALL = frozenset([
56 59
  ECODE_RESOLVER,
57 60
  ECODE_NORES,
61
  ECODE_TEMP_NORES,
58 62
  ECODE_INVAL,
59 63
  ECODE_STATE,
60 64
  ECODE_NOENT,

Also available in: Unified diff