Fix unmatched argument

add_agent_status_check_worker() does not pass context to
schedule_all_unscheduled_bgp_speakers()

Change-Id: Ib48decfc3d15cb23625d744026a3af0ee0c84446
This commit is contained in:
fumihiko kakuma 2017-10-23 11:44:33 +09:00
parent e71d151668
commit 24625be6c5
1 changed files with 3 additions and 1 deletions

View File

@ -13,6 +13,7 @@
# License for the specific language governing permissions and limitations
# under the License.
from neutron_lib import context as ncontext
from neutron_lib.db import model_base
from oslo_config import cfg
from oslo_db import exception as db_exc
@ -76,7 +77,8 @@ class BgpDrAgentSchedulerDbMixin(bgp_dras_ext.BgpDrSchedulerPluginBase,
LOG.warning(_LW("Cannot schedule BgpSpeaker to DrAgent. "
"Reason: No scheduler registered."))
def schedule_all_unscheduled_bgp_speakers(self, context):
def schedule_all_unscheduled_bgp_speakers(self):
context = ncontext.get_admin_context()
if self.bgp_drscheduler:
return self.bgp_drscheduler.schedule_all_unscheduled_bgp_speakers(
context)