Unverified Commit a65cb481 authored by gabry.wu's avatar gabry.wu Committed by GitHub
Browse files

always send emails no matter there are results (#3015)

* always send emails no matter there are results

* always send emails no matter there are results
parent eef39767
Loading
Loading
Loading
Loading
+3 −10
Original line number Diff line number Diff line
@@ -270,17 +270,10 @@ public class SqlTask extends AbstractTask {
        String result = JSONUtils.toJsonString(resultJSONArray);
        logger.debug("execute sql : {}", result);

        // if there is a result set
        if (!resultJSONArray.isEmpty(null) ) {
            if (StringUtils.isNotEmpty(sqlParameters.getTitle())) {
                sendAttachment(sqlParameters.getTitle(),
                        JSONUtils.toJsonString(resultJSONArray));
            }else{
                sendAttachment(taskExecutionContext.getTaskName() + " query resultsets ",
        sendAttachment(StringUtils.isNotEmpty(sqlParameters.getTitle()) ?
                        sqlParameters.getTitle(): taskExecutionContext.getTaskName() + " query result sets",
                JSONUtils.toJsonString(resultJSONArray));
    }
        }
    }

    /**
     *  pre sql