This patch adds a log statement so we can figure out what status the
lbaas-agent is passing in. This way we can figure out what to prevent.
Change-Id: I1a0f809140127ccb9596d83c97add03a853991a3
Closes-bug: #
1295491
qry = context.session.query(loadbalancer_db.Pool)
qry = qry.filter_by(id=pool_id)
pool = qry.one()
-
if pool.status != constants.ACTIVE:
- raise n_exc.Invalid(_('Expected active pool'))
+ raise n_exc.Invalid(_('Pool_id %(pool_id)s status ACTIVE '
+ 'is expected but status is %(status)s') %
+ {'pool_id': pool_id,
+ 'status': pool.status})
retval = {}
retval['pool'] = self.plugin._make_pool_dict(pool)