Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
0d4b1bb7
Commit
0d4b1bb7
authored
Jul 13, 2016
by
Stan Hu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refresh branch cache after `git gc`
Possible workaround for #15392
parent
d5c715c9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
3 deletions
+8
-3
CHANGELOG
CHANGELOG
+1
-1
app/workers/git_garbage_collect_worker.rb
app/workers/git_garbage_collect_worker.rb
+3
-1
spec/workers/git_garbage_collect_worker_spec.rb
spec/workers/git_garbage_collect_worker_spec.rb
+4
-1
No files found.
CHANGELOG
View file @
0d4b1bb7
...
...
@@ -4,7 +4,7 @@ v 8.10.0 (unreleased)
- Expose {should,force}_remove_source_branch (Ben Boeckel)
- Fix commit builds API, return all builds for all pipelines for given commit. !4849
- Replace Haml with Hamlit to make view rendering faster. !3666
-
Expire
the branch cache after `git gc` runs
-
Refresh
the branch cache after `git gc` runs
- Refactor repository paths handling to allow multiple git mount points
- Optimize system note visibility checking by memoizing the visible reference count !5070
- Add Application Setting to configure default Repository Path for new projects
...
...
app/workers/git_garbage_collect_worker.rb
View file @
0d4b1bb7
...
...
@@ -8,7 +8,9 @@ class GitGarbageCollectWorker
project
=
Project
.
find
(
project_id
)
gitlab_shell
.
gc
(
project
.
repository_storage_path
,
project
.
path_with_namespace
)
#
Expire
the branch cache in case garbage collection caused a ref lookup to fail
#
Refresh
the branch cache in case garbage collection caused a ref lookup to fail
project
.
repository
.
after_create_branch
project
.
repository
.
branch_names
project
.
repository
.
has_visible_content?
end
end
spec/workers/git_garbage_collect_worker_spec.rb
View file @
0d4b1bb7
...
...
@@ -16,7 +16,10 @@ describe GitGarbageCollectWorker do
project
.
repository_storage_path
,
project
.
path_with_namespace
).
and_return
(
true
)
expect_any_instance_of
(
Repository
).
to
receive
(
:after_create_branch
)
expect_any_instance_of
(
Repository
).
to
receive
(
:after_create_branch
).
and_call_original
expect_any_instance_of
(
Repository
).
to
receive
(
:branch_names
).
and_call_original
expect_any_instance_of
(
Repository
).
to
receive
(
:branch_count
).
and_call_original
expect_any_instance_of
(
Repository
).
to
receive
(
:has_visible_content?
).
and_call_original
subject
.
perform
(
project
.
id
)
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment