mirror of
https://github.com/OpenBankProject/OBP-API.git
synced 2026-02-06 15:06:50 +00:00
Temp fix for missing OBP-JVM props for socgen2 jenkins build
This commit is contained in:
parent
77da0efa2a
commit
113c44304d
@ -53,14 +53,14 @@ object ObpJvmMappedConnector extends Connector with Loggable {
|
||||
|
||||
var jvmNorth : JConnector = null
|
||||
|
||||
val responseTopic = Props.get("kafka.response_topic").openOr("Response")
|
||||
val requestTopic = Props.get("kafka.request_topic").openOr("Request")
|
||||
val responseTopic = "Response" //Props.get("kafka.response_topic").openOr("Response")
|
||||
val requestTopic = "Request" ///Props.get("kafka.request_topic").openOr("Request")
|
||||
|
||||
val cfg: Configuration = new SimpleConfiguration(
|
||||
this,
|
||||
"/props/default.props",
|
||||
"/props/production.default.props",
|
||||
responseTopic,
|
||||
"/props/default.props",
|
||||
"/props/production.default.props",
|
||||
requestTopic
|
||||
)
|
||||
val north = new SimpleNorth( cfg )
|
||||
@ -72,7 +72,7 @@ object ObpJvmMappedConnector extends Connector with Loggable {
|
||||
logger.info(s"ObpJvmMappedConnector running")
|
||||
|
||||
// Local TTL Cache
|
||||
val cacheTTL = Props.get("connector.cache.ttl.seconds", "0").toInt
|
||||
val cacheTTL = 0 //Props.get("connector.cache.ttl.seconds", "0").toInt
|
||||
val cachedUser = TTLCache[ObpJvmInboundValidatedUser](cacheTTL)
|
||||
val cachedBank = TTLCache[ObpJvmInboundBank](cacheTTL)
|
||||
val cachedAccount = TTLCache[ObpJvmInboundAccount](cacheTTL)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user