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
6d3ad8fc
Commit
6d3ad8fc
authored
Oct 26, 2020
by
Igor Wiedler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add warning for backported monkey-patch
parent
ee46adaa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
config/initializers/labkit_middleware.rb
config/initializers/labkit_middleware.rb
+3
-1
No files found.
config/initializers/labkit_middleware.rb
View file @
6d3ad8fc
...
@@ -3,7 +3,9 @@
...
@@ -3,7 +3,9 @@
# partial backport of https://github.com/rails/rails/pull/38169
# partial backport of https://github.com/rails/rails/pull/38169
# this is in order to be able to re-order rack middlewares.
# this is in order to be able to re-order rack middlewares.
unless
ActionDispatch
::
MiddlewareStack
.
method_defined?
(
:move
)
if
ActionDispatch
::
MiddlewareStack
.
method_defined?
(
:move
)
warn
"`move` is now defined in in ActionDispatch itself: https://github.com/rails/rails/pull/38169, please remove this patch from
#{
__FILE__
}
"
else
module
ActionDispatch
module
ActionDispatch
class
MiddlewareStack
class
MiddlewareStack
def
move
(
target
,
source
)
def
move
(
target
,
source
)
...
...
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