Skip to content

Commit

Permalink
[MOSIP-35428]Update pom.xml (#399)
Browse files Browse the repository at this point in the history
* [MOSIP-36412]Update pom.xml

Signed-off-by: Janardhan B S <[email protected]>

* [MOSIP-36412]Update pom.xml

Signed-off-by: JanardhanBS-SyncByte <[email protected]>

* [MOSIP-35428]Update pom.xml

Signed-off-by: JanardhanBS-SyncByte <[email protected]>

---------

Signed-off-by: Janardhan B S <[email protected]>
Signed-off-by: JanardhanBS-SyncByte <[email protected]>
Co-authored-by: JanardhanBS-SyncByte <[email protected]>
  • Loading branch information
JanardhanBS-SyncByte and JanardhanBS-SyncByte authored Nov 5, 2024
1 parent cab502c commit f5e99c4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ private void loadKeys(String keyStoreFileName, String alias, String keystorePass
}

try (FileInputStream fileInputStream = new FileInputStream(keyStoreFileName)) {
logger.info("Loading keystore into to local cache :: {}", keystoreFilePath);
logger.info("loading keystore into local cache Path#{} filename#{} ", keystoreFilePath, keyStoreFileName);
KeyStore keystore = KeyStore.getInstance("PKCS12");
keystore.load(fileInputStream, keystorePassword.toCharArray());
privateKeyMap.put(keyStoreFileName, (PrivateKey) keystore.getKey(alias, keystorePassword.toCharArray()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,11 @@ private void doExtractTemplateInfo(BiometricRecord bioRecord) {
if (!isValidBirData(segment))
break;

segment.getBirInfo().setPayload(segment.getBdb());
/**
* use it if required .. removed to get better performance
* MOSIP-35428
* segment.getBirInfo().setPayload(segment.getBdb());
*/
BDBInfo bdbInfo = segment.getBdbInfo();
if (bdbInfo != null) {
// Update the level to processed
Expand Down

0 comments on commit f5e99c4

Please sign in to comment.