From 13fcbb92588fe3d48e5679204257f08b0308b678 Mon Sep 17 00:00:00 2001 From: Dmitry Tantsur Date: Wed, 6 Dec 2023 17:25:47 +0100 Subject: [PATCH] Trivial: remove an incorrect comment IP addresses work, we even have unit tests for them. Change-Id: I2765047896d722e647e69f0a03e3bb3b48c41b3b --- ironic_lib/json_rpc/client.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/ironic_lib/json_rpc/client.py b/ironic_lib/json_rpc/client.py index d7099de7..5a794eec 100644 --- a/ironic_lib/json_rpc/client.py +++ b/ironic_lib/json_rpc/client.py @@ -90,9 +90,6 @@ class Client(object): """ host = topic.split('.', 1)[1] - # NOTE(TheJulia): Originally, I was worried about ip addresses being - # used, but looking at the topic split, it would have never really - # worked. host, port = netutils.parse_host_port(host) return _CallContext( host, self.serializer, version=version,