You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@eventmesh.apache.org by ma...@apache.org on 2022/10/26 02:38:16 UTC

[incubator-eventmesh] branch master updated: fix:field isnt final but should be

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

majorhe 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 3b704776 fix:field isnt final but should be
     new a139d64e Merge pull request #1868 from YX-XiaoBai/master
3b704776 is described below

commit 3b704776a71b78d2fb9835bf2e23aac4c48a451f
Author: chenronghua <46...@qq.com>
AuthorDate: Tue Oct 25 21:22:53 2022 +0800

    fix:field isnt final but should be
---
 .../pravega/config/PravegaConnectorConfig.java         | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/eventmesh-connector-plugin/eventmesh-connector-pravega/src/main/java/org/apache/eventmesh/connector/pravega/config/PravegaConnectorConfig.java b/eventmesh-connector-plugin/eventmesh-connector-pravega/src/main/java/org/apache/eventmesh/connector/pravega/config/PravegaConnectorConfig.java
index e56e8fa6..2954db4c 100644
--- a/eventmesh-connector-plugin/eventmesh-connector-pravega/src/main/java/org/apache/eventmesh/connector/pravega/config/PravegaConnectorConfig.java
+++ b/eventmesh-connector-plugin/eventmesh-connector-pravega/src/main/java/org/apache/eventmesh/connector/pravega/config/PravegaConnectorConfig.java
@@ -27,15 +27,15 @@ import lombok.Setter;
 @Getter
 @Setter
 public class PravegaConnectorConfig {
-    public static String EVENTMESH_PRAVEGA_CONTROLLER_URI = "eventMesh.server.pravega.controller.uri";
-    public static String EVENTMESH_PRAVEGA_SCOPE = "eventMesh.server.pravega.scope";
-    public static String EVENTMESH_PRAVEGA_AUTH_ENABLED = "eventMesh.server.pravega.authEnabled";
-    public static String EVENTMESH_PRAVEGA_USERNAME = "eventMesh.server.pravega.username";
-    public static String EVENTMESH_PRAVEGA_PASSWORD = "eventMesh.server.pravega.password";
-    public static String EVENTMESH_PRAVEGA_TLS_ENABLED = "eventMesh.server.pravega.tlsEnabled";
-    public static String EVENTMESH_PRAVEGA_TRUSTSTORE = "eventMesh.server.pravega.truststore";
-    public static String EVENTMESH_PRAVEGA_CLIENTPOOL_SIZE = "eventMesh.server.pravega.clientPool.size";
-    public static String EVENTMESH_PRAVEGA_QUEUE_SIZE = "eventMesh.server.pravega.queue.size";
+    public static final String EVENTMESH_PRAVEGA_CONTROLLER_URI = "eventMesh.server.pravega.controller.uri";
+    public static final String EVENTMESH_PRAVEGA_SCOPE = "eventMesh.server.pravega.scope";
+    public static final String EVENTMESH_PRAVEGA_AUTH_ENABLED = "eventMesh.server.pravega.authEnabled";
+    public static final String EVENTMESH_PRAVEGA_USERNAME = "eventMesh.server.pravega.username";
+    public static final String EVENTMESH_PRAVEGA_PASSWORD = "eventMesh.server.pravega.password";
+    public static final String EVENTMESH_PRAVEGA_TLS_ENABLED = "eventMesh.server.pravega.tlsEnabled";
+    public static final String EVENTMESH_PRAVEGA_TRUSTSTORE = "eventMesh.server.pravega.truststore";
+    public static final String EVENTMESH_PRAVEGA_CLIENTPOOL_SIZE = "eventMesh.server.pravega.clientPool.size";
+    public static final String EVENTMESH_PRAVEGA_QUEUE_SIZE = "eventMesh.server.pravega.queue.size";
 
     private URI controllerURI = URI.create("tcp://127.0.0.1:9090");
     private String scope = "eventmesh-pravega";


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