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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
d2cfcb3e
Commit
d2cfcb3e
authored
Aug 31, 2016
by
Lin Jen-Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use guard clause, feedback:
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6084#note_14754681
parent
1e49a8bc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
11 deletions
+9
-11
lib/gitlab/ci/pipeline_duration.rb
lib/gitlab/ci/pipeline_duration.rb
+9
-11
No files found.
lib/gitlab/ci/pipeline_duration.rb
View file @
d2cfcb3e
...
@@ -132,9 +132,8 @@ module Gitlab
...
@@ -132,9 +132,8 @@ module Gitlab
end
end
def
process_periods
(
periods
)
def
process_periods
(
periods
)
if
periods
.
empty?
return
periods
if
periods
.
empty?
periods
else
periods
.
drop
(
1
).
inject
([
periods
.
first
])
do
|
result
,
current
|
periods
.
drop
(
1
).
inject
([
periods
.
first
])
do
|
result
,
current
|
merged
=
try_merge_period
(
result
.
last
,
current
)
merged
=
try_merge_period
(
result
.
last
,
current
)
...
@@ -146,7 +145,6 @@ module Gitlab
...
@@ -146,7 +145,6 @@ module Gitlab
end
end
end
end
end
end
end
def
try_merge_period
(
previous
,
current
)
def
try_merge_period
(
previous
,
current
)
if
current
.
first
<=
previous
.
last
if
current
.
first
<=
previous
.
last
...
...
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