public void timeout()

in src/main/java/com/netflix/bdp/s3mper/alert/impl/CloudWatchAlertDispatcher.java [226:245]


    public void timeout(String operation, List<Path> paths) {
        lazyInit();
        
        if(reportingDisabled) {
            return;
        }
        
        //TODO: Being over-protective about these timeout messages.
        try {
            sendCloudWatchTimeoutAlert();
        } catch (Exception e) {
            log.error("Failed to send cloud watch timeout alert.", e);
        }
        
        try {
            sendSQSTimeoutMessage(operation);
        } catch (Exception e) {
            log.error("Filed to send SQS timeout message.", e);
        }
    }