Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--internal/gitaly/config/config.go1
-rw-r--r--internal/gitlab/http_client.go1
2 files changed, 0 insertions, 2 deletions
diff --git a/internal/gitaly/config/config.go b/internal/gitaly/config/config.go
index 29718876f..bb930d906 100644
--- a/internal/gitaly/config/config.go
+++ b/internal/gitaly/config/config.go
@@ -98,7 +98,6 @@ type HTTPSettings struct {
Password string `toml:"password" json:"password"`
CAFile string `toml:"ca_file" json:"ca_file"`
CAPath string `toml:"ca_path" json:"ca_path"`
- SelfSigned bool `toml:"self_signed_cert" json:"self_signed_cert"`
}
// Git contains the settings for the Git executable
diff --git a/internal/gitlab/http_client.go b/internal/gitlab/http_client.go
index 05b75c521..cfefe4e9b 100644
--- a/internal/gitlab/http_client.go
+++ b/internal/gitlab/http_client.go
@@ -52,7 +52,6 @@ func NewHTTPClient(
gitlabCfg.RelativeURLRoot,
gitlabCfg.HTTPSettings.CAFile,
gitlabCfg.HTTPSettings.CAPath,
- gitlabCfg.HTTPSettings.SelfSigned,
uint64(gitlabCfg.HTTPSettings.ReadTimeout),
opts,
)