You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@eventmesh.apache.org by mi...@apache.org on 2022/12/02 11:20:11 UTC

[incubator-eventmesh] branch master updated: add final modifier in WorkflowExpressAsyncSubscribe.java

This is an automated email from the ASF dual-hosted git repository.

mikexue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-eventmesh.git


The following commit(s) were added to refs/heads/master by this push:
     new 1f9c12b60 add final modifier in WorkflowExpressAsyncSubscribe.java
     new de92497c6 Merge pull request #2396 from MajorHe1/MajorHe1-patch-7
1f9c12b60 is described below

commit 1f9c12b602956193b7107e266a2342b280904aa9
Author: MajorHe1 <53...@users.noreply.github.com>
AuthorDate: Fri Dec 2 15:38:42 2022 +0800

    add final modifier in WorkflowExpressAsyncSubscribe.java
---
 .../org/apache/eventmesh/grpc/sub/WorkflowExpressAsyncSubscribe.java   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/eventmesh-examples/src/main/java/org/apache/eventmesh/grpc/sub/WorkflowExpressAsyncSubscribe.java b/eventmesh-examples/src/main/java/org/apache/eventmesh/grpc/sub/WorkflowExpressAsyncSubscribe.java
index e01359877..bed1ec61f 100644
--- a/eventmesh-examples/src/main/java/org/apache/eventmesh/grpc/sub/WorkflowExpressAsyncSubscribe.java
+++ b/eventmesh-examples/src/main/java/org/apache/eventmesh/grpc/sub/WorkflowExpressAsyncSubscribe.java
@@ -42,7 +42,8 @@ import lombok.extern.slf4j.Slf4j;
 @Slf4j
 public class WorkflowExpressAsyncSubscribe implements ReceiveMsgHook<EventMeshMessage> {
 
-    public static WorkflowExpressAsyncSubscribe handler = new WorkflowExpressAsyncSubscribe();
+    public static final WorkflowExpressAsyncSubscribe handler = new WorkflowExpressAsyncSubscribe();
+    
     public static EventMeshWorkflowClient workflowClient;
 
     public static void main(String[] args) throws Exception {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@eventmesh.apache.org
For additional commands, e-mail: commits-help@eventmesh.apache.org