deprecate nova-all
This deprecates nova-all for the Newton release so we can remove it in O. Change-Id: Iae77e137cccbf3dbec7d19da60992368e9647b2a
This commit is contained in:
parent
73d5d1f461
commit
5f996d4786
@ -30,7 +30,7 @@ from oslo_log import log as logging
|
|||||||
|
|
||||||
import nova.conf
|
import nova.conf
|
||||||
from nova import config
|
from nova import config
|
||||||
from nova.i18n import _LE
|
from nova.i18n import _LE, _LW
|
||||||
from nova import objects
|
from nova import objects
|
||||||
from nova import service
|
from nova import service
|
||||||
from nova import utils
|
from nova import utils
|
||||||
@ -48,6 +48,9 @@ def main():
|
|||||||
objects.register_all()
|
objects.register_all()
|
||||||
launcher = service.process_launcher()
|
launcher = service.process_launcher()
|
||||||
|
|
||||||
|
# TODO(sdague): Remove in O
|
||||||
|
LOG.warning(_LW('The nova-all entrypoint is deprecated and will '
|
||||||
|
'be removed in a future release'))
|
||||||
# nova-api
|
# nova-api
|
||||||
for api in CONF.enabled_apis:
|
for api in CONF.enabled_apis:
|
||||||
try:
|
try:
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
deprecations:
|
||||||
|
|
||||||
|
- The ``nova-all`` binary is deprecated. This was an all in one
|
||||||
|
binary for nova services used for testing in the early days of
|
||||||
|
OpenStack, but was never intended for real use.
|
Loading…
Reference in New Issue
Block a user