yahoo-eng-team team mailing list archive
-
yahoo-eng-team team
-
Mailing list archive
-
Message #13669
[Bug 1308811] [NEW] nova.objects.base imports conductor wrong
Public bug reported:
in nova.objects.base it imports conductor
from nova.conductor import api as conductor_api
self._conductor = conductor_api.API()
This bypasses the logic to detemin whether to use conductor RPC service
or not.
Should do
from nova import conductor
self._conductor = conductor.API()
** Affects: nova
Importance: Undecided
Status: New
--
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Compute (nova).
https://bugs.launchpad.net/bugs/1308811
Title:
nova.objects.base imports conductor wrong
Status in OpenStack Compute (Nova):
New
Bug description:
in nova.objects.base it imports conductor
from nova.conductor import api as conductor_api
self._conductor = conductor_api.API()
This bypasses the logic to detemin whether to use conductor RPC
service or not.
Should do
from nova import conductor
self._conductor = conductor.API()
To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1308811/+subscriptions
Follow ups
References