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
3b52cccf
Commit
3b52cccf
authored
Jun 13, 2018
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'upstream/master' into ce-to-ee-2018-06-13
parents
ed1303fb
b4f29f58
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
1 deletion
+20
-1
app/assets/javascripts/vue_shared/components/user_avatar/user_avatar_image.vue
...s/vue_shared/components/user_avatar/user_avatar_image.vue
+1
-0
app/assets/stylesheets/bootstrap_migration.scss
app/assets/stylesheets/bootstrap_migration.scss
+1
-0
app/assets/stylesheets/framework/header.scss
app/assets/stylesheets/framework/header.scss
+2
-0
app/assets/stylesheets/pages/labels.scss
app/assets/stylesheets/pages/labels.scss
+5
-1
config/unicorn.rb.example
config/unicorn.rb.example
+11
-0
No files found.
app/assets/javascripts/vue_shared/components/user_avatar/user_avatar_image.vue
View file @
3b52cccf
...
...
@@ -86,6 +86,7 @@ export default {
<img
v-tooltip
class=
"avatar"
data-boundary=
"window"
:class=
"
{
lazy: lazy,
[avatarSizeClass]: true,
...
...
app/assets/stylesheets/bootstrap_migration.scss
View file @
3b52cccf
...
...
@@ -94,6 +94,7 @@ hr {
}
.form-group.row
.col-form-label
{
padding-top
:
0
;
// Bootstrap 4 aligns labels to the left
// for horizontal forms
@include
media-breakpoint-up
(
md
)
{
...
...
app/assets/stylesheets/framework/header.scss
View file @
3b52cccf
...
...
@@ -268,6 +268,8 @@
.navbar-sub-nav
,
.navbar-nav
{
align-items
:
center
;
>
li
{
>
a
:hover
,
>
a
:focus
{
...
...
app/assets/stylesheets/pages/labels.scss
View file @
3b52cccf
...
...
@@ -58,7 +58,7 @@
}
.color-label
{
padding
:
$gl-padding-4
$grid-size
;
padding
:
0
$grid-size
;
line-height
:
16px
;
border-radius
:
$label-border-radius
;
color
:
$white-light
;
...
...
@@ -112,6 +112,10 @@
}
}
}
.color-label
{
padding
:
$gl-padding-4
$grid-size
;
}
}
.prioritized-labels
{
...
...
config/unicorn.rb.example
View file @
3b52cccf
...
...
@@ -81,6 +81,17 @@ GC.respond_to?(:copy_on_write_friendly=) and
# fast LAN.
check_client_connection false
before_exec do |server|
# The following is necessary to ensure stale Prometheus metrics don't
# accumulate over time. It needs to be done in this hook as opposed to
# inside an init script to ensure metrics files aren't deleted after new
# unicorn workers start after a SIGUSR2 is received.
if ENV['prometheus_multiproc_dir']
old_metrics = Dir[File.join(ENV['prometheus_multiproc_dir'], '*.db')]
FileUtils.rm_rf(old_metrics)
end
end
before_fork do |server, worker|
# the following is highly recommended for Rails + "preload_app true"
# as there's no need for the master process to hold a connection
...
...
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