Fix eval tenant creating issue

try_it
commit 7904f5fc58

@ -214,7 +214,7 @@ public class GenericOTPManagementDAOImpl extends AbstractDAOImpl implements OTPM
+ "SET " + "SET "
+ "OTP_TOKEN = ?, " + "OTP_TOKEN = ?, "
+ "CREATED_AT = ?, " + "CREATED_AT = ?, "
+ "IS_EXPIRED = false" + "IS_EXPIRED = false "
+ "WHERE ID = ?"; + "WHERE ID = ?";
try { try {

@ -91,6 +91,7 @@ public class OTPManagementServiceImpl implements OTPManagementService {
public OneTimePinDTO getRenewedOtpByEmailAndMailType(String email, String emailType) throws OTPManagementException{ public OneTimePinDTO getRenewedOtpByEmailAndMailType(String email, String emailType) throws OTPManagementException{
OneTimePinDTO oneTimePinDTO; OneTimePinDTO oneTimePinDTO;
String newToken = UUID.randomUUID().toString();
try { try {
ConnectionManagerUtil.beginDBTransaction(); ConnectionManagerUtil.beginDBTransaction();
oneTimePinDTO = otpManagementDAO.getOtpDataByEmailAndMailType(email, emailType); oneTimePinDTO = otpManagementDAO.getOtpDataByEmailAndMailType(email, emailType);
@ -100,9 +101,9 @@ public class OTPManagementServiceImpl implements OTPManagementService {
log.error(msg); log.error(msg);
throw new OTPManagementException(msg); throw new OTPManagementException(msg);
} }
otpManagementDAO.restoreOneTimeToken(oneTimePinDTO.getId(), UUID.randomUUID().toString()); otpManagementDAO.restoreOneTimeToken(oneTimePinDTO.getId(), newToken);
ConnectionManagerUtil.commitDBTransaction(); ConnectionManagerUtil.commitDBTransaction();
return oneTimePinDTO;
} catch (DBConnectionException e) { } catch (DBConnectionException e) {
ConnectionManagerUtil.rollbackDBTransaction(); ConnectionManagerUtil.rollbackDBTransaction();
String msg = "Error occurred while getting database connection to validate the given email and email type."; String msg = "Error occurred while getting database connection to validate the given email and email type.";
@ -120,6 +121,8 @@ public class OTPManagementServiceImpl implements OTPManagementService {
} finally { } finally {
ConnectionManagerUtil.closeDBConnection(); ConnectionManagerUtil.closeDBConnection();
} }
oneTimePinDTO.setOtpToken(newToken);
return oneTimePinDTO;
} }
@Override @Override

Loading…
Cancel
Save