Skip to content
Snippets Groups Projects
Commit b8d56625 authored by Matt Wise's avatar Matt Wise
Browse files

Merge remote-tracking branch 'origin/dev' into aws-integration

parents 38e99680 5222d076
No related branches found
No related tags found
1 merge request!191EKS Deploy
Pipeline #61221 failed
......@@ -32,11 +32,11 @@ public class IndexCacheImpl implements IIndexCache<String, Boolean>, AutoCloseab
private ICache<String, Boolean> cache;
private Boolean local;
@Value("${aws.elasticache.cluster.endpoint:null}")
@Value("${aws.elasticache.cluster.endpoint}")
String REDIS_SEARCH_HOST;
@Value("${aws.elasticache.cluster.port:null}")
@Value("${aws.elasticache.cluster.port}")
String REDIS_SEARCH_PORT;
@Value("${aws.elasticache.cluster.key:null}")
@Value("${aws.elasticache.cluster.key}")
String REDIS_SEARCH_KEY;
@Value("${aws.elasticache.cluster.index.expiration}")
String INDEX_CACHE_EXPIRATION;
......
......@@ -29,13 +29,13 @@ import java.util.Map;
@Component
public class SchemaCacheImpl implements ISchemaCache<String, String>, AutoCloseable {
@Value("${aws.elasticache.cluster.endpoint:null}")
@Value("${aws.elasticache.cluster.endpoint}")
String REDIS_SEARCH_HOST;
@Value("${aws.elasticache.cluster.port:null}")
@Value("${aws.elasticache.cluster.port}")
String REDIS_SEARCH_PORT;
@Value("${aws.elasticache.cluster.key:null}")
@Value("${aws.elasticache.cluster.key}")
String REDIS_SEARCH_KEY;
@Value("${aws.elasticache.cluster.schema.expiration:60}")
@Value("${aws.elasticache.cluster.schema.expiration}")
String SCHEMA_CACHE_EXPIRATION;
private ICache<String, String> cache;
private Boolean local = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment