Skip to content

Commit

Permalink
fix(tls): tls updates from kork 1.89.0
Browse files Browse the repository at this point in the history
Removes static property init in Main since it is in kork-web now.
  • Loading branch information
cfieber committed Mar 27, 2017
1 parent 319d93d commit 76d2545
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ allprojects {
apply plugin: 'groovy'

ext {
spinnakerDependenciesVersion = project.hasProperty('spinnakerDependenciesVersion') ? project.property('spinnakerDependenciesVersion') : '0.85.0'
spinnakerDependenciesVersion = project.hasProperty('spinnakerDependenciesVersion') ? project.property('spinnakerDependenciesVersion') : '0.87.0'
}

def checkLocalVersions = [spinnakerDependenciesVersion: spinnakerDependenciesVersion]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@ import org.springframework.scheduling.annotation.EnableAsync
@ComponentScan(["com.netflix.spinnaker.gate", "com.netflix.spinnaker.config"])
@EnableAutoConfiguration(exclude = [SecurityAutoConfiguration, GroovyTemplateAutoConfiguration])
class Main extends SpringBootServletInitializer {
static {
System.setProperty("jdk.tls.rejectClientInitiatedRenegotiation", System.getProperty("jdk.tls.rejectClientInitiatedRenegotiation", "true"))
System.setProperty("jdk.tls.ephemeralDHKeySize", "2048")
}

static final Map<String, String> DEFAULT_PROPS = [
'netflix.environment': 'test',
Expand Down

0 comments on commit 76d2545

Please sign in to comment.