account service bug fix
This commit is contained in:
parent
868540ffa3
commit
68a10e5f2a
1 changed files with 1 additions and 1 deletions
|
|
@ -342,7 +342,7 @@ public class InformationAccountService extends QueueConsumer implements Initiali
|
||||||
infoCounter = new AtomicLong(1);
|
infoCounter = new AtomicLong(1);
|
||||||
log.debug("No account information on map. n={}", infoCounter.get());
|
log.debug("No account information on map. n={}", infoCounter.get());
|
||||||
} else {
|
} else {
|
||||||
Pattern accPattern = Pattern.compile("39911%s([0-9]{8})\\d".formatted(idWithTrailingZero));
|
Pattern accPattern = Pattern.compile("39911%s([0-9]{8})\\d{4}".formatted(idWithTrailingZero));
|
||||||
int maxN = 1;
|
int maxN = 1;
|
||||||
int parsedCount = 0;
|
int parsedCount = 0;
|
||||||
String lastAccount = null; // for debug
|
String lastAccount = null; // for debug
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue