Skip to content

Commit

Permalink
fix bug in EngineConnYarnLogOperator (#4827)
Browse files Browse the repository at this point in the history
* linkis-accessible-executor - fix bug in DefaultOperateService

* linkis-engineconn-manager-server - fix bug in EngineConnYarnLogOperator
  • Loading branch information
Alexkun authored Jul 27, 2023
1 parent 049038a commit c534ada
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@
public class EngineConnYarnLogOperator extends EngineConnLogOperator {
private static final Logger logger = LoggerFactory.getLogger(EngineConnYarnLogOperator.class);

private static final String YARN_LOG_OPERATOR_NAME = "engineConnYarnLog";

@Override
public String[] getNames() {
return new String[] {EngineConnYarnLogOperator.OPERATOR_NAME};
return new String[] {EngineConnYarnLogOperator.YARN_LOG_OPERATOR_NAME};
}

@Override
Expand Down

0 comments on commit c534ada

Please sign in to comment.