This is an automated email from the ASF dual-hosted git repository.
caishunfeng pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
The following commit(s) were added to refs/heads/dev by this push:
new 0057cf3 [Improvement][task-plugin] Remove unreasonable log (#8115)
0057cf3 is described below
commit 0057cf3fe7709d85cdb5ac03b06d18ce67fe1900
Author: Shiwen Cheng <[email protected]>
AuthorDate: Mon Jan 24 13:44:43 2022 +0800
[Improvement][task-plugin] Remove unreasonable log (#8115)
---
.../apache/dolphinscheduler/plugin/task/api/AbstractCommandExecutor.java | 1 -
1 file changed, 1 deletion(-)
diff --git
a/dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/AbstractCommandExecutor.java
b/dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/AbstractCommandExecutor.java
index df18ef9..fa8b248 100644
---
a/dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/AbstractCommandExecutor.java
+++
b/dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/AbstractCommandExecutor.java
@@ -314,7 +314,6 @@ public abstract class AbstractCommandExecutor {
getOutputLogService.submit(() -> {
try (BufferedReader inReader = new BufferedReader(new
InputStreamReader(process.getInputStream()))) {
String line;
- logBuffer.add("welcome to use bigdata scheduling system...");
while ((line = inReader.readLine()) != null) {
if (line.startsWith("${setValue(")) {
varPool.append(line, "${setValue(".length(),
line.length() - 2);