Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -257,9 +257,9 @@ private Map<String, Boolean> extractSourcesWithUpDownStatus(List<UtmDataInputSta
/**
* Check datasource from utm_data_input_status table that are not of type WORKSTATION and
* if any of them are down then create a new alert. This method is a schedule with a delay
* of 1 hour
* of 24 hour
*/
@Scheduled(fixedDelay = 12, timeUnit = TimeUnit.HOURS)
@Scheduled(fixedDelay = 24, timeUnit = TimeUnit.HOURS)
public void checkDatasourceDown() {
final String ctx = CLASSNAME + ".checkDatasourceDown";
try {
Expand Down