From 8699146e1aee5bbd5b65a96c4109b6c02b0e1fe1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jarom=C3=ADr=20Wysoglad?= Date: Tue, 11 Apr 2023 12:44:26 -0400 Subject: Make TCP publisher log warning instead of failing. Change-Id: I56ca759c2d43830f4e342130f27b75bdba65c469 --- ceilometer/publisher/tcp.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'ceilometer') diff --git a/ceilometer/publisher/tcp.py b/ceilometer/publisher/tcp.py index ef5e802d..5dac5f91 100644 --- a/ceilometer/publisher/tcp.py +++ b/ceilometer/publisher/tcp.py @@ -51,7 +51,11 @@ class TCPPublisher(publisher.ConfigPublisherBase): "Cannot resolve host %s, creating AF_INET socket...", self.host) self.addr_family = socket.AF_INET - self.create_and_connect() + try: + self.create_and_connect() + except Exception: + LOG.error(_("Unable to connect to the " + "remote endpoint")) def create_and_connect(self): self.socket = socket.socket(self.addr_family, @@ -77,8 +81,8 @@ class TCPPublisher(publisher.ConfigPublisherBase): try: self.socket.send(msg_len + encoded_msg) except Exception: - LOG.warning(_("Unable to send sample over TCP," - "trying to reconnect and resend the message")) + LOG.error(_("Unable to send sample over TCP," + "trying to reconnect and resend the message")) self.create_and_connect() try: self.socket.send(msg_len + encoded_msg) -- cgit v1.2.1