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
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
0c300524
Commit
0c300524
authored
Nov 23, 2018
by
Heinrich Lee Yu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use strong memoize utility
parent
6bb1a2ab
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
lib/gitlab/cache/ci/project_pipeline_status.rb
lib/gitlab/cache/ci/project_pipeline_status.rb
+5
-3
No files found.
lib/gitlab/cache/ci/project_pipeline_status.rb
View file @
0c300524
...
@@ -7,6 +7,8 @@ module Gitlab
...
@@ -7,6 +7,8 @@ module Gitlab
module
Cache
module
Cache
module
Ci
module
Ci
class
ProjectPipelineStatus
class
ProjectPipelineStatus
include
Gitlab
::
Utils
::
StrongMemoize
attr_accessor
:sha
,
:status
,
:ref
,
:project
,
:loaded
attr_accessor
:sha
,
:status
,
:ref
,
:project
,
:loaded
def
self
.
load_for_project
(
project
)
def
self
.
load_for_project
(
project
)
...
@@ -112,9 +114,9 @@ module Gitlab
...
@@ -112,9 +114,9 @@ module Gitlab
end
end
def
commit
def
commit
return
@commit
if
defined?
(
@commit
)
strong_memoize
(
:commit
)
do
project
.
commit
@commit
=
project
.
commit
end
end
end
end
end
end
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