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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2019-07-09 22:43:29 +0300
committerStan Hu <stanhu@gmail.com>2019-07-09 22:43:29 +0300
commitcd5117593f3db99f176b462319844641c7dd74dc (patch)
treed884e98fe972dddba05f4cc5716db07c359601d1 /spec
parentb2ecc8098a4dce8d1e3d8adfaadec91ad54b0585 (diff)
parent5305d5267de729903474516adfe6344a7dd56a4c (diff)
Merge branch 'jc-disable-can-use-disk-temp' into 'master'
Disabling can_use_disk? temporarily See merge request gitlab-org/gitlab-ce!30526
Diffstat (limited to 'spec')
-rw-r--r--spec/lib/gitlab/git/rugged_impl/use_rugged_spec.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/spec/lib/gitlab/git/rugged_impl/use_rugged_spec.rb b/spec/lib/gitlab/git/rugged_impl/use_rugged_spec.rb
index f957ed00945..e7ef9d08f80 100644
--- a/spec/lib/gitlab/git/rugged_impl/use_rugged_spec.rb
+++ b/spec/lib/gitlab/git/rugged_impl/use_rugged_spec.rb
@@ -30,6 +30,7 @@ describe Gitlab::Git::RuggedImpl::UseRugged, :seed_helper do
end
it 'returns true when gitaly matches disk' do
+ pending('temporary disabled because of https://gitlab.com/gitlab-org/gitlab-ce/issues/64338')
expect(subject.use_rugged?(repository, feature_flag_name)).to be true
end
@@ -48,6 +49,7 @@ describe Gitlab::Git::RuggedImpl::UseRugged, :seed_helper do
end
it "doesn't lead to a second rpc call because gitaly client should use the cached value" do
+ pending('temporary disabled because of https://gitlab.com/gitlab-org/gitlab-ce/issues/64338')
expect(subject.use_rugged?(repository, feature_flag_name)).to be true
expect(Gitlab::GitalyClient).not_to receive(:filesystem_id)