Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-cloud-netflix
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
spring-cloud-netflix
Commits
fe06370a
Commit
fe06370a
authored
May 16, 2017
by
Jin Zhang
Committed by
Spencer Gibb
May 15, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
correct comments in FeignClient, SendResponseFilter, RibbonRoutingFilter (#1935)
parent
a1b1a7d7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
FeignClient.java
.../org/springframework/cloud/netflix/feign/FeignClient.java
+1
-1
SendResponseFilter.java
...k/cloud/netflix/zuul/filters/post/SendResponseFilter.java
+1
-1
RibbonRoutingFilter.java
...cloud/netflix/zuul/filters/route/RibbonRoutingFilter.java
+1
-1
No files found.
spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/feign/FeignClient.java
View file @
fe06370a
...
...
@@ -107,7 +107,7 @@ public @interface FeignClient {
String
path
()
default
""
;
/**
* Whether to mark the feign proxy as a primary bean. Defaults to
fals
e.
* Whether to mark the feign proxy as a primary bean. Defaults to
tru
e.
*/
boolean
primary
()
default
true
;
...
...
spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/zuul/filters/post/SendResponseFilter.java
View file @
fe06370a
...
...
@@ -71,7 +71,7 @@ public class SendResponseFilter extends ZuulFilter {
public
SendResponseFilter
()
{
super
();
// To support Servlet API 3.
0.1 we need to check if setc
ontentLengthLong exists
// To support Servlet API 3.
1 we need to check if setC
ontentLengthLong exists
try
{
HttpServletResponse
.
class
.
getMethod
(
"setContentLengthLong"
);
}
catch
(
NoSuchMethodException
e
)
{
...
...
spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/zuul/filters/route/RibbonRoutingFilter.java
View file @
fe06370a
...
...
@@ -68,7 +68,7 @@ public class RibbonRoutingFilter extends ZuulFilter {
this
.
helper
=
helper
;
this
.
ribbonCommandFactory
=
ribbonCommandFactory
;
this
.
requestCustomizers
=
requestCustomizers
;
// To support Servlet API 3.
0.1 we need to check if getc
ontentLengthLong exists
// To support Servlet API 3.
1 we need to check if getC
ontentLengthLong exists
try
{
HttpServletRequest
.
class
.
getMethod
(
"getContentLengthLong"
);
}
catch
(
NoSuchMethodException
e
)
{
...
...
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