BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
ed214a11
Commit
ed214a11
authored
Dec 28, 2015
by
Yorick Peterse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle missing settings table for metrics
This ensures we can still boot, even when the "application_settings" table doesn't exist.
parent
af00558d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
metrics.rb
lib/gitlab/metrics.rb
+5
-1
metrics_spec.rb
spec/lib/gitlab/metrics_spec.rb
+1
-1
No files found.
lib/gitlab/metrics.rb
View file @
ed214a11
...
...
@@ -9,13 +9,17 @@ module Gitlab
# etc). This ensures the application is able to boot up even when the
# migrations have not been executed.
def
self
.
settings
ApplicationSetting
.
current
||
{
if
ApplicationSetting
.
table_exists?
and
curr
=
ApplicationSetting
.
current
curr
else
{
metrics_pool_size:
16
,
metrics_timeout:
10
,
metrics_enabled:
false
,
metrics_method_call_threshold:
10
}
end
end
def
self
.
pool_size
settings
[
:metrics_pool_size
]
...
...
spec/lib/gitlab/metrics_spec.rb
View file @
ed214a11
...
...
@@ -29,7 +29,7 @@ describe Gitlab::Metrics do
it
'returns an Array containing a file path and line number'
do
file
,
line
=
described_class
.
last_relative_application_frame
expect
(
line
).
to
eq
(
30
)
expect
(
line
).
to
eq
(
__LINE__
-
2
)
expect
(
file
).
to
eq
(
'spec/lib/gitlab/metrics_spec.rb'
)
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