Skip to content

Commit

Permalink
fix(titus): oops. wrong constructor. groovy.. (#2672)
Browse files Browse the repository at this point in the history
  • Loading branch information
emjburns committed May 30, 2018
1 parent 95d0b10 commit 3c1cf8b
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class TitusCachingProviderConfig {
Long pollIntervalMillis

@Value('${titus.timeoutMillis:300000}')
Long timeOutMilis
Long timeoutMillis

@Bean
@DependsOn('netflixTitusCredentials')
Expand All @@ -71,7 +71,7 @@ class TitusCachingProviderConfig {
registry,
awsLookupUtilProvider,
pollIntervalMillis,
timeOutMilis
timeoutMillis
)
} else { //use new split caching for this whole account
agents << new TitusInstanceCachingAgent(
Expand All @@ -83,15 +83,14 @@ class TitusCachingProviderConfig {
awsLookupUtilProvider
)
agents << new TitusV2ClusterCachingAgent(
titusCloudProvider,
titusClientProvider,
account,
region,
objectMapper,
registry,
awsLookupUtilProvider,
pollIntervalMillis,
timeOutMilis
timeoutMillis
)
}
}
Expand Down

0 comments on commit 3c1cf8b

Please sign in to comment.