ruanwenjun edited a comment on issue #6000: URL: https://github.com/apache/dolphinscheduler/issues/6000#issuecomment-902400983
@SbloodyS Sorry, this is a bug, there are two solutions to solve 1. You can edit the AbstractCommandExecutor line 102 ```java this.logBuffer = new LinkedBlockingQueue<>(Constants.DEFAULT_LOG_BUFFER_SIZE); ``` to ```java this.logBuffer = new LinkedBlockingQueue<>(); ``` 2. You can modify all `logBuffer.add()` in `AbstractCommandExecutor` and use `logBuffer.put()` -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
