diff options
| author | Chris Behrens <cbehrens@codestud.com> | 2011-08-30 15:52:25 -0700 |
|---|---|---|
| committer | Chris Behrens <cbehrens@codestud.com> | 2011-08-30 15:52:25 -0700 |
| commit | 2e12e975ee9d4ab7a17eebb0e36714b56d6b1779 (patch) | |
| tree | 35aab206544856388effdd251a70bedea2369162 | |
| parent | 5ccbce699880557f9c58d4d403487979d3604ccf (diff) | |
logging change when rpc pool creates new connection
| -rw-r--r-- | nova/rpc/impl_carrot.py | 2 | ||||
| -rw-r--r-- | nova/rpc/impl_kombu.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/nova/rpc/impl_carrot.py b/nova/rpc/impl_carrot.py index 1d23c1853..303a4ff88 100644 --- a/nova/rpc/impl_carrot.py +++ b/nova/rpc/impl_carrot.py @@ -152,7 +152,7 @@ class Pool(pools.Pool): # TODO(comstud): Timeout connections not used in a while def create(self): - LOG.debug('Creating new connection') + LOG.debug('Pool creating new connection') return Connection.instance(new=True) # Create a ConnectionPool to use for RPC calls. We'll order the diff --git a/nova/rpc/impl_kombu.py b/nova/rpc/impl_kombu.py index ffd6447da..8242bd177 100644 --- a/nova/rpc/impl_kombu.py +++ b/nova/rpc/impl_kombu.py @@ -491,7 +491,7 @@ class Pool(pools.Pool): # TODO(comstud): Timeout connections not used in a while def create(self): - LOG.debug('Creating new connection') + LOG.debug('Pool creating new connection') return Connection() # Create a ConnectionPool to use for RPC calls. We'll order the |
