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
050dc31c
Commit
050dc31c
authored
Jul 12, 2017
by
Ryan Baxter
Committed by
GitHub
Jul 12, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2114 from gzurowski/remove-lombok-from-hystrix-dashboard
Remove Lombok from spring-cloud-netflix-hystrix-dashboard module
parents
d0009ba0
aae96faa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
10 deletions
+4
-10
pom.xml
spring-cloud-netflix-hystrix-dashboard/pom.xml
+0
-7
HystrixDashboardConfiguration.java
...flix/hystrix/dashboard/HystrixDashboardConfiguration.java
+4
-3
No files found.
spring-cloud-netflix-hystrix-dashboard/pom.xml
View file @
050dc31c
...
@@ -57,13 +57,6 @@
...
@@ -57,13 +57,6 @@
<artifactId>
d3js
</artifactId>
<artifactId>
d3js
</artifactId>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
<!-- Only needed at compile time -->
<scope>
compile
</scope>
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
<scope>
test
</scope>
...
...
spring-cloud-netflix-hystrix-dashboard/src/main/java/org/springframework/cloud/netflix/hystrix/dashboard/HystrixDashboardConfiguration.java
View file @
050dc31c
...
@@ -26,8 +26,8 @@ import javax.servlet.http.HttpServlet;
...
@@ -26,8 +26,8 @@ import javax.servlet.http.HttpServlet;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpServletResponse
;
import
javax.servlet.http.HttpServletResponse
;
import
lombok.extern.apachecommons.Commons
Log
;
import
org.apache.commons.logging.
Log
;
import
org.apache.commons.logging.LogFactory
;
import
org.apache.http.Header
;
import
org.apache.http.Header
;
import
org.apache.http.HttpResponse
;
import
org.apache.http.HttpResponse
;
import
org.apache.http.HttpStatus
;
import
org.apache.http.HttpStatus
;
...
@@ -103,9 +103,10 @@ public class HystrixDashboardConfiguration {
...
@@ -103,9 +103,10 @@ public class HystrixDashboardConfiguration {
* not yet support CORS (https://bugs.webkit.org/show_bug.cgi?id=61862) so that a UI
* not yet support CORS (https://bugs.webkit.org/show_bug.cgi?id=61862) so that a UI
* can request a stream from a different server.
* can request a stream from a different server.
*/
*/
@CommonsLog
public
static
class
ProxyStreamServlet
extends
HttpServlet
{
public
static
class
ProxyStreamServlet
extends
HttpServlet
{
private
static
final
Log
log
=
LogFactory
.
getLog
(
ProxyStreamServlet
.
class
);
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
String
CONNECTION_CLOSE_VALUE
=
"close"
;
private
static
final
String
CONNECTION_CLOSE_VALUE
=
"close"
;
...
...
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