From 6d6c96ed2ed265b2627f0b22092f0865a1645cdd Mon Sep 17 00:00:00 2001 From: Yann Hodique Date: Wed, 8 Jan 2025 22:39:53 +0100 Subject: [PATCH] fix: repair supervisor->node cnx (#127) This change is a workaround, considering that the http fallback should work, but it's probably a better default anyway. Main issue is tracked at: https://github.com/ethereum-optimism/optimism/issues/13624 --- src/interop/op-supervisor/op_supervisor_launcher.star | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interop/op-supervisor/op_supervisor_launcher.star b/src/interop/op-supervisor/op_supervisor_launcher.star index 1c8a1d16..8636cbd1 100644 --- a/src/interop/op-supervisor/op_supervisor_launcher.star +++ b/src/interop/op-supervisor/op_supervisor_launcher.star @@ -79,7 +79,7 @@ def get_supervisor_config( "OP_SUPERVISOR_L1_RPC": l1_config_env_vars["L1_RPC_URL"], "OP_SUPERVISOR_L2_CONSENSUS_NODES": ",".join( [ - "http://{0}:{1}".format( + "ws://{0}:{1}".format( participant.cl_context.ip_addr, interop_constants.INTEROP_WS_PORT_NUM, )