mirror of
https://github.com/OpenBankProject/OBP-API.git
synced 2026-02-06 17:17:09 +00:00
bugfix/tweaked the connector match Regular expression to support star
This commit is contained in:
parent
3818424681
commit
1e7258ecdf
@ -239,9 +239,9 @@ object Helper{
|
||||
/**
|
||||
* Used for version extraction from props string
|
||||
*/
|
||||
val matchKafkaVersion = "kafka_v([0-9a-zA-Z_]+)".r
|
||||
val matchAnyKafka = "^kafka.*$".r
|
||||
val matchAnyStoredProcedure = "^stored_procedure.*$".r
|
||||
val matchKafkaVersion = "kafka_v([0-9a-zA-Z_]+)|^star$".r
|
||||
val matchAnyKafka = "^(kafka.*|star)$|^star$".r
|
||||
val matchAnyStoredProcedure = "^stored_procedure.*$|^star$".r
|
||||
|
||||
/**
|
||||
* change the TimeZone to the current TimeZOne
|
||||
|
||||
Loading…
Reference in New Issue
Block a user