Skip to content

Commit

Permalink
Merge branch 'dev-1.10.0-webank' into dev-1.10.0-bug-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
“v_kkhuang” committed Jan 7, 2025
2 parents bff0228 + cc1ae41 commit bd32e93
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ class TaskExecutionServiceImpl
if (null != executor) {
executor.getTaskById(taskId)
} else {
logger.error(s"Executor of taskId : $taskId is not cached.")
logger.info(s"Executor of taskId : $taskId is not cached.")
null
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public boolean canBuild(String labelKey) {

@Override
public Label<?> build(String labelKey, @Nullable Object valueObj) throws LabelErrorException {
if (null != valueObj || valueObj instanceof List) {
if (null != valueObj && valueObj instanceof List) {
try {
List<Label<?>> labels = (List<Label<?>>) valueObj;
return new CombinedLabelImpl(labels);
Expand Down
1 change: 1 addition & 0 deletions linkis-web/src/components/consoleComponent/term.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export default {
watch: {
logs(newVal) {
if (this.terminal && newVal) {
this.terminal.clear()
this.terminal.write(newVal)
setTimeout(() => {
this.terminal.scrollToTop();
Expand Down

0 comments on commit bd32e93

Please sign in to comment.