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
13a8d466
Commit
13a8d466
authored
Oct 23, 2020
by
Igor Wiedler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport ActionDispatch::MiddlewareStack#move to allow reordering
parent
3b83fad1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
+31
-0
config/initializers/labkit_middleware.rb
config/initializers/labkit_middleware.rb
+31
-0
No files found.
config/initializers/labkit_middleware.rb
View file @
13a8d466
# frozen_string_literal: true
# partial backport of https://github.com/rails/rails/pull/38169
# this is in order to be able to re-order rack middlewares.
unless
ActionDispatch
::
MiddlewareStack
.
method_defined?
(
:move
)
module
ActionDispatch
class
MiddlewareStack
def
move
(
target
,
source
)
source_index
=
assert_index
(
source
,
:before
)
source_middleware
=
middlewares
.
delete_at
(
source_index
)
target_index
=
assert_index
(
target
,
:before
)
middlewares
.
insert
(
target_index
,
source_middleware
)
end
end
end
end
unless
Rails
::
Configuration
::
MiddlewareStackProxy
.
method_defined?
(
:move
)
module
Rails
module
Configuration
class
MiddlewareStackProxy
def
move
(
*
args
,
&
block
)
@operations
<<
->
middleware
{
middleware
.
send
(
__method__
,
*
args
,
&
block
)
}
end
ruby2_keywords
(
:move
)
if
respond_to?
(
:ruby2_keywords
,
true
)
end
end
end
end
Rails
.
application
.
config
.
middleware
.
move
(
1
,
ActionDispatch
::
RequestId
)
Rails
.
application
.
config
.
middleware
.
insert_after
(
ActionDispatch
::
RequestId
,
Labkit
::
Middleware
::
Rack
)
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