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
e5e677c0
Commit
e5e677c0
authored
Jul 27, 2015
by
Spencer Gibb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove https port 8443 registration.
It overwrote the port 443 registration. fixes gh-461
parent
79f939be
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
SimpleHostRoutingFilter.java
...d/netflix/zuul/filters/route/SimpleHostRoutingFilter.java
+1
-1
No files found.
spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/zuul/filters/route/SimpleHostRoutingFilter.java
View file @
e5e677c0
...
...
@@ -81,6 +81,7 @@ import com.netflix.zuul.constants.ZuulConstants;
import
com.netflix.zuul.context.RequestContext
;
@CommonsLog
@SuppressWarnings
(
"deprecation"
)
public
class
SimpleHostRoutingFilter
extends
ZuulFilter
{
public
static
final
String
CONTENT_ENCODING
=
"Content-Encoding"
;
...
...
@@ -313,7 +314,6 @@ public class SimpleHostRoutingFilter extends ZuulFilter {
SchemeRegistry
registry
=
new
SchemeRegistry
();
registry
.
register
(
new
Scheme
(
"http"
,
PlainSocketFactory
.
getSocketFactory
(),
80
));
registry
.
register
(
new
Scheme
(
"https"
,
sf
,
443
));
registry
.
register
(
new
Scheme
(
"https"
,
sf
,
8443
));
ThreadSafeClientConnManager
cm
=
new
ThreadSafeClientConnManager
(
registry
);
cm
.
setMaxTotal
(
Integer
.
parseInt
(
System
.
getProperty
(
"zuul.max.host.connections"
,
"200"
)));
...
...
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