From ec6b61b694ac6264028327c5570f9de4a91acd18 Mon Sep 17 00:00:00 2001 From: Matt Brictson Date: Sun, 7 Aug 2022 10:21:46 -0700 Subject: [PATCH] Switch cucumber tests to use https instead of git:// (#2112) On my machine, when running `rake features`, the `git clone` operation in some of the cucumber tests hangs and eventually times out. It seems to be due to the repo URL using the `git://` protocol. When I switch to `https://`, it works fine. --- spec/support/test_app.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/support/test_app.rb b/spec/support/test_app.rb index 726ffd27..fc34c7c3 100644 --- a/spec/support/test_app.rb +++ b/spec/support/test_app.rb @@ -12,7 +12,7 @@ module TestApp def default_config <<-CONFIG set :deploy_to, '#{deploy_to}' - set :repo_url, 'git://github.com/capistrano/capistrano.git' + set :repo_url, 'https://github.com/capistrano/capistrano.git' set :branch, 'master' set :ssh_options, { keys: "\#{ENV['HOME']}/.vagrant.d/insecure_private_key", auth_methods: ['publickey'] } server 'vagrant@localhost:2220', roles: %w{web app}