]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commit
Defer creation of router JSON in get_routers RPC
authorKevin Benton <blak111@gmail.com>
Fri, 17 Apr 2015 10:53:45 +0000 (03:53 -0700)
committerKevin Benton <blak111@gmail.com>
Tue, 21 Apr 2015 03:42:13 +0000 (20:42 -0700)
commit649599457e29b58ad0aec9ace990e0a2b59b05d0
tree156cfc14e806bcea40d369098813451b71f79070
parent374be5d44b9d887533dbbcaadf5e8cb4d3bb0e34
Defer creation of router JSON in get_routers RPC

The get_routers method in the l3 RPC code has a log.debug
statement that formats all of the router data as indented
JSON. This method can be expensive if there are hundreds
of routers being synced and it happens even if debugging
is disabled since the function call result is the parameter
to the debug statement.

This patch adds and leverages a small helper class that takes a
callable and its args and defers calling it until the __str__ method
is called on it when it's actually trying to be rendered to a string.

Change-Id: I2bfceb286ce30f2a3595381b62bdc6dd71ed8483
Partial-Bug: #1445412
neutron/api/rpc/handlers/l3_rpc.py
neutron/common/utils.py
neutron/tests/unit/common/test_utils.py