healchow commented on code in PR #4558:
URL: https://github.com/apache/incubator-inlong/pull/4558#discussion_r891167780
##########
inlong-manager/manager-workflow/src/main/java/org/apache/inlong/manager/workflow/core/TransactionHelper.java:
##########
@@ -37,6 +37,7 @@
*/
@Slf4j
@Service
+@Deprecated
Review Comment:
Please add some Java docs for the deprecate reason, thanks.
##########
inlong-manager/manager-workflow/src/main/java/org/apache/inlong/manager/workflow/processor/ServiceTaskProcessor.java:
##########
@@ -77,24 +77,28 @@ public Class<ServiceTask> watch() {
public void create(ServiceTask serviceTask, WorkflowContext context) {
WorkflowTaskEntity workflowTaskEntity = saveTaskEntity(serviceTask,
context);
context.getNewTaskList().add(workflowTaskEntity);
- serviceTask.initListeners(context);
- this.taskEventNotifier.notify(TaskEvent.CREATE, context);
+ try {
+ serviceTask.initListeners(context);
+ this.taskEventNotifier.notify(TaskEvent.CREATE, context);
+ } catch (Exception e) {
+ e.printStackTrace();
Review Comment:
Please use the LOG framework to print the exception stack trance.
--
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]