diff --git a/neutron/db/agents_db.py b/neutron/db/agents_db.py index 8a99d75bb60..6539b620fc9 100644 --- a/neutron/db/agents_db.py +++ b/neutron/db/agents_db.py @@ -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()