From 8c6dd45df551c7bc07aa7693ff66a416691bf818 Mon Sep 17 00:00:00 2001 From: Adam Grare Date: Fri, 16 Sep 2022 15:50:40 -0400 Subject: [PATCH] Use unbundled_exec when starting provider workers --- lib/workers/bin/provider_worker | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/workers/bin/provider_worker b/lib/workers/bin/provider_worker index 6985104b328..09db38b9a11 100755 --- a/lib/workers/bin/provider_worker +++ b/lib/workers/bin/provider_worker @@ -56,4 +56,4 @@ $stdout.puts "Starting #{worker_type} with PID: #{Process.pid} and args: #{args} # Using exec here rather than fork+exec so that we can continue to use the # standard systemd service Type=notify and not have to use Type=forking which # can limit other systemd options available to the service. -Kernel.exec(args) +Bundler.unbundled_exec(args)