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
8937c5ff
Commit
8937c5ff
authored
Nov 12, 2015
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Load raw repository lazily to recover from failed read
parent
d0ec2882
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
7 deletions
+11
-7
app/models/repository.rb
app/models/repository.rb
+11
-7
No files found.
app/models/repository.rb
View file @
8937c5ff
...
...
@@ -6,7 +6,7 @@ class Repository
include
Gitlab
::
ShellAdapter
attr_accessor
:
raw_repository
,
:
path_with_namespace
,
:project
attr_accessor
:path_with_namespace
,
:project
def
self
.
clean_old_archives
repository_downloads_path
=
Gitlab
.
config
.
gitlab
.
repository_downloads_path
...
...
@@ -19,14 +19,18 @@ class Repository
def
initialize
(
path_with_namespace
,
default_branch
=
nil
,
project
=
nil
)
@path_with_namespace
=
path_with_namespace
@project
=
project
end
if
path_with_namespace
@raw_repository
=
Gitlab
::
Git
::
Repository
.
new
(
path_to_repo
)
@raw_repository
.
autocrlf
=
:input
end
def
raw_repository
return
nil
unless
path_with_namespace
rescue
Gitlab
::
Git
::
Repository
::
NoRepository
nil
@raw_repository
||=
begin
repo
=
Gitlab
::
Git
::
Repository
.
new
(
path_to_repo
)
repo
.
autocrlf
=
:input
repo
rescue
Gitlab
::
Git
::
Repository
::
NoRepository
nil
end
end
# Return absolute path to repository
...
...
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