From d97606cec0753a676807f5e29c5c5a22c929991b Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Sat, 20 Apr 2019 07:25:57 -0700 Subject: [PATCH] Set gerrit's gitHttpUrl to itself We used to replicate refs to the git farm, but we stopped doing that with gitea. Therefore, download links for patches must be served from gerrit itself now. We could remove this option (this is the default), but I've left it to remind us about it in case we start replicating again in the future. Change-Id: I0b537afbcac17ae28a63bd2ef01102eb00b5f315 --- modules/openstack_project/manifests/review.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/openstack_project/manifests/review.pp b/modules/openstack_project/manifests/review.pp index 1678267df3..bf23f22684 100644 --- a/modules/openstack_project/manifests/review.pp +++ b/modules/openstack_project/manifests/review.pp @@ -96,7 +96,7 @@ class openstack_project::review ( class { 'openstack_project::gerrit': vhost_name => 'review.opendev.org', canonicalweburl => 'https://review.opendev.org/', - git_http_url => 'https://opendev.org/', + git_http_url => 'https://review.opendev.org/', ssl_cert_file => $ssl_cert_file, ssl_key_file => $ssl_key_file, ssl_chain_file => $ssl_chain_file,