Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,10 @@ class DefaultEngineCreateService
}
}
} { case e: Exception =>
logger.error(s"Failed to update metrics for taskId: $taskId", e)
logger.error(
s"Failed to update metrics for taskId: $taskId",
e
)
}
// 9. Add the Label of EngineConn, and add the Alias of engineConn
val engineConnAliasLabel = labelBuilderFactory.createLabel(classOf[AliasServiceInstanceLabel])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,10 @@ class DefaultEngineReuseService extends AbstractEngineService with EngineReuseSe

}
} { case e: Exception =>
logger.error(s"Failed to update metrics for taskId: $taskId", e)
logger.error(
s"Failed to update metrics for taskId: $taskId",
e
)
}
engine
}
Expand Down
Loading