Skip to content

Commit

Permalink
fixed errors
Browse files Browse the repository at this point in the history
Signed-off-by: munishchouhan <[email protected]>
  • Loading branch information
munishchouhan committed Jan 28, 2025
1 parent 807ef92 commit dba3cd4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import jakarta.inject.Singleton
@Slf4j
@Singleton
@CompileStatic
class RegistryLookupCache extends AbstractTieredCache<TieredCacheKey, RegistryAuth> {
class RegistryLookupCache extends AbstractTieredCache<String, RegistryAuth> {

@Value('${wave.registry.cache.duration:1h}')
private Duration duration
Expand Down
2 changes: 1 addition & 1 deletion src/main/groovy/io/seqera/wave/proxy/ProxyCache.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import jakarta.inject.Singleton
@Slf4j
@Singleton
@CompileStatic
class ProxyCache extends AbstractTieredCache<TieredCacheKey, DelegateResponse> {
class ProxyCache extends AbstractTieredCache<String, DelegateResponse> {

private ProxyCacheConfig config

Expand Down

0 comments on commit dba3cd4

Please sign in to comment.