Skip to content

Commit d70a029

Browse files
committed
Merge pull request Netflix#5 from trotter/patch-1
Fix whitespace in EdgeServer.java
2 parents 50068e0 + 3ba93f8 commit d70a029

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ subprojects {
4848
compile 'com.netflix.ribbon:ribbon-httpclient:0.1.2'
4949
compile 'com.netflix.governator:governator:1.0.3'
5050
compile 'com.netflix.karyon:karyon-core:1.0.2'
51-
compile 'com.netflix.karyon:karyon-admin-web:1.0.2'
51+
compile 'com.netflix.karyon:karyon-admin-web:1.0.2'
5252
testCompile 'junit:junit:4.10'
5353
testCompile 'log4j:log4j:1.2.16'
5454

@@ -97,4 +97,4 @@ project(':rss-edge') {
9797
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
9898
manifest { attributes 'Main-Class': 'com.netflix.recipes.rss.server.EdgeServer' }
9999
}
100-
}
100+
}

rss-edge/src/main/java/com/netflix/recipes/rss/server/EdgeServer.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ public EdgeServer() {
3535

3636
public static void main(final String[] args) throws Exception {
3737
System.setProperty("archaius.deployment.applicationId", "edge");
38-
System.setProperty(PropertyNames.SERVER_BOOTSTRAP_BASE_PACKAGES_OVERRIDE, "com.netflix");
38+
System.setProperty(PropertyNames.SERVER_BOOTSTRAP_BASE_PACKAGES_OVERRIDE, "com.netflix");
3939

4040
String appId = ConfigurationManager.getDeploymentContext().getApplicationId();
41-
String env = ConfigurationManager.getDeploymentContext().getDeploymentEnvironment();
41+
String env = ConfigurationManager.getDeploymentContext().getDeploymentEnvironment();
4242

4343
// populate the eureka-specific properties
4444
System.setProperty("eureka.client.props", appId);
@@ -49,4 +49,4 @@ public static void main(final String[] args) throws Exception {
4949
EdgeServer edgeServer = new EdgeServer();
5050
edgeServer.start();
5151
}
52-
}
52+
}

0 commit comments

Comments
 (0)