]> 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 <kevinbenton@buttewifi.com>
Wed, 22 Apr 2015 19:36:30 +0000 (19:36 +0000)
commit58af5e101d30027549bda9308536e9f45ed0bfef
tree301134d142d1993264121ba2f2d8ad718e996914
parenta0d896328672ae9e1ac948320bbbe89345696e62
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
(cherry picked from commit 649599457e29b58ad0aec9ace990e0a2b59b05d0)
neutron/api/rpc/handlers/l3_rpc.py
neutron/common/utils.py
neutron/tests/unit/common/test_utils.py