From f48e1ebe7f08159004bf9a88d5a9e474ff32dbb1 Mon Sep 17 00:00:00 2001 From: Paul Cristian Sarbu Date: Fri, 8 Sep 2023 11:24:26 +0200 Subject: just serve: Add endpoint arguments --- src/other_tools/just_mr/launch.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/other_tools/just_mr/launch.cpp') diff --git a/src/other_tools/just_mr/launch.cpp b/src/other_tools/just_mr/launch.cpp index c843d3c1..26b87059 100644 --- a/src/other_tools/just_mr/launch.cpp +++ b/src/other_tools/just_mr/launch.cpp @@ -152,6 +152,10 @@ auto CallJust(std::optional const& config_file, cmd.emplace_back("-r"); cmd.emplace_back(*common_args.remote_execution_address); } + if (supports_remote and common_args.remote_serve_address) { + cmd.emplace_back("--remote-serve-address"); + cmd.emplace_back(*common_args.remote_serve_address); + } // forward mutual TLS arguments if (supports_cacert and auth_args.tls_ca_cert) { cmd.emplace_back("--tls-ca-cert"); -- cgit v1.2.3