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
Jérome Perrin
gitlab-ce
Commits
b80bf57d
Commit
b80bf57d
authored
Apr 21, 2016
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable 'repository check' feature in 8.7.0
It still causes too many false alarms.
parent
53534682
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
4 deletions
+16
-4
CHANGELOG
CHANGELOG
+1
-1
db/migrate/20160421130527_disable_repository_checks.rb
db/migrate/20160421130527_disable_repository_checks.rb
+11
-0
db/schema.rb
db/schema.rb
+2
-2
doc/administration/repository_checks.md
doc/administration/repository_checks.md
+2
-1
No files found.
CHANGELOG
View file @
b80bf57d
...
...
@@ -53,7 +53,7 @@ v 8.7.0 (unreleased)
- Add links to CI setup documentation from project settings and builds pages
- Display project members page to all members
- Handle nil descriptions in Slack issue messages (Stan Hu)
- Add automated repository integrity checks
- Add automated repository integrity checks
(OFF by default)
- API: Expose open_issues_count, closed_issues_count, open_merge_requests_count for labels (Robert Schilling)
- API: Ability to star and unstar a project (Robert Schilling)
- Add default scope to projects to exclude projects pending deletion
...
...
db/migrate/20160421130527_disable_repository_checks.rb
0 → 100644
View file @
b80bf57d
class
DisableRepositoryChecks
<
ActiveRecord
::
Migration
def
up
change_column_default
:application_settings
,
:repository_checks_enabled
,
false
execute
'UPDATE application_settings SET repository_checks_enabled = false'
end
def
down
change_column_default
:application_settings
,
:repository_checks_enabled
,
true
execute
'UPDATE application_settings SET repository_checks_enabled = true'
end
end
db/schema.rb
View file @
b80bf57d
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
201604
1912001
7
)
do
ActiveRecord
::
Schema
.
define
(
version:
201604
2113052
7
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
...
...
@@ -77,7 +77,7 @@ ActiveRecord::Schema.define(version: 20160419120017) do
t
.
string
"akismet_api_key"
t
.
boolean
"email_author_in_body"
,
default:
false
t
.
integer
"default_group_visibility"
t
.
boolean
"repository_checks_enabled"
,
default:
tru
e
t
.
boolean
"repository_checks_enabled"
,
default:
fals
e
t
.
integer
"metrics_packet_size"
,
default:
1
t
.
text
"shared_runners_text"
end
...
...
doc/administration/repository_checks.md
View file @
b80bf57d
# Repository checks
>**Note:**
This feature was
[
introduced
][
ce-3232
]
in GitLab 8.7.
This feature was
[
introduced
][
ce-3232
]
in GitLab 8.7. It is OFF by
default because it still causes too many false alarms.
Git has a built-in mechanism,
[
git fsck
][
git-fsck
]
, to verify the
integrity of all data commited to a repository. GitLab administrators
...
...
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