summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHervé Beraud <hberaud@redhat.com>2019-06-17 17:58:47 +0200
committerHervé Beraud <hberaud@redhat.com>2019-06-18 14:00:14 +0200
commit54356899da5d4a0997abb6819f184a27929cc0e9 (patch)
tree8dca7f12727ac9524f1d0bcf9f00337a7c659d75
parente45dfa7ea207b8f95ab09eeb0c863840db02ff7f (diff)
downloadoslo-messaging-54356899da5d4a0997abb6819f184a27929cc0e9.tar.gz
fix typos
Change-Id: Id11db4113c9b1c3add602192c1e915218704ef27
-rw-r--r--oslo_messaging/_drivers/common.py2
-rw-r--r--oslo_messaging/_drivers/impl_rabbit.py6
2 files changed, 4 insertions, 4 deletions
diff --git a/oslo_messaging/_drivers/common.py b/oslo_messaging/_drivers/common.py
index 90f32e3..64351b2 100644
--- a/oslo_messaging/_drivers/common.py
+++ b/oslo_messaging/_drivers/common.py
@@ -377,7 +377,7 @@ class DecayingTimer(object):
# greenthread.
# So, a connection cannot be shared between thread/greenthread and
# this two variables permit to define the purpose of the connection
-# to allow drivers to add special handling if needed (like heatbeat).
+# to allow drivers to add special handling if needed (like heartbeat).
# amqp drivers create 3 kind of connections:
# * driver.listen*(): each call create a new 'PURPOSE_LISTEN' connection
# * driver.send*(): a pool of 'PURPOSE_SEND' connections is used
diff --git a/oslo_messaging/_drivers/impl_rabbit.py b/oslo_messaging/_drivers/impl_rabbit.py
index b08b6ef..51d2fb6 100644
--- a/oslo_messaging/_drivers/impl_rabbit.py
+++ b/oslo_messaging/_drivers/impl_rabbit.py
@@ -535,7 +535,7 @@ class Connection(object):
# expected waiting the events drain, we start heartbeat_check and
# retrieve the server heartbeat packet only two times more than
# the minimum required for the heartbeat works
- # (heatbeat_timeout/heartbeat_rate/2.0, default kombu
+ # (heartbeat_timeout/heartbeat_rate/2.0, default kombu
# heartbeat_rate is 2)
self._heartbeat_wait_timeout = (
float(self.heartbeat_timeout_threshold) /
@@ -560,7 +560,7 @@ class Connection(object):
# NOTE(sileht): value chosen according the best practice from kombu
# http://kombu.readthedocs.org/en/latest/reference/kombu.common.html#kombu.common.eventloop
- # For heatbeat, we can set a bigger timeout, and check we receive the
+ # For heartbeat, we can set a bigger timeout, and check we receive the
# heartbeat packets regulary
if self._heartbeat_supported_and_enabled():
self._poll_timeout = self._heartbeat_wait_timeout
@@ -953,7 +953,7 @@ class Connection(object):
"occurred, trying to reconnect: %s", exc)
self.ensure_connection()
except Exception:
- LOG.warning("Unexpected error during heartbeart "
+ LOG.warning("Unexpected error during heartbeat "
"thread processing, retrying...")
LOG.debug('Exception', exc_info=True)