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
70d39aae
Commit
70d39aae
authored
Jul 10, 2017
by
Ryan Baxter
Committed by
GitHub
Jul 10, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2107 from yongsungyoon/fix-compile-error-on-ejc
Fix compilation problem on eclipse java compiler
parents
c2c63470
2b593bc7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
RibbonCommandHystrixThreadPoolKeyTests.java
...route/support/RibbonCommandHystrixThreadPoolKeyTests.java
+4
-1
No files found.
spring-cloud-netflix-core/src/test/java/org/springframework/cloud/netflix/zuul/filters/route/support/RibbonCommandHystrixThreadPoolKeyTests.java
View file @
70d39aae
...
...
@@ -16,7 +16,9 @@
package
org
.
springframework
.
cloud
.
netflix
.
zuul
.
filters
.
route
.
support
;
import
com.netflix.client.AbstractLoadBalancerAwareClient
;
import
com.netflix.client.ClientRequest
;
import
com.netflix.client.http.HttpResponse
;
import
com.netflix.hystrix.HystrixCommandProperties
;
import
org.junit.Before
;
import
org.junit.Test
;
...
...
@@ -91,7 +93,8 @@ public class RibbonCommandHystrixThreadPoolKeyTests {
assertThat
(
ribbonCommand2
.
getThreadPoolKey
().
name
()).
isEqualTo
(
ribbonCommand2
.
getCommandGroup
().
name
());
}
public
static
class
TestRibbonCommand
extends
AbstractRibbonCommand
{
public
static
class
TestRibbonCommand
extends
AbstractRibbonCommand
<
AbstractLoadBalancerAwareClient
<
ClientRequest
,
HttpResponse
>,
ClientRequest
,
HttpResponse
>
{
public
TestRibbonCommand
(
String
commandKey
,
ZuulProperties
zuulProperties
)
{
super
(
commandKey
,
null
,
null
,
zuulProperties
);
}
...
...
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