Skip to content

Commit

Permalink
EPMRPP-85418 || Email is not sent to user when the user is deleted by…
Browse files Browse the repository at this point in the history
… the job
  • Loading branch information
APiankouski authored Aug 7, 2023
2 parents 4df7fbc + 14e7fe1 commit 4888d2e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class IndexerServiceClientImpl implements IndexerServiceClient {

@Autowired
public IndexerServiceClientImpl(RabbitMqManagementClient rabbitMqManagementClient,
@Qualifier("rabbitTemplate") RabbitTemplate rabbitTemplate) {
@Qualifier("analyzerRabbitTemplate") RabbitTemplate rabbitTemplate) {
this.rabbitMqManagementClient = rabbitMqManagementClient;
this.rabbitTemplate = rabbitTemplate;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ public void execute() {

private List<UserProject> findUsersAndPersonalProjects() {
MapSqlParameterSource params = new MapSqlParameterSource();
params.addValue("now_ms", System.currentTimeMillis());
params.addValue(RETENTION_PERIOD, lastLoginBorder());

RowMapper<UserProject> rowMapper = (rs, rowNum) -> {
Expand Down

0 comments on commit 4888d2e

Please sign in to comment.