Advertisement
Guest User

Untitled

a guest
Dec 16th, 2015
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 49.95 KB | None | 0 0
  1. First I have watcher up to date:
  2.  
  3. [root@watcher1.beta-zone9012.cloud.ovh.net ~/watcher] git log HEAD^!
  4. commit d3160bf0076f0e42c34e0e6d4b71f8947471137e
  5. Merge: 37cd75f f0b58f8
  6. Author: Jenkins <jenkins@review.openstack.org>
  7. Date: Wed Dec 16 10:41:32 2015 +0000
  8.  
  9. Merge "Removed duplicated function prepare_service()"
  10.  
  11. Then installing it:
  12.  
  13. [root@watcher1.beta-zone9012.cloud.ovh.net ~/watcher] python setup.py install
  14. running install
  15. [pbr] Writing ChangeLog
  16. [pbr] Generating ChangeLog
  17. [pbr] ChangeLog complete (0.0s)
  18. [pbr] Generating AUTHORS
  19. [pbr] AUTHORS complete (0.0s)
  20. running build
  21. running build_py
  22. running egg_info
  23. writing pbr to python_watcher.egg-info/pbr.json
  24. writing requirements to python_watcher.egg-info/requires.txt
  25. writing python_watcher.egg-info/PKG-INFO
  26. writing top-level names to python_watcher.egg-info/top_level.txt
  27. writing dependency_links to python_watcher.egg-info/dependency_links.txt
  28. writing entry points to python_watcher.egg-info/entry_points.txt
  29. [pbr] Processing SOURCES.txt
  30. [pbr] In git context, generating filelist from git
  31. warning: no previously-included files matching '*.pyc' found anywhere in distribution
  32. reading manifest template 'MANIFEST.in'
  33. warning: no previously-included files found matching '.gitignore'
  34. warning: no previously-included files found matching '.gitreview'
  35. warning: no previously-included files matching '*.pyc' found anywhere in distribution
  36. writing manifest file 'python_watcher.egg-info/SOURCES.txt'
  37. running install_lib
  38. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/common/iot.py to iot.pyc
  39. Sorry: IndentationError: unindent does not match any outer indentation level (iot.py, line 92)
  40. running install_data
  41. running install_egg_info
  42. removing '/usr/local/lib/python2.7/dist-packages/python_watcher-0.21.1.dev52.egg-info' (and everything under it)
  43. Copying python_watcher.egg-info to /usr/local/lib/python2.7/dist-packages/python_watcher-0.21.1.dev52.egg-info
  44. running install_scripts
  45. Installing watcher-db-manage script to /usr/local/bin
  46. Installing watcher-decision-engine script to /usr/local/bin
  47. Installing watcher-api script to /usr/local/bin
  48. Installing watcher-applier script to /usr/local/bin
  49.  
  50. and try to run:
  51. [root@watcher1.beta-zone9012.cloud.ovh.net ~/watcher] watcher-api --config-file /etc/watcher/watcher.conf --config-file /etc/watcher/logging.conf
  52. /usr/local/lib/python2.7/dist-packages/pecan/__init__.py:122: RuntimeWarning: `static_root` is only used when `debug` is True, ignoring
  53. RuntimeWarning
  54. 2015-12-16 15:08:59.437 751 INFO keystonemiddleware.auth_token [-] Starting Keystone auth_token middleware
  55. 2015-12-16 15:08:59.438 751 WARNING keystonemiddleware.auth_token [-] Use of the auth_admin_prefix, auth_host, auth_port, auth_protocol, identity_uri, admin_token, admin_user, admin_password, and admin_tenant_name configuration options is deprecated in favor of auth_plugin and related options and may be removed in a future release.
  56. 2015-12-16 15:08:59.438 751 WARNING keystonemiddleware.auth_token [-] Configuring admin URI using auth fragments. This is deprecated, use 'identity_uri' instead.
  57. 2015-12-16 15:08:59.439 751 WARNING keystonemiddleware.auth_token [-] Configuring auth_uri to point to the public identity endpoint is required; clients may not be able to authenticate against an admin endpoint
  58. 2015-12-16 15:08:59.440 751 INFO keystonemiddleware.auth_token [-] Using /tmp/keystone-signing-7pi4AN as cache directory for signing certificate
  59. 2015-12-16 15:08:59.441 751 INFO watcher.cmd.api [-] Starting server in PID 751
  60. 2015-12-16 15:08:59.443 751 INFO watcher.cmd.api [-] serving on 0.0.0.0:9322, view at http://127.0.0.1:9322
  61.  
  62. It loads default configs (not from file)
  63.  
  64. --------------------------------------------------------------------------
  65. So now I change to older commit:
  66. [root@watcher1.beta-zone9012.cloud.ovh.net ~/watcher] git reset --hard 4c2d0e63458194f4470a7c266211c3664088f263
  67. HEAD is now at 4c2d0e6 Cleanup deprecated documentation
  68.  
  69. and install this version with:
  70. [root@watcher1.beta-zone9012.cloud.ovh.net ~/watcher] python setup.py install
  71. running install
  72. [pbr] Writing ChangeLog
  73. [pbr] Generating ChangeLog
  74. [pbr] ChangeLog complete (0.0s)
  75. [pbr] Generating AUTHORS
  76. [pbr] AUTHORS complete (0.0s)
  77. running build
  78. running build_py
  79. copying watcher/applier/default.py -> build/lib.linux-x86_64-2.7/watcher/applier
  80. copying watcher/applier/base.py -> build/lib.linux-x86_64-2.7/watcher/applier
  81. copying watcher/tests/decision_engine/command/test_trigger_audit_command.py -> build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/command
  82. copying watcher/tests/decision_engine/command/test_event_consumer_factory.py -> build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/command
  83. copying watcher/db/sqlalchemy/api.py -> build/lib.linux-x86_64-2.7/watcher/db/sqlalchemy
  84. copying watcher/decision_engine/meta_action/power_state.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/meta_action
  85. copying watcher/decision_engine/meta_action/base.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/meta_action
  86. copying watcher/decision_engine/meta_action/hypervisor_state.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/meta_action
  87. copying watcher/decision_engine/meta_action/nop.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/meta_action
  88. copying watcher/decision_engine/meta_action/migrate.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/meta_action
  89. copying watcher/decision_engine/meta_action/__init__.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/meta_action
  90. copying watcher/applier/execution/executor.py -> build/lib.linux-x86_64-2.7/watcher/applier/execution
  91. copying watcher/applier/execution/deploy_phase.py -> build/lib.linux-x86_64-2.7/watcher/applier/execution
  92. copying watcher/service.py -> build/lib.linux-x86_64-2.7/watcher
  93. copying watcher/i18n.py -> build/lib.linux-x86_64-2.7/watcher
  94. copying watcher/opts.py -> build/lib.linux-x86_64-2.7/watcher
  95. copying watcher/tests/decision_engine/messaging/test_audit_endpoint.py -> build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/messaging
  96. copying watcher/decision_engine/strategy/base.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy
  97. copying watcher/decision_engine/strategy/dummy_strategy.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy
  98. copying watcher/decision_engine/strategy/level.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy
  99. copying watcher/decision_engine/strategy/state.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy
  100. copying watcher/decision_engine/strategy/loader.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy
  101. copying watcher/decision_engine/strategy/basic_consolidation.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy
  102. copying watcher/tests/decision_engine/meta_actions/test_migrate.py -> build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/meta_actions
  103. copying watcher/tests/decision_engine/meta_actions/__init__.py -> build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/meta_actions
  104. copying watcher/tests/decision_engine/faker_cluster_state.py -> build/lib.linux-x86_64-2.7/watcher/tests/decision_engine
  105. copying watcher/tests/decision_engine/test_meta_action.py -> build/lib.linux-x86_64-2.7/watcher/tests/decision_engine
  106. copying watcher/tests/decision_engine/test_strategy_loader.py -> build/lib.linux-x86_64-2.7/watcher/tests/decision_engine
  107. copying watcher/tests/decision_engine/test_default_solution.py -> build/lib.linux-x86_64-2.7/watcher/tests/decision_engine
  108. copying watcher/tests/decision_engine/faker_metrics_collector.py -> build/lib.linux-x86_64-2.7/watcher/tests/decision_engine
  109. copying watcher/tests/decision_engine/test_dummy_strategy.py -> build/lib.linux-x86_64-2.7/watcher/tests/decision_engine
  110. copying watcher/tests/decision_engine/test_default_planner.py -> build/lib.linux-x86_64-2.7/watcher/tests/decision_engine
  111. copying watcher/tests/decision_engine/test_basic_consolidation.py -> build/lib.linux-x86_64-2.7/watcher/tests/decision_engine
  112. copying watcher/decision_engine/strategy/selector/default.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy/selector
  113. copying watcher/decision_engine/strategy/selector/base.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy/selector
  114. copying watcher/decision_engine/strategy/selector/__init__.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy/selector
  115. copying watcher/cmd/applier.py -> build/lib.linux-x86_64-2.7/watcher/cmd
  116. copying watcher/cmd/decisionengine.py -> build/lib.linux-x86_64-2.7/watcher/cmd
  117. copying watcher/cmd/api.py -> build/lib.linux-x86_64-2.7/watcher/cmd
  118. copying watcher/api/middleware/parsable_error.py -> build/lib.linux-x86_64-2.7/watcher/api/middleware
  119. copying watcher/api/middleware/auth_token.py -> build/lib.linux-x86_64-2.7/watcher/api/middleware
  120. copying watcher/applier/primitive/power_state.py -> build/lib.linux-x86_64-2.7/watcher/applier/primitive
  121. copying watcher/applier/primitive/base.py -> build/lib.linux-x86_64-2.7/watcher/applier/primitive
  122. copying watcher/applier/primitive/hypervisor_state.py -> build/lib.linux-x86_64-2.7/watcher/applier/primitive
  123. copying watcher/applier/primitive/migration.py -> build/lib.linux-x86_64-2.7/watcher/applier/primitive
  124. copying watcher/applier/primitive/nop.py -> build/lib.linux-x86_64-2.7/watcher/applier/primitive
  125. copying watcher/applier/primitive/__init__.py -> build/lib.linux-x86_64-2.7/watcher/applier/primitive
  126. copying watcher/decision_engine/messaging/command/base.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/messaging/command
  127. copying watcher/decision_engine/messaging/event_consumer.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/messaging
  128. copying watcher/tests/cmd/test_api.py -> build/lib.linux-x86_64-2.7/watcher/tests/cmd
  129. copying watcher/tests/cmd/test_db_manage.py -> build/lib.linux-x86_64-2.7/watcher/tests/cmd
  130. copying watcher/db/api.py -> build/lib.linux-x86_64-2.7/watcher/db
  131. copying watcher/tests/decision_engine/strategy/selector/test_strategy_selector.py -> build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/strategy/selector
  132. copying watcher/tests/applier/messaging/test_launch_action_plan_command.py -> build/lib.linux-x86_64-2.7/watcher/tests/applier/messaging
  133. copying watcher/decision_engine/planner/default.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/planner
  134. copying watcher/decision_engine/planner/base.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/planner
  135. copying watcher/api/app.py -> build/lib.linux-x86_64-2.7/watcher/api
  136. copying watcher/applier/mapper/default.py -> build/lib.linux-x86_64-2.7/watcher/applier/mapper
  137. copying watcher/applier/mapper/base.py -> build/lib.linux-x86_64-2.7/watcher/applier/mapper
  138. copying watcher/applier/mapper/__init__.py -> build/lib.linux-x86_64-2.7/watcher/applier/mapper
  139. copying watcher/tests/decision_engine/strategy/test_strategy_loader.py -> build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/strategy
  140. copying watcher/tests/base.py -> build/lib.linux-x86_64-2.7/watcher/tests
  141. copying watcher/metrics_engine/cluster_model_collector/manager.py -> build/lib.linux-x86_64-2.7/watcher/metrics_engine/cluster_model_collector
  142. copying watcher/metrics_engine/cluster_model_collector/api.py -> build/lib.linux-x86_64-2.7/watcher/metrics_engine/cluster_model_collector
  143. copying watcher/tests/applier/primitive/wrapper/test_nova_wrapper.py -> build/lib.linux-x86_64-2.7/watcher/tests/applier/primitive/wrapper
  144. copying watcher/tests/applier/primitive/wrapper/__init__.py -> build/lib.linux-x86_64-2.7/watcher/tests/applier/primitive/wrapper
  145. copying watcher/decision_engine/solution/default.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/solution
  146. copying watcher/decision_engine/solution/base.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/solution
  147. copying watcher/decision_engine/solution/solution_evaluator.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/solution
  148. copying watcher/decision_engine/solution/solution_comparator.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/solution
  149. copying watcher/decision_engine/model/mapping.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/model
  150. copying watcher/tests/decision_engine/model/test_model.py -> build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/model
  151. copying watcher/tests/decision_engine/model/test_mapping.py -> build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/model
  152. copying watcher/applier/primitive/wrapper/nova_wrapper.py -> build/lib.linux-x86_64-2.7/watcher/applier/primitive/wrapper
  153. copying watcher/applier/primitive/wrapper/__init__.py -> build/lib.linux-x86_64-2.7/watcher/applier/primitive/wrapper
  154. copying watcher/tests/common/ceilometer.py -> build/lib.linux-x86_64-2.7/watcher/tests/common
  155. copying watcher/tests/common/keystone.py -> build/lib.linux-x86_64-2.7/watcher/tests/common
  156. copying watcher/decision_engine/strategy/context/default.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy/context
  157. copying watcher/decision_engine/strategy/context/base.py -> build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy/context
  158. copying watcher/applier/messaging/applier_command.py -> build/lib.linux-x86_64-2.7/watcher/applier/messaging
  159. copying watcher/applier/messaging/launcher.py -> build/lib.linux-x86_64-2.7/watcher/applier/messaging
  160. copying watcher/applier/messaging/trigger.py -> build/lib.linux-x86_64-2.7/watcher/applier/messaging
  161. copying watcher/api/controllers/v1/utils.py -> build/lib.linux-x86_64-2.7/watcher/api/controllers/v1
  162. copying watcher/api/controllers/v1/action.py -> build/lib.linux-x86_64-2.7/watcher/api/controllers/v1
  163. copying watcher/api/controllers/v1/types.py -> build/lib.linux-x86_64-2.7/watcher/api/controllers/v1
  164. copying watcher/common/utils.py -> build/lib.linux-x86_64-2.7/watcher/common
  165. copying watcher/common/ceilometer.py -> build/lib.linux-x86_64-2.7/watcher/common
  166. copying watcher/common/keystone.py -> build/lib.linux-x86_64-2.7/watcher/common
  167. copying watcher/common/service.py -> build/lib.linux-x86_64-2.7/watcher/common
  168. copying watcher/common/i18n.py -> build/lib.linux-x86_64-2.7/watcher/common
  169. copying watcher/common/exception.py -> build/lib.linux-x86_64-2.7/watcher/common
  170. copying watcher/metrics_engine/cluster_history/api.py -> build/lib.linux-x86_64-2.7/watcher/metrics_engine/cluster_history
  171. copying watcher/tests/applier/primitive/__init__.py -> build/lib.linux-x86_64-2.7/watcher/tests/applier/primitive
  172. copying watcher/tests/objects/test_objects.py -> build/lib.linux-x86_64-2.7/watcher/tests/objects
  173. copying watcher/objects/utils.py -> build/lib.linux-x86_64-2.7/watcher/objects
  174. copying watcher/objects/audit_template.py -> build/lib.linux-x86_64-2.7/watcher/objects
  175. copying watcher/objects/base.py -> build/lib.linux-x86_64-2.7/watcher/objects
  176. copying watcher/tests/applier/execution/test_command_executor.py -> build/lib.linux-x86_64-2.7/watcher/tests/applier/execution
  177. copying watcher/tests/api/v1/test_types.py -> build/lib.linux-x86_64-2.7/watcher/tests/api/v1
  178. copying watcher/tests/api/v1/test_actions_plans.py -> build/lib.linux-x86_64-2.7/watcher/tests/api/v1
  179. copying watcher/tests/api/v1/test_actions.py -> build/lib.linux-x86_64-2.7/watcher/tests/api/v1
  180. copying watcher/tests/api/v1/test_audit_templates.py -> build/lib.linux-x86_64-2.7/watcher/tests/api/v1
  181. copying watcher/tests/api/v1/test_goals.py -> build/lib.linux-x86_64-2.7/watcher/tests/api/v1
  182. copying watcher/tests/api/v1/test_audits.py -> build/lib.linux-x86_64-2.7/watcher/tests/api/v1
  183. copying watcher/tests/api/utils.py -> build/lib.linux-x86_64-2.7/watcher/tests/api
  184. copying watcher/tests/api/test_hooks.py -> build/lib.linux-x86_64-2.7/watcher/tests/api
  185. copying watcher/tests/applier/mapper/test_command_mapper.py -> build/lib.linux-x86_64-2.7/watcher/tests/applier/mapper
  186. copying watcher/tests/applier/mapper/__init__.py -> build/lib.linux-x86_64-2.7/watcher/tests/applier/mapper
  187. running egg_info
  188. writing pbr to python_watcher.egg-info/pbr.json
  189. writing requirements to python_watcher.egg-info/requires.txt
  190. writing python_watcher.egg-info/PKG-INFO
  191. writing top-level names to python_watcher.egg-info/top_level.txt
  192. writing dependency_links to python_watcher.egg-info/dependency_links.txt
  193. writing entry points to python_watcher.egg-info/entry_points.txt
  194. [pbr] Processing SOURCES.txt
  195. [pbr] In git context, generating filelist from git
  196. warning: no previously-included files matching '*.pyc' found anywhere in distribution
  197. reading manifest template 'MANIFEST.in'
  198. warning: no previously-included files found matching '.gitignore'
  199. warning: no previously-included files found matching '.gitreview'
  200. warning: no previously-included files matching '*.pyc' found anywhere in distribution
  201. writing manifest file 'python_watcher.egg-info/SOURCES.txt'
  202. copying watcher/db/sqlalchemy/alembic/versions/414bf1d36e7d_initial_revision.py -> build/lib.linux-x86_64-2.7/watcher/db/sqlalchemy/alembic/versions
  203. copying watcher/contrib/tempest/tempest/api/infra_optim/README.rst -> build/lib.linux-x86_64-2.7/watcher/contrib/tempest/tempest/api/infra_optim
  204. copying watcher/contrib/tempest/tempest/api/infra_optim/admin/base.py -> build/lib.linux-x86_64-2.7/watcher/contrib/tempest/tempest/api/infra_optim/admin
  205. copying watcher/contrib/tempest/tempest/api/infra_optim/admin/test_audit_template.py -> build/lib.linux-x86_64-2.7/watcher/contrib/tempest/tempest/api/infra_optim/admin
  206. copying watcher/contrib/tempest/tempest/cli/README.rst -> build/lib.linux-x86_64-2.7/watcher/contrib/tempest/tempest/cli
  207. copying watcher/contrib/tempest/tempest/services/infra_optim/base.py -> build/lib.linux-x86_64-2.7/watcher/contrib/tempest/tempest/services/infra_optim
  208. copying watcher/contrib/tempest/tempest/services/infra_optim/v1/json/infra_optim_client.py -> build/lib.linux-x86_64-2.7/watcher/contrib/tempest/tempest/services/infra_optim/v1/json
  209. running install_lib
  210. copying build/lib.linux-x86_64-2.7/watcher/api/middleware/parsable_error.py -> /usr/local/lib/python2.7/dist-packages/watcher/api/middleware
  211. copying build/lib.linux-x86_64-2.7/watcher/api/middleware/auth_token.py -> /usr/local/lib/python2.7/dist-packages/watcher/api/middleware
  212. copying build/lib.linux-x86_64-2.7/watcher/api/app.py -> /usr/local/lib/python2.7/dist-packages/watcher/api
  213. copying build/lib.linux-x86_64-2.7/watcher/api/controllers/v1/utils.py -> /usr/local/lib/python2.7/dist-packages/watcher/api/controllers/v1
  214. copying build/lib.linux-x86_64-2.7/watcher/api/controllers/v1/action.py -> /usr/local/lib/python2.7/dist-packages/watcher/api/controllers/v1
  215. copying build/lib.linux-x86_64-2.7/watcher/api/controllers/v1/types.py -> /usr/local/lib/python2.7/dist-packages/watcher/api/controllers/v1
  216. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/meta_action/power_state.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/meta_action
  217. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/meta_action/base.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/meta_action
  218. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/meta_action/hypervisor_state.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/meta_action
  219. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/meta_action/nop.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/meta_action
  220. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/meta_action/migrate.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/meta_action
  221. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/meta_action/__init__.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/meta_action
  222. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/planner/default.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/planner
  223. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/planner/base.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/planner
  224. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/solution/default.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/solution
  225. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/solution/base.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/solution
  226. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/solution/solution_evaluator.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/solution
  227. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/solution/solution_comparator.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/solution
  228. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/messaging/command/base.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/messaging/command
  229. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/messaging/event_consumer.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/messaging
  230. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy/base.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy
  231. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy/context/default.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy/context
  232. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy/context/base.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy/context
  233. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy/selector/default.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy/selector
  234. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy/selector/base.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy/selector
  235. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy/selector/__init__.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy/selector
  236. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy/dummy_strategy.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy
  237. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy/level.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy
  238. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy/state.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy
  239. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy/loader.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy
  240. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/strategy/basic_consolidation.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy
  241. copying build/lib.linux-x86_64-2.7/watcher/decision_engine/model/mapping.py -> /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/model
  242. copying build/lib.linux-x86_64-2.7/watcher/contrib/tempest/tempest/api/infra_optim/admin/base.py -> /usr/local/lib/python2.7/dist-packages/watcher/contrib/tempest/tempest/api/infra_optim/admin
  243. copying build/lib.linux-x86_64-2.7/watcher/contrib/tempest/tempest/api/infra_optim/admin/test_audit_template.py -> /usr/local/lib/python2.7/dist-packages/watcher/contrib/tempest/tempest/api/infra_optim/admin
  244. copying build/lib.linux-x86_64-2.7/watcher/contrib/tempest/tempest/api/infra_optim/README.rst -> /usr/local/lib/python2.7/dist-packages/watcher/contrib/tempest/tempest/api/infra_optim
  245. copying build/lib.linux-x86_64-2.7/watcher/contrib/tempest/tempest/cli/README.rst -> /usr/local/lib/python2.7/dist-packages/watcher/contrib/tempest/tempest/cli
  246. copying build/lib.linux-x86_64-2.7/watcher/contrib/tempest/tempest/services/infra_optim/base.py -> /usr/local/lib/python2.7/dist-packages/watcher/contrib/tempest/tempest/services/infra_optim
  247. copying build/lib.linux-x86_64-2.7/watcher/contrib/tempest/tempest/services/infra_optim/v1/json/infra_optim_client.py -> /usr/local/lib/python2.7/dist-packages/watcher/contrib/tempest/tempest/services/infra_optim/v1/json
  248. copying build/lib.linux-x86_64-2.7/watcher/tests/api/utils.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/api
  249. copying build/lib.linux-x86_64-2.7/watcher/tests/api/test_hooks.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/api
  250. copying build/lib.linux-x86_64-2.7/watcher/tests/api/v1/test_types.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/api/v1
  251. copying build/lib.linux-x86_64-2.7/watcher/tests/api/v1/test_actions_plans.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/api/v1
  252. copying build/lib.linux-x86_64-2.7/watcher/tests/api/v1/test_actions.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/api/v1
  253. copying build/lib.linux-x86_64-2.7/watcher/tests/api/v1/test_audit_templates.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/api/v1
  254. copying build/lib.linux-x86_64-2.7/watcher/tests/api/v1/test_goals.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/api/v1
  255. copying build/lib.linux-x86_64-2.7/watcher/tests/api/v1/test_audits.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/api/v1
  256. copying build/lib.linux-x86_64-2.7/watcher/tests/base.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests
  257. copying build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/meta_actions/test_migrate.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/meta_actions
  258. copying build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/meta_actions/__init__.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/meta_actions
  259. copying build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/command/test_trigger_audit_command.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/command
  260. copying build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/command/test_event_consumer_factory.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/command
  261. copying build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/faker_cluster_state.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine
  262. copying build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/messaging/test_audit_endpoint.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/messaging
  263. copying build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/test_meta_action.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine
  264. copying build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/test_strategy_loader.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine
  265. copying build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/test_default_solution.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine
  266. copying build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/faker_metrics_collector.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine
  267. copying build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/test_dummy_strategy.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine
  268. copying build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/strategy/selector/test_strategy_selector.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/strategy/selector
  269. copying build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/strategy/test_strategy_loader.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/strategy
  270. copying build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/model/test_model.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/model
  271. copying build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/model/test_mapping.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/model
  272. copying build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/test_default_planner.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine
  273. copying build/lib.linux-x86_64-2.7/watcher/tests/decision_engine/test_basic_consolidation.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine
  274. copying build/lib.linux-x86_64-2.7/watcher/tests/applier/mapper/test_command_mapper.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/applier/mapper
  275. copying build/lib.linux-x86_64-2.7/watcher/tests/applier/mapper/__init__.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/applier/mapper
  276. copying build/lib.linux-x86_64-2.7/watcher/tests/applier/primitive/wrapper/test_nova_wrapper.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/applier/primitive/wrapper
  277. copying build/lib.linux-x86_64-2.7/watcher/tests/applier/primitive/wrapper/__init__.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/applier/primitive/wrapper
  278. copying build/lib.linux-x86_64-2.7/watcher/tests/applier/primitive/__init__.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/applier/primitive
  279. copying build/lib.linux-x86_64-2.7/watcher/tests/applier/messaging/test_launch_action_plan_command.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/applier/messaging
  280. copying build/lib.linux-x86_64-2.7/watcher/tests/applier/execution/test_command_executor.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/applier/execution
  281. copying build/lib.linux-x86_64-2.7/watcher/tests/cmd/test_api.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/cmd
  282. copying build/lib.linux-x86_64-2.7/watcher/tests/cmd/test_db_manage.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/cmd
  283. copying build/lib.linux-x86_64-2.7/watcher/tests/common/ceilometer.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/common
  284. copying build/lib.linux-x86_64-2.7/watcher/tests/common/keystone.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/common
  285. copying build/lib.linux-x86_64-2.7/watcher/tests/objects/test_objects.py -> /usr/local/lib/python2.7/dist-packages/watcher/tests/objects
  286. copying build/lib.linux-x86_64-2.7/watcher/applier/default.py -> /usr/local/lib/python2.7/dist-packages/watcher/applier
  287. copying build/lib.linux-x86_64-2.7/watcher/applier/mapper/default.py -> /usr/local/lib/python2.7/dist-packages/watcher/applier/mapper
  288. copying build/lib.linux-x86_64-2.7/watcher/applier/mapper/base.py -> /usr/local/lib/python2.7/dist-packages/watcher/applier/mapper
  289. copying build/lib.linux-x86_64-2.7/watcher/applier/mapper/__init__.py -> /usr/local/lib/python2.7/dist-packages/watcher/applier/mapper
  290. copying build/lib.linux-x86_64-2.7/watcher/applier/base.py -> /usr/local/lib/python2.7/dist-packages/watcher/applier
  291. copying build/lib.linux-x86_64-2.7/watcher/applier/primitive/power_state.py -> /usr/local/lib/python2.7/dist-packages/watcher/applier/primitive
  292. copying build/lib.linux-x86_64-2.7/watcher/applier/primitive/base.py -> /usr/local/lib/python2.7/dist-packages/watcher/applier/primitive
  293. copying build/lib.linux-x86_64-2.7/watcher/applier/primitive/hypervisor_state.py -> /usr/local/lib/python2.7/dist-packages/watcher/applier/primitive
  294. copying build/lib.linux-x86_64-2.7/watcher/applier/primitive/migration.py -> /usr/local/lib/python2.7/dist-packages/watcher/applier/primitive
  295. copying build/lib.linux-x86_64-2.7/watcher/applier/primitive/nop.py -> /usr/local/lib/python2.7/dist-packages/watcher/applier/primitive
  296. copying build/lib.linux-x86_64-2.7/watcher/applier/primitive/wrapper/nova_wrapper.py -> /usr/local/lib/python2.7/dist-packages/watcher/applier/primitive/wrapper
  297. copying build/lib.linux-x86_64-2.7/watcher/applier/primitive/wrapper/__init__.py -> /usr/local/lib/python2.7/dist-packages/watcher/applier/primitive/wrapper
  298. copying build/lib.linux-x86_64-2.7/watcher/applier/primitive/__init__.py -> /usr/local/lib/python2.7/dist-packages/watcher/applier/primitive
  299. copying build/lib.linux-x86_64-2.7/watcher/applier/messaging/applier_command.py -> /usr/local/lib/python2.7/dist-packages/watcher/applier/messaging
  300. copying build/lib.linux-x86_64-2.7/watcher/applier/messaging/launcher.py -> /usr/local/lib/python2.7/dist-packages/watcher/applier/messaging
  301. copying build/lib.linux-x86_64-2.7/watcher/applier/messaging/trigger.py -> /usr/local/lib/python2.7/dist-packages/watcher/applier/messaging
  302. copying build/lib.linux-x86_64-2.7/watcher/applier/execution/executor.py -> /usr/local/lib/python2.7/dist-packages/watcher/applier/execution
  303. copying build/lib.linux-x86_64-2.7/watcher/applier/execution/deploy_phase.py -> /usr/local/lib/python2.7/dist-packages/watcher/applier/execution
  304. copying build/lib.linux-x86_64-2.7/watcher/cmd/applier.py -> /usr/local/lib/python2.7/dist-packages/watcher/cmd
  305. copying build/lib.linux-x86_64-2.7/watcher/cmd/decisionengine.py -> /usr/local/lib/python2.7/dist-packages/watcher/cmd
  306. copying build/lib.linux-x86_64-2.7/watcher/cmd/api.py -> /usr/local/lib/python2.7/dist-packages/watcher/cmd
  307. copying build/lib.linux-x86_64-2.7/watcher/service.py -> /usr/local/lib/python2.7/dist-packages/watcher
  308. copying build/lib.linux-x86_64-2.7/watcher/db/sqlalchemy/alembic/versions/414bf1d36e7d_initial_revision.py -> /usr/local/lib/python2.7/dist-packages/watcher/db/sqlalchemy/alembic/versions
  309. copying build/lib.linux-x86_64-2.7/watcher/db/sqlalchemy/api.py -> /usr/local/lib/python2.7/dist-packages/watcher/db/sqlalchemy
  310. copying build/lib.linux-x86_64-2.7/watcher/db/api.py -> /usr/local/lib/python2.7/dist-packages/watcher/db
  311. copying build/lib.linux-x86_64-2.7/watcher/i18n.py -> /usr/local/lib/python2.7/dist-packages/watcher
  312. copying build/lib.linux-x86_64-2.7/watcher/common/utils.py -> /usr/local/lib/python2.7/dist-packages/watcher/common
  313. copying build/lib.linux-x86_64-2.7/watcher/common/ceilometer.py -> /usr/local/lib/python2.7/dist-packages/watcher/common
  314. copying build/lib.linux-x86_64-2.7/watcher/common/keystone.py -> /usr/local/lib/python2.7/dist-packages/watcher/common
  315. copying build/lib.linux-x86_64-2.7/watcher/common/service.py -> /usr/local/lib/python2.7/dist-packages/watcher/common
  316. copying build/lib.linux-x86_64-2.7/watcher/common/i18n.py -> /usr/local/lib/python2.7/dist-packages/watcher/common
  317. copying build/lib.linux-x86_64-2.7/watcher/common/exception.py -> /usr/local/lib/python2.7/dist-packages/watcher/common
  318. copying build/lib.linux-x86_64-2.7/watcher/opts.py -> /usr/local/lib/python2.7/dist-packages/watcher
  319. copying build/lib.linux-x86_64-2.7/watcher/metrics_engine/cluster_history/api.py -> /usr/local/lib/python2.7/dist-packages/watcher/metrics_engine/cluster_history
  320. copying build/lib.linux-x86_64-2.7/watcher/metrics_engine/cluster_model_collector/manager.py -> /usr/local/lib/python2.7/dist-packages/watcher/metrics_engine/cluster_model_collector
  321. copying build/lib.linux-x86_64-2.7/watcher/metrics_engine/cluster_model_collector/api.py -> /usr/local/lib/python2.7/dist-packages/watcher/metrics_engine/cluster_model_collector
  322. copying build/lib.linux-x86_64-2.7/watcher/objects/utils.py -> /usr/local/lib/python2.7/dist-packages/watcher/objects
  323. copying build/lib.linux-x86_64-2.7/watcher/objects/audit_template.py -> /usr/local/lib/python2.7/dist-packages/watcher/objects
  324. copying build/lib.linux-x86_64-2.7/watcher/objects/base.py -> /usr/local/lib/python2.7/dist-packages/watcher/objects
  325. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/api/middleware/parsable_error.py to parsable_error.pyc
  326. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/api/middleware/auth_token.py to auth_token.pyc
  327. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/api/app.py to app.pyc
  328. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/api/controllers/v1/utils.py to utils.pyc
  329. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/api/controllers/v1/action.py to action.pyc
  330. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/api/controllers/v1/types.py to types.pyc
  331. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/meta_action/power_state.py to power_state.pyc
  332. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/meta_action/base.py to base.pyc
  333. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/meta_action/hypervisor_state.py to hypervisor_state.pyc
  334. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/meta_action/nop.py to nop.pyc
  335. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/meta_action/migrate.py to migrate.pyc
  336. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/meta_action/__init__.py to __init__.pyc
  337. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/planner/default.py to default.pyc
  338. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/planner/base.py to base.pyc
  339. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/solution/default.py to default.pyc
  340. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/solution/base.py to base.pyc
  341. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/solution/solution_evaluator.py to solution_evaluator.pyc
  342. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/solution/solution_comparator.py to solution_comparator.pyc
  343. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/messaging/command/base.py to base.pyc
  344. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/messaging/event_consumer.py to event_consumer.pyc
  345. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy/base.py to base.pyc
  346. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy/context/default.py to default.pyc
  347. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy/context/base.py to base.pyc
  348. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy/selector/default.py to default.pyc
  349. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy/selector/base.py to base.pyc
  350. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy/selector/__init__.py to __init__.pyc
  351. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy/dummy_strategy.py to dummy_strategy.pyc
  352. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy/level.py to level.pyc
  353. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy/state.py to state.pyc
  354. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy/loader.py to loader.pyc
  355. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/strategy/basic_consolidation.py to basic_consolidation.pyc
  356. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/decision_engine/model/mapping.py to mapping.pyc
  357. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/contrib/tempest/tempest/api/infra_optim/admin/base.py to base.pyc
  358. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/contrib/tempest/tempest/api/infra_optim/admin/test_audit_template.py to test_audit_template.pyc
  359. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/contrib/tempest/tempest/services/infra_optim/base.py to base.pyc
  360. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/contrib/tempest/tempest/services/infra_optim/v1/json/infra_optim_client.py to infra_optim_client.pyc
  361. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/api/utils.py to utils.pyc
  362. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/api/test_hooks.py to test_hooks.pyc
  363. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/api/v1/test_types.py to test_types.pyc
  364. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/api/v1/test_actions_plans.py to test_actions_plans.pyc
  365. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/api/v1/test_actions.py to test_actions.pyc
  366. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/api/v1/test_audit_templates.py to test_audit_templates.pyc
  367. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/api/v1/test_goals.py to test_goals.pyc
  368. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/api/v1/test_audits.py to test_audits.pyc
  369. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/base.py to base.pyc
  370. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/meta_actions/test_migrate.py to test_migrate.pyc
  371. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/meta_actions/__init__.py to __init__.pyc
  372. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/command/test_trigger_audit_command.py to test_trigger_audit_command.pyc
  373. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/command/test_event_consumer_factory.py to test_event_consumer_factory.pyc
  374. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/faker_cluster_state.py to faker_cluster_state.pyc
  375. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/messaging/test_audit_endpoint.py to test_audit_endpoint.pyc
  376. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/test_meta_action.py to test_meta_action.pyc
  377. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/test_strategy_loader.py to test_strategy_loader.pyc
  378. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/test_default_solution.py to test_default_solution.pyc
  379. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/faker_metrics_collector.py to faker_metrics_collector.pyc
  380. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/test_dummy_strategy.py to test_dummy_strategy.pyc
  381. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/strategy/selector/test_strategy_selector.py to test_strategy_selector.pyc
  382. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/strategy/test_strategy_loader.py to test_strategy_loader.pyc
  383. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/model/test_model.py to test_model.pyc
  384. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/model/test_mapping.py to test_mapping.pyc
  385. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/test_default_planner.py to test_default_planner.pyc
  386. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/decision_engine/test_basic_consolidation.py to test_basic_consolidation.pyc
  387. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/applier/mapper/test_command_mapper.py to test_command_mapper.pyc
  388. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/applier/mapper/__init__.py to __init__.pyc
  389. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/applier/primitive/wrapper/test_nova_wrapper.py to test_nova_wrapper.pyc
  390. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/applier/primitive/wrapper/__init__.py to __init__.pyc
  391. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/applier/primitive/__init__.py to __init__.pyc
  392. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/applier/messaging/test_launch_action_plan_command.py to test_launch_action_plan_command.pyc
  393. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/applier/execution/test_command_executor.py to test_command_executor.pyc
  394. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/cmd/test_api.py to test_api.pyc
  395. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/cmd/test_db_manage.py to test_db_manage.pyc
  396. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/common/ceilometer.py to ceilometer.pyc
  397. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/common/keystone.py to keystone.pyc
  398. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/tests/objects/test_objects.py to test_objects.pyc
  399. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/applier/default.py to default.pyc
  400. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/applier/mapper/default.py to default.pyc
  401. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/applier/mapper/base.py to base.pyc
  402. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/applier/mapper/__init__.py to __init__.pyc
  403. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/applier/base.py to base.pyc
  404. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/applier/primitive/power_state.py to power_state.pyc
  405. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/applier/primitive/base.py to base.pyc
  406. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/applier/primitive/hypervisor_state.py to hypervisor_state.pyc
  407. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/applier/primitive/migration.py to migration.pyc
  408. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/applier/primitive/nop.py to nop.pyc
  409. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/applier/primitive/wrapper/nova_wrapper.py to nova_wrapper.pyc
  410. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/applier/primitive/wrapper/__init__.py to __init__.pyc
  411. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/applier/primitive/__init__.py to __init__.pyc
  412. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/applier/messaging/applier_command.py to applier_command.pyc
  413. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/applier/messaging/launcher.py to launcher.pyc
  414. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/applier/messaging/trigger.py to trigger.pyc
  415. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/applier/execution/executor.py to executor.pyc
  416. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/applier/execution/deploy_phase.py to deploy_phase.pyc
  417. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/cmd/applier.py to applier.pyc
  418. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/cmd/decisionengine.py to decisionengine.pyc
  419. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/cmd/api.py to api.pyc
  420. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/service.py to service.pyc
  421. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/db/sqlalchemy/alembic/versions/414bf1d36e7d_initial_revision.py to 414bf1d36e7d_initial_revision.pyc
  422. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/db/sqlalchemy/api.py to api.pyc
  423. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/db/api.py to api.pyc
  424. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/i18n.py to i18n.pyc
  425. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/common/utils.py to utils.pyc
  426. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/common/ceilometer.py to ceilometer.pyc
  427. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/common/iot.py to iot.pyc
  428. Sorry: IndentationError: unindent does not match any outer indentation level (iot.py, line 92)
  429. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/common/keystone.py to keystone.pyc
  430. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/common/service.py to service.pyc
  431. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/common/i18n.py to i18n.pyc
  432. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/common/exception.py to exception.pyc
  433. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/opts.py to opts.pyc
  434. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/metrics_engine/cluster_history/api.py to api.pyc
  435. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/metrics_engine/cluster_model_collector/manager.py to manager.pyc
  436. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/metrics_engine/cluster_model_collector/api.py to api.pyc
  437. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/objects/utils.py to utils.pyc
  438. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/objects/audit_template.py to audit_template.pyc
  439. byte-compiling /usr/local/lib/python2.7/dist-packages/watcher/objects/base.py to base.pyc
  440. running install_data
  441. running install_egg_info
  442. removing '/usr/local/lib/python2.7/dist-packages/python_watcher-0.21.1.dev2.egg-info' (and everything under it)
  443. Copying python_watcher.egg-info to /usr/local/lib/python2.7/dist-packages/python_watcher-0.21.1.dev2.egg-info
  444. running install_scripts
  445. Installing watcher-db-manage script to /usr/local/bin
  446. Installing watcher-decision-engine script to /usr/local/bin
  447. Installing watcher-api script to /usr/local/bin
  448. Installing watcher-applier script to /usr/local/bin
  449.  
  450.  
  451. and start watcher-api (now there is error):
  452. [root@watcher1.beta-zone9012.cloud.ovh.net ~] watcher-api --config-file /etc/watcher/watcher.conf --config-file /etc/watcher/logging.conf
  453. 2015-12-16 15:24:04.498 796 WARNING oslo_config.cfg [-] Option "verbose" from group "DEFAULT" is deprecated for removal. Its value may be silently ignored in the future.
  454. 2015-12-16 15:24:04.649 796 WARNING keystonemiddleware.auth_token [-] Use of the auth_admin_prefix, auth_host, auth_port, auth_protocol, identity_uri, admin_token, admin_user, admin_password, and admin_tenant_name configuration options is deprecated in favor of auth_plugin and related options and may be removed in a future release.
  455. 2015-12-16 15:24:04.651 796 CRITICAL watcher [-] LogConfigError: Error loading logging config watcher: No section: 'formatters'
  456. 2015-12-16 15:24:04.651 796 ERROR watcher Traceback (most recent call last):
  457. 2015-12-16 15:24:04.651 796 ERROR watcher File "/usr/local/bin/watcher-api", line 10, in <module>
  458. 2015-12-16 15:24:04.651 796 ERROR watcher sys.exit(main())
  459. 2015-12-16 15:24:04.651 796 ERROR watcher File "/usr/local/lib/python2.7/dist-packages/watcher/cmd/api.py", line 45, in main
  460. 2015-12-16 15:24:04.651 796 ERROR watcher logging.setup(CONF, 'watcher')
  461. 2015-12-16 15:24:04.651 796 ERROR watcher File "/usr/local/lib/python2.7/dist-packages/oslo_log/log.py", line 252, in setup
  462. 2015-12-16 15:24:04.651 796 ERROR watcher _load_log_config(conf.log_config_append)
  463. 2015-12-16 15:24:04.651 796 ERROR watcher File "/usr/local/lib/python2.7/dist-packages/oslo_log/log.py", line 230, in _load_log_config
  464. 2015-12-16 15:24:04.651 796 ERROR watcher raise LogConfigError(log_config_append, six.text_type(exc))
  465. 2015-12-16 15:24:04.651 796 ERROR watcher LogConfigError: Error loading logging config watcher: No section: 'formatters'
  466. 2015-12-16 15:24:04.651 796 ERROR watcher
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement