From e906be82b2ee33d74b970953e3d3886fe56e00f3 Mon Sep 17 00:00:00 2001 From: Jan Lehnardt Date: Sat, 4 Oct 2025 13:19:27 +0200 Subject: [PATCH] feat(dev/run): write couch_uri files so ports are discoverable with --auto-ports option --- dev/run | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dev/run b/dev/run index 478fb2ae9a0..f1b6c5da34b 100755 --- a/dev/run +++ b/dev/run @@ -813,6 +813,13 @@ def hack_default_ini(ctx, node, contents): flags=re.MULTILINE, ) + contents = re.sub( + r"^;uri_file =$", + "uri_file = ./dev/lib/{}/couch.uri".format(node), + contents, + flags=re.MULTILINE, + ) + if ctx["enable_erlang_views"]: contents = re.sub( r"^\[native_query_servers\]$",