From a426f98d3e4d4a1393b684a032a6b8be3c3398f0 Mon Sep 17 00:00:00 2001 From: Evan Carlin Date: Tue, 5 Sep 2023 17:17:06 -0600 Subject: [PATCH] Fix #383: ip needs to be the same for cluster_interface_address and discovery_address (#384) I'm not sure why this is the case but it is. Also, change _RSIVIZ_DICE_NETWORK_DISCOVERY_PORT to be something other than the default port to make it easier to debug. --- rsconf/component/devbox.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rsconf/component/devbox.py b/rsconf/component/devbox.py index ab64abc1..0261233c 100644 --- a/rsconf/component/devbox.py +++ b/rsconf/component/devbox.py @@ -10,7 +10,7 @@ from rsconf import component import ipaddress -_RSIVIZ_DICE_NETWORK_DISCOVERY_PORT = 5555 +_RSIVIZ_DICE_NETWORK_DISCOVERY_PORT = 5556 class T(component.T): @@ -152,7 +152,7 @@ def _rsiviz(self, z, path): ("PYKERN_PKASYNCIO_SERVER_PORT", u.rsiviz.port_base), ( "RSIVIZ_PKCLI_SERVICE_DICE_NETWORK_CLUSTER_INTERFACE_ADDRESS", - ipaddress.ip_address(u.rsiviz.ip_base) + 1, + u.rsiviz.ip_base, ), ( "RSIVIZ_PKCLI_SERVICE_DICE_NETWORK_DISCOVERY_ADDRESS",