mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-04 21:28:00 +08:00
[Task]fix business log using error (#6538)
This commit is contained in:
parent
52a550b6ae
commit
de61d65af2
@ -98,11 +98,6 @@ public class TaskExecuteThread implements Runnable, Delayed {
|
||||
*/
|
||||
private TaskExecutionContextCacheManager taskExecutionContextCacheManager;
|
||||
|
||||
/**
|
||||
* task logger
|
||||
*/
|
||||
private Logger taskLogger;
|
||||
|
||||
/**
|
||||
* alert client server
|
||||
*/
|
||||
@ -143,7 +138,7 @@ public class TaskExecuteThread implements Runnable, Delayed {
|
||||
// check if the OS user exists
|
||||
if (!OSUtils.getUserList().contains(taskExecutionContext.getTenantCode())) {
|
||||
String errorLog = String.format("tenantCode: %s does not exist", taskExecutionContext.getTenantCode());
|
||||
taskLogger.error(errorLog);
|
||||
logger.error(errorLog);
|
||||
responseCommand.setStatus(ExecutionStatus.FAILURE.getCode());
|
||||
responseCommand.setEndTime(new Date());
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user