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
498749b3
Commit
498749b3
authored
Nov 12, 2016
by
Alejandro Rodríguez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix conflicts after CE upstream merge
parent
692f8561
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
4 additions
and
40 deletions
+4
-40
.gitlab-ci.yml
.gitlab-ci.yml
+0
-24
app/controllers/admin/application_settings_controller.rb
app/controllers/admin/application_settings_controller.rb
+0
-3
config/initializers/sidekiq.rb
config/initializers/sidekiq.rb
+1
-3
db/schema.rb
db/schema.rb
+0
-4
lib/gitlab/current_settings.rb
lib/gitlab/current_settings.rb
+0
-4
spec/controllers/projects/merge_requests_controller_spec.rb
spec/controllers/projects/merge_requests_controller_spec.rb
+3
-2
No files found.
.gitlab-ci.yml
View file @
498749b3
...
...
@@ -212,30 +212,6 @@ rake brakeman: *exec
rake flay
:
*exec
license_finder
:
*exec
rake downtime_check
:
*exec
<<<<<<< HEAD
=======
rake ee_compat_check
:
<<
:
*exec
only
:
-
branches@gitlab-org/gitlab-ce
-
branches@gitlab/gitlabhq
except
:
-
master
-
tags
-
/^[\d-]+-stable(-ee)?$/
allow_failure
:
yes
cache
:
key
:
"
ruby231-ee_compat_check_repo"
paths
:
-
ee_compat_check/repo/
-
vendor/ruby
artifacts
:
name
:
"
${CI_BUILD_NAME}_${CI_BUILD_REF_NAME}_${CI_BUILD_REF}"
when
:
on_failure
expire_in
:
10d
paths
:
-
ee_compat_check/patches/*.patch
>
>>>>>>
ce/master
rake db:migrate:reset:
stage
:
test
...
...
app/controllers/admin/application_settings_controller.rb
View file @
498749b3
...
...
@@ -133,12 +133,9 @@ class Admin::ApplicationSettingsController < Admin::ApplicationController
:elasticsearch_port
,
:usage_ping_enabled
,
:enabled_git_access_protocol
,
<<<<<<<
HEAD
:repository_size_limit
,
=======
:sidekiq_throttling_enabled
,
:sidekiq_throttling_factor
,
>>>>>>>
ce
/
master
:housekeeping_enabled
,
:housekeeping_bitmaps_enabled
,
:housekeeping_incremental_repack_period
,
...
...
config/initializers/sidekiq.rb
View file @
498749b3
...
...
@@ -29,12 +29,10 @@ Sidekiq.configure_server do |config|
end
Sidekiq
::
Cron
::
Job
.
load_from_hash!
cron_jobs
<<<<<<<
HEAD
# Gitlab Geo: enable bulk notify job only on primary node
Gitlab
::
Geo
.
bulk_notify_job
.
disable!
unless
Gitlab
::
Geo
.
primary?
=======
Gitlab
::
SidekiqThrottler
.
execute!
>>>>>>>
ce
/
master
# Database pool should be at least `sidekiq_concurrency` + 2
# For more info, see: https://github.com/mperham/sidekiq/blob/master/4.0-Upgrade.md
...
...
db/schema.rb
View file @
498749b3
...
...
@@ -1051,12 +1051,8 @@ ActiveRecord::Schema.define(version: 20161109150329) do
t
.
boolean
"repository_read_only"
t
.
boolean
"lfs_enabled"
t
.
text
"description_html"
<<<<<<<
HEAD
t
.
integer
"repository_size_limit"
t
.
boolean
"only_allow_merge_if_all_discussions_are_resolved"
,
default:
false
,
null:
false
=======
t
.
boolean
"only_allow_merge_if_all_discussions_are_resolved"
>>>>>>>
ce
/
master
end
add_index
"projects"
,
[
"ci_id"
],
name:
"index_projects_on_ci_id"
,
using: :btree
...
...
lib/gitlab/current_settings.rb
View file @
498749b3
...
...
@@ -53,16 +53,12 @@ module Gitlab
akismet_enabled:
false
,
repository_checks_enabled:
true
,
container_registry_token_expire_delay:
5
,
<<<<<<<
HEAD
elasticsearch_search:
false
,
elasticsearch_indexing:
false
,
elasticsearch_host:
ENV
[
'ELASTIC_HOST'
]
||
'localhost'
,
elasticsearch_port:
ENV
[
'ELASTIC_PORT'
]
||
'9200'
,
user_default_external:
false
=======
user_default_external:
false
,
sidekiq_throttling_enabled:
false
,
>>>>>>>
ce
/
master
)
end
...
...
spec/controllers/projects/merge_requests_controller_spec.rb
View file @
498749b3
...
...
@@ -39,7 +39,6 @@ describe Projects::MergeRequestsController do
end
end
<<<<<<<
HEAD
describe
'POST #create'
do
def
create_merge_request
(
overrides
=
{})
params
=
{
...
...
@@ -123,7 +122,9 @@ describe Projects::MergeRequestsController do
it
'shows the #new form'
do
expect
(
create_merge_request
(
title:
nil
)).
to
render_template
(
:new
)
end
=======
end
end
shared_examples
"loads labels"
do
|
action
|
it
"loads labels into the @labels variable"
do
get
action
,
...
...
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