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
5f8423dd
Commit
5f8423dd
authored
Nov 26, 2018
by
Douglas Barbosa Alexandre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CE port of 'Move EE specific code from Gitbab::Database into ee'
parent
4ec90095
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
6 deletions
+27
-6
lib/gitlab/database.rb
lib/gitlab/database.rb
+6
-5
spec/lib/gitlab/database_spec.rb
spec/lib/gitlab/database_spec.rb
+21
-1
No files found.
lib/gitlab/database.rb
View file @
5f8423dd
...
...
@@ -35,7 +35,6 @@ module Gitlab
adapter_name
.
casecmp
(
'postgresql'
).
zero?
end
# Overridden in EE
def
self
.
read_only?
false
end
...
...
@@ -44,12 +43,14 @@ module Gitlab
!
self
.
read_only?
end
#
c
heck whether the underlying database is in read-only mode
#
C
heck whether the underlying database is in read-only mode
def
self
.
db_read_only?
if
postgresql?
pg_is_in_recovery
=
ActiveRecord
::
Base
.
connection
.
execute
(
'SELECT pg_is_in_recovery()'
)
.
first
.
fetch
(
'pg_is_in_recovery'
)
==
't'
.
first
.
fetch
(
'pg_is_in_recovery'
)
Gitlab
::
Utils
.
to_boolean
(
pg_is_in_recovery
)
else
false
end
...
...
spec/lib/gitlab/database_spec.rb
View file @
5f8423dd
...
...
@@ -443,11 +443,17 @@ describe Gitlab::Database do
end
end
describe
'.read_only?'
do
it
'returns false'
do
expect
(
described_class
.
read_only?
).
to
be_falsey
end
end
describe
'.db_read_only?'
do
context
'when using PostgreSQL'
do
before
do
allow
(
ActiveRecord
::
Base
.
connection
).
to
receive
(
:execute
).
and_call_original
expect
(
described_class
).
to
receive
(
:postgresql?
).
and_return
(
true
)
allow
(
described_class
).
to
receive
(
:postgresql?
).
and_return
(
true
)
end
it
'detects a read only database'
do
...
...
@@ -456,11 +462,25 @@ describe Gitlab::Database do
expect
(
described_class
.
db_read_only?
).
to
be_truthy
end
# TODO: remove rails5-only tag after removing rails4 tests
it
'detects a read only database'
,
:rails5
do
allow
(
ActiveRecord
::
Base
.
connection
).
to
receive
(
:execute
).
with
(
'SELECT pg_is_in_recovery()'
).
and_return
([{
"pg_is_in_recovery"
=>
true
}])
expect
(
described_class
.
db_read_only?
).
to
be_truthy
end
it
'detects a read write database'
do
allow
(
ActiveRecord
::
Base
.
connection
).
to
receive
(
:execute
).
with
(
'SELECT pg_is_in_recovery()'
).
and_return
([{
"pg_is_in_recovery"
=>
"f"
}])
expect
(
described_class
.
db_read_only?
).
to
be_falsey
end
# TODO: remove rails5-only tag after removing rails4 tests
it
'detects a read write database'
,
:rails5
do
allow
(
ActiveRecord
::
Base
.
connection
).
to
receive
(
:execute
).
with
(
'SELECT pg_is_in_recovery()'
).
and_return
([{
"pg_is_in_recovery"
=>
false
}])
expect
(
described_class
.
db_read_only?
).
to
be_falsey
end
end
context
'when using MySQL'
do
...
...
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