From 9b8e000e2aa0cef741a95471a747ccc2cddedd82 Mon Sep 17 00:00:00 2001 From: Divya Rani Date: Tue, 8 Jul 2025 18:12:04 +0530 Subject: [PATCH] Deprecate use_bundled_binaries in Gitaly config As we are deprecating the use_bundled_binaries and bin_path config options in Gitaly, this commit updates the config to remove the use_bundled_binaries field. --- dev/gitaly-config/config.toml | 4 ---- gitaly/config.toml | 4 ---- 2 files changed, 8 deletions(-) diff --git a/dev/gitaly-config/config.toml b/dev/gitaly-config/config.toml index 541bb603c..901e45dd3 100644 --- a/dev/gitaly-config/config.toml +++ b/dev/gitaly-config/config.toml @@ -15,10 +15,6 @@ listen_addr = "0.0.0.0:8075" # prometheus_listen_addr = "localhost:9236" # -# # Git executable settings -[git] -use_bundled_binaries = true - [[storage]] name = "default" path = "/home/git/repositories" diff --git a/gitaly/config.toml b/gitaly/config.toml index a16ffb370..94299c6d2 100644 --- a/gitaly/config.toml +++ b/gitaly/config.toml @@ -5,10 +5,6 @@ bin_dir = "/usr/local/bin" # listen on a TCP socket. This is insecure (no authentication) listen_addr = "0.0.0.0:8075" -# Git executable settings -[git] -use_bundled_binaries = true - # storage configuration, expected in $HOME [[storage]] name = "default" -- GitLab