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
89be4c17
Commit
89be4c17
authored
Feb 26, 2018
by
Nick Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CE->EE: Fix conflicts related to the pages domain verification
parent
45cebf2c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
13 deletions
+0
-13
config/gitlab.yml.example
config/gitlab.yml.example
+0
-3
config/sidekiq_queues.yml
config/sidekiq_queues.yml
+0
-3
db/schema.rb
db/schema.rb
+0
-7
No files found.
config/gitlab.yml.example
View file @
89be4c17
...
@@ -253,7 +253,6 @@ production: &base
...
@@ -253,7 +253,6 @@ production: &base
pages_domain_verification_cron_worker:
pages_domain_verification_cron_worker:
cron: "*/15 * * * *"
cron: "*/15 * * * *"
<<<<<<< HEAD
##
##
# GitLab EE only jobs:
# GitLab EE only jobs:
...
@@ -287,8 +286,6 @@ production: &base
...
@@ -287,8 +286,6 @@ production: &base
geo_file_download_dispatch_worker:
geo_file_download_dispatch_worker:
cron: "*/1 * * * *"
cron: "*/1 * * * *"
=======
>>>>>>> upstream/master
registry:
registry:
# enabled: true
# enabled: true
# host: registry.example.com
# host: registry.example.com
...
...
config/sidekiq_queues.yml
View file @
89be4c17
...
@@ -68,7 +68,6 @@
...
@@ -68,7 +68,6 @@
- [project_migrate_hashed_storage, 1]
- [project_migrate_hashed_storage, 1]
- [storage_migrator, 1]
- [storage_migrator, 1]
- [pages_domain_verification, 1]
- [pages_domain_verification, 1]
<<<<<<< HEAD
# EE-specific queues
# EE-specific queues
- [ldap_group_sync, 2]
- [ldap_group_sync, 2]
...
@@ -84,5 +83,3 @@
...
@@ -84,5 +83,3 @@
- [export_csv, 1]
- [export_csv, 1]
- [object_storage_upload, 1]
- [object_storage_upload, 1]
- [object_storage, 1]
- [object_storage, 1]
=======
>
>>>>>>
upstream/master
db/schema.rb
View file @
89be4c17
...
@@ -179,7 +179,6 @@ ActiveRecord::Schema.define(version: 20180216121030) do
...
@@ -179,7 +179,6 @@ ActiveRecord::Schema.define(version: 20180216121030) do
t
.
integer
"gitaly_timeout_fast"
,
default:
10
,
null:
false
t
.
integer
"gitaly_timeout_fast"
,
default:
10
,
null:
false
t
.
boolean
"mirror_available"
,
default:
true
,
null:
false
t
.
boolean
"mirror_available"
,
default:
true
,
null:
false
t
.
string
"auto_devops_domain"
t
.
string
"auto_devops_domain"
<<<<<<<
HEAD
t
.
integer
"default_project_creation"
,
default:
2
,
null:
false
t
.
integer
"default_project_creation"
,
default:
2
,
null:
false
t
.
boolean
"external_authorization_service_enabled"
,
default:
false
,
null:
false
t
.
boolean
"external_authorization_service_enabled"
,
default:
false
,
null:
false
t
.
string
"external_authorization_service_url"
t
.
string
"external_authorization_service_url"
...
@@ -192,9 +191,6 @@ ActiveRecord::Schema.define(version: 20180216121030) do
...
@@ -192,9 +191,6 @@ ActiveRecord::Schema.define(version: 20180216121030) do
t
.
integer
"user_id"
,
null:
false
t
.
integer
"user_id"
,
null:
false
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
=======
t
.
boolean
"pages_domain_verification_enabled"
,
default:
true
,
null:
false
>>>>>>>
upstream
/
master
end
end
add_index
"approvals"
,
[
"merge_request_id"
],
name:
"index_approvals_on_merge_request_id"
,
using: :btree
add_index
"approvals"
,
[
"merge_request_id"
],
name:
"index_approvals_on_merge_request_id"
,
using: :btree
...
@@ -1729,7 +1725,6 @@ ActiveRecord::Schema.define(version: 20180216121030) do
...
@@ -1729,7 +1725,6 @@ ActiveRecord::Schema.define(version: 20180216121030) do
add_index
"pages_domains"
,
[
"project_id"
],
name:
"index_pages_domains_on_project_id"
,
using: :btree
add_index
"pages_domains"
,
[
"project_id"
],
name:
"index_pages_domains_on_project_id"
,
using: :btree
add_index
"pages_domains"
,
[
"verified_at"
,
"enabled_until"
],
name:
"index_pages_domains_on_verified_at_and_enabled_until"
,
using: :btree
add_index
"pages_domains"
,
[
"verified_at"
,
"enabled_until"
],
name:
"index_pages_domains_on_verified_at_and_enabled_until"
,
using: :btree
add_index
"pages_domains"
,
[
"verified_at"
],
name:
"index_pages_domains_on_verified_at"
,
using: :btree
add_index
"pages_domains"
,
[
"verified_at"
],
name:
"index_pages_domains_on_verified_at"
,
using: :btree
<<<<<<<
HEAD
create_table
"path_locks"
,
force: :cascade
do
|
t
|
create_table
"path_locks"
,
force: :cascade
do
|
t
|
t
.
string
"path"
,
null:
false
t
.
string
"path"
,
null:
false
...
@@ -1742,8 +1737,6 @@ ActiveRecord::Schema.define(version: 20180216121030) do
...
@@ -1742,8 +1737,6 @@ ActiveRecord::Schema.define(version: 20180216121030) do
add_index
"path_locks"
,
[
"path"
],
name:
"index_path_locks_on_path"
,
using: :btree
add_index
"path_locks"
,
[
"path"
],
name:
"index_path_locks_on_path"
,
using: :btree
add_index
"path_locks"
,
[
"project_id"
],
name:
"index_path_locks_on_project_id"
,
using: :btree
add_index
"path_locks"
,
[
"project_id"
],
name:
"index_path_locks_on_project_id"
,
using: :btree
add_index
"path_locks"
,
[
"user_id"
],
name:
"index_path_locks_on_user_id"
,
using: :btree
add_index
"path_locks"
,
[
"user_id"
],
name:
"index_path_locks_on_user_id"
,
using: :btree
=======
>>>>>>>
upstream
/
master
create_table
"personal_access_tokens"
,
force: :cascade
do
|
t
|
create_table
"personal_access_tokens"
,
force: :cascade
do
|
t
|
t
.
integer
"user_id"
,
null:
false
t
.
integer
"user_id"
,
null:
false
...
...
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