Revision a59d5fa1 lib/constants.py

b/lib/constants.py
2332 2332
# The version identifier for builtin data collectors
2333 2333
BUILTIN_DATA_COLLECTOR_VERSION = "B"
2334 2334

  
2335
# The source reasons for the change of state of an instance
2336
INSTANCE_REASON_SOURCE_CLI = "cli"
2337
INSTANCE_REASON_SOURCE_RAPI = "rapi"
2338
INSTANCE_REASON_SOURCE_UNKNOWN = "unknown"
2339

  
2340
INSTANCE_REASON_SOURCES = compat.UniqueFrozenset([
2341
  INSTANCE_REASON_SOURCE_CLI,
2342
  INSTANCE_REASON_SOURCE_RAPI,
2343
  INSTANCE_REASON_SOURCE_UNKNOWN,
2344
  ])
2345

  
2335 2346
# Do not re-export imported modules
2336 2347
del re, _vcsversion, _autoconf, socket, pathutils, compat

Also available in: Unified diff