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
243c13b7
Unverified
Commit
243c13b7
authored
Jun 09, 2016
by
Spencer Gibb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make turbine.combineHostPort=true the default.
fixes gh-1087
parent
09cc1f2d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
spring-cloud-netflix.adoc
docs/src/main/asciidoc/spring-cloud-netflix.adoc
+1
-1
TurbineProperties.java
...ingframework/cloud/netflix/turbine/TurbineProperties.java
+1
-1
No files found.
docs/src/main/asciidoc/spring-cloud-netflix.adoc
View file @
243c13b7
...
@@ -581,7 +581,7 @@ turbine:
...
@@ -581,7 +581,7 @@ turbine:
Spring
Cloud
provides
a
`
spring
-
cloud
-
starter
-
turbine
`
that
has
all
the
dependencies
you
need
to
get
a
Turbine
server
running
.
Just
create
a
Spring
Boot
application
and
annotate
it
with
`@
EnableTurbine
`.
Spring
Cloud
provides
a
`
spring
-
cloud
-
starter
-
turbine
`
that
has
all
the
dependencies
you
need
to
get
a
Turbine
server
running
.
Just
create
a
Spring
Boot
application
and
annotate
it
with
`@
EnableTurbine
`.
NOTE
:
by
default
the
native
Netflix
behaviour
built
into
Turbine
does
_not_
allow
multiple
processes
per
host
,
per
cluster
(
the
key
to
the
instance
id
is
the
hostname
).
Spring
Cloud
generalizes
this
a
bit
,
allowing
the
host
and
port
to
be
used
as
the
key
,
but
only
if
you
set
the
property
`
turbine
.
combineHostPort
=
true
`
NOTE
:
by
default
Spring
Cloud
allows
Turbine
to
use
the
host
and
port
to
allow
multiple
processes
per
host
,
per
cluster
.
If
you
want
the
native
Netflix
behaviour
built
into
Turbine
that
does
_not_
allow
multiple
processes
per
host
,
per
cluster
(
the
key
to
the
instance
id
is
the
hostname
),
then
set
the
property
`
turbine
.
combineHostPort
=
false
`.
===
Turbine
Stream
===
Turbine
Stream
...
...
spring-cloud-netflix-turbine/src/main/java/org/springframework/cloud/netflix/turbine/TurbineProperties.java
View file @
243c13b7
...
@@ -35,7 +35,7 @@ public class TurbineProperties {
...
@@ -35,7 +35,7 @@ public class TurbineProperties {
private
String
appConfig
;
private
String
appConfig
;
private
boolean
combineHostPort
=
fals
e
;
private
boolean
combineHostPort
=
tru
e
;
public
List
<
String
>
getAppConfigList
()
{
public
List
<
String
>
getAppConfigList
()
{
if
(!
StringUtils
.
hasText
(
this
.
appConfig
))
{
if
(!
StringUtils
.
hasText
(
this
.
appConfig
))
{
...
...
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