Bump AgentExtRpcCallback version to 1.1

Id28248f4f75821fbacf46e2c44e40f27f59172a9 modified report_state server
side API (returning agent state instead of None). Callers may want to
rely on that particular behaviour, so probably version bump is
justified.

Change-Id: I19edaa27181bffbd5c6482002829cea2acb52622
This commit is contained in:
Ihar Hrachyshka
2016-01-27 14:22:20 +01:00
parent 2c52dc40f0
commit 470bc8f0ea

View File

@@ -365,9 +365,13 @@ class AgentExtRpcCallback(object):
This class implements the server side of an rpc interface. The client side
can be found in neutron.agent.rpc.PluginReportStateAPI. For more
information on changing rpc interfaces, see doc/source/devref/rpc_api.rst.
API version history:
1.0 - Initial version.
1.1 - report_state now returns agent state.
"""
target = oslo_messaging.Target(version='1.0',
target = oslo_messaging.Target(version='1.1',
namespace=constants.RPC_NAMESPACE_STATE)
START_TIME = timeutils.utcnow()