Follow up patch to correct code-contribute-guide

Follow up patch on I1d243a20151827a35aed465061befbcf65f96474

Change-Id: I1d4c87584db638e1652df7b4d5c75d7fe2787269
This commit is contained in:
Lin Tan 2015-12-08 20:54:02 +08:00 committed by Ruby Loo
parent 9dbd14e551
commit ac0738803a
1 changed files with 7 additions and 9 deletions

View File

@ -1,8 +1,8 @@
.. _code-contribution-guide: .. _code-contribution-guide:
================================== =======================
Code Contribution Guide for Ironic Code Contribution Guide
================================== =======================
This document provides some necessary points for developers to consider when This document provides some necessary points for developers to consider when
writing and reviewing Ironic code. The checklist will help developers get things writing and reviewing Ironic code. The checklist will help developers get things
@ -19,16 +19,16 @@ Ironic API RPC Versions
* When the signature(arguments) of an RPC method is changed, the following things * When the signature(arguments) of an RPC method is changed, the following things
need to be considered: need to be considered:
- Client-side (conductor/rpcapi.py) and server-side (conductor/manager.py) - The RPC version must be incremented and be the same value for both the client
should both increment the RPC version by one and the RPC versions must be the same of (conductor/rpcapi.py, used by ironic-api) and the server (conductor/manager.py,
the client and server. used by ironic-conductor).
- New arguments of the method can only be added as optional. Existing arguments cannot be - New arguments of the method can only be added as optional. Existing arguments cannot be
removed or changed in incompatible ways (with the method in older RPC versions). removed or changed in incompatible ways (with the method in older RPC versions).
- Client-side can pin a version cap by passing ``version_cap`` to the constructor - Client-side can pin a version cap by passing ``version_cap`` to the constructor
of oslo_messaging.RPCClient. Methods which change arguments should run of oslo_messaging.RPCClient. Methods which change arguments should run
client.can_send_version() to see if the version of the request is compatible with the client.can_send_version() to see if the version of the request is compatible with the
version cap of RPC Client, otherwise the request needs to be created to work with a version cap of RPC Client, otherwise the request needs to be created to work with a
previous version that is suppoted. previous version that is supported.
- Server-side should tolerate the older version of requests in order to keep - Server-side should tolerate the older version of requests in order to keep
working during the progress of live upgrade. The behavior of server-side should working during the progress of live upgrade. The behavior of server-side should
depend on the input parameters passed from the client-side. depend on the input parameters passed from the client-side.
@ -52,5 +52,3 @@ Object Versions
signtures of remotable methods, which helps developers to check if the change of signtures of remotable methods, which helps developers to check if the change of
objects need a version bump. The object fingerprint should only be updated with a objects need a version bump. The object fingerprint should only be updated with a
version bump. version bump.