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

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


The following commit(s) were added to refs/heads/master by this push:
     new 613914747 [ISSUE #4581]  http demo rely on tcp runtime (#4583)
613914747 is described below

commit 61391474777f932caca8754569a8d62aa2dc91ef
Author: hhuang <[email protected]>
AuthorDate: Mon Nov 27 23:14:27 2023 +0800

    [ISSUE #4581]  http demo rely on tcp runtime (#4583)
    
    * fix : http demo rely on tcp runtime
    
    * fix : grpc demo rely on tcp runtime
---
 .../org/apache/eventmesh/grpc/sub/app/SpringBootDemoApplication.java  | 4 +++-
 .../org/apache/eventmesh/http/demo/sub/SpringBootDemoApplication.java | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git 
a/eventmesh-examples/src/main/java/org/apache/eventmesh/grpc/sub/app/SpringBootDemoApplication.java
 
b/eventmesh-examples/src/main/java/org/apache/eventmesh/grpc/sub/app/SpringBootDemoApplication.java
index 0168b4f72..9162adced 100644
--- 
a/eventmesh-examples/src/main/java/org/apache/eventmesh/grpc/sub/app/SpringBootDemoApplication.java
+++ 
b/eventmesh-examples/src/main/java/org/apache/eventmesh/grpc/sub/app/SpringBootDemoApplication.java
@@ -17,11 +17,13 @@
 
 package org.apache.eventmesh.grpc.sub.app;
 
+import org.apache.eventmesh.connector.spring.config.EventMeshAutoConfiguration;
+
 import org.springframework.boot.SpringApplication;
 import org.springframework.boot.autoconfigure.SpringBootApplication;
 import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
 
-@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
+@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class, 
EventMeshAutoConfiguration.class})
 public class SpringBootDemoApplication {
 
     public static void main(String[] args) {
diff --git 
a/eventmesh-examples/src/main/java/org/apache/eventmesh/http/demo/sub/SpringBootDemoApplication.java
 
b/eventmesh-examples/src/main/java/org/apache/eventmesh/http/demo/sub/SpringBootDemoApplication.java
index 57a4c5baf..9b277e48b 100644
--- 
a/eventmesh-examples/src/main/java/org/apache/eventmesh/http/demo/sub/SpringBootDemoApplication.java
+++ 
b/eventmesh-examples/src/main/java/org/apache/eventmesh/http/demo/sub/SpringBootDemoApplication.java
@@ -17,11 +17,13 @@
 
 package org.apache.eventmesh.http.demo.sub;
 
+import org.apache.eventmesh.connector.spring.config.EventMeshAutoConfiguration;
+
 import org.springframework.boot.SpringApplication;
 import org.springframework.boot.autoconfigure.SpringBootApplication;
 import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
 
-@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
+@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class, 
EventMeshAutoConfiguration.class})
 public class SpringBootDemoApplication {
 
     public static void main(String[] args) {


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to