From 44b6b6d3b59abfe16e455db1d84f69b5058283b7 Mon Sep 17 00:00:00 2001 From: Yann Hodique Date: Wed, 8 Jan 2025 11:52:40 -0600 Subject: [PATCH] fix: repair supervisor->node cnx This change is a workaround, considering that the http fallback should work, but it's probably a better default anyway. --- 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, )