mirror of
https://github.com/OpenBankProject/OBP-API.git
synced 2026-02-06 19:36:50 +00:00
bugfix/Correct one of the identical sub-expressions on both sides this operator
This commit is contained in:
parent
237a090e37
commit
9fc8ce894f
@ -92,7 +92,7 @@ trait AtmsProvider {
|
||||
getAtmsFromProvider(bankId,queryParams) match {
|
||||
case Some(atms) => {
|
||||
val atmsWithLicense = for {
|
||||
branch <- atms if branch.meta.license.name.size > 3 && branch.meta.license.name.size > 3
|
||||
branch <- atms if branch.meta.license.name.size > 3
|
||||
} yield branch
|
||||
Option(atmsWithLicense)
|
||||
}
|
||||
|
||||
@ -1037,8 +1037,6 @@ trait KafkaMappedConnector_vJune2017 extends Connector with KafkaHelper with Mdc
|
||||
} yield {
|
||||
(transaction,callContext)
|
||||
}
|
||||
case Full((data,status,callContext)) if (status.errorCode!="") =>
|
||||
Failure("INTERNAL-"+ status.errorCode+". + CoreBank-Status:"+ status.backendMessages)
|
||||
case Empty =>
|
||||
Failure(ErrorMessages.InvalidConnectorResponse, Empty, Empty)
|
||||
case Failure(msg, e, c) =>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user