Merge remote-tracking branch 'origin/develop' into test/ERVU-457

* origin/develop:
  fix
  fix
This commit is contained in:
Foat Saliakhov 2025-05-19 09:23:01 +03:00
commit f4028a281c
2 changed files with 4 additions and 1 deletions

View file

@ -1,13 +1,16 @@
package ervu_business_metrics.service;
import ervu_business_metrics.config.KafkaEnabledCondition;
import ervu_business_metrics.dao.FailedAuthDao;
import ervu_business_metrics.model.sso.AuthEventResponse;
import org.springframework.context.annotation.Conditional;
import org.springframework.stereotype.Service;
/**
* @author gulnaz
*/
@Service
@Conditional(KafkaEnabledCondition.class)
public class FailedAuthService {
private final FailedAuthDao failedAuthDao;

View file

@ -39,7 +39,7 @@
<changeSet id="0003" author="adel.ka">
<comment>add shedlock table</comment>
<sql>
CREATE TABLE ervu_business_metrics.shedlock (
CREATE TABLE IF NOT EXISTS ervu_business_metrics.shedlock (
name VARCHAR(255),
lock_until TIMESTAMP WITHOUT TIME ZONE,
locked_at TIMESTAMP WITHOUT TIME ZONE,