Skip to content

Commit

Permalink
Fix #383: ip needs to be the same for cluster_interface_address and d…
Browse files Browse the repository at this point in the history
…iscovery_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.
  • Loading branch information
e-carlin authored Sep 5, 2023
1 parent f025acb commit a426f98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rsconf/component/devbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit a426f98

Please sign in to comment.