yh2388 opened a new issue #3962: URL: https://github.com/apache/incubator-dolphinscheduler/issues/3962
Now, LoggerService.queryLog() return `StringBuilder` type, ProcessInstanceService.addDependResultForTaskList() conversion error: ```java String log = (String) logResult.getData(); ``` Revised as: ```java String log = logResult.getData().toString(); ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
