Skip to content

Commit

Permalink
chore(dependencies): Bump kork to 7.31.1 and fixup PluginBundleExtrac…
Browse files Browse the repository at this point in the history
…tor instantiation (#1124)
  • Loading branch information
jonsie committed Mar 31, 2020
1 parent 8f15de4 commit 2f1efc1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
package com.netflix.spinnaker.gate.plugins.deck

import com.netflix.spectator.api.Registry
import com.netflix.spinnaker.kork.plugins.SpringStrictPluginLoaderStatusProvider
import com.netflix.spinnaker.kork.plugins.bundle.PluginBundleExtractor
import com.netflix.spinnaker.kork.plugins.update.SpinnakerUpdateManager
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
Expand All @@ -32,9 +33,10 @@ open class DeckPluginConfiguration {
@Bean
open fun deckPluginCache(
updateManager: SpinnakerUpdateManager,
registry: Registry
registry: Registry,
springStrictPluginLoaderStatusProvider: SpringStrictPluginLoaderStatusProvider
): DeckPluginCache =
DeckPluginCache(updateManager, PluginBundleExtractor(), registry)
DeckPluginCache(updateManager, PluginBundleExtractor(springStrictPluginLoaderStatusProvider), registry)

@Bean
open fun deckPluginService(
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
fiatVersion=1.18.0
enablePublishing=false
spinnakerGradleVersion=7.8.0
korkVersion=7.29.0
korkVersion=7.31.1
includeProviders=basic,iap,ldap,oauth2,saml,x509
org.gradle.parallel=true

0 comments on commit 2f1efc1

Please sign in to comment.