Skip to content

Commit

Permalink
MSEARCH-794: fix status setting query
Browse files Browse the repository at this point in the history
  • Loading branch information
mukhiddin-yusuf committed Aug 16, 2024
1 parent eda6901 commit 1e0827d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public void setReindexMergeFailed(List<ReindexEntityType> entityTypes) {

log.info("inTypes: {}", inTypes);
log.info("sql: {}", sql);
jdbcTemplate.update(sql, ReindexStatus.MERGE_FAILED.name(), Timestamp.from(Instant.now()), inTypes);
jdbcTemplate.update(sql, ReindexStatus.MERGE_FAILED.name(), Timestamp.from(Instant.now()));
}

public void saveReindexStatusRecords(List<ReindexStatusEntity> statusRecords) {
Expand Down

0 comments on commit 1e0827d

Please sign in to comment.