You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@eventmesh.apache.org by ch...@apache.org on 2022/10/25 00:12:39 UTC

[incubator-eventmesh] branch master updated: use `false` instead of BOOLEAN.FALSE

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

chenguangsheng 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 93870652 use `false` instead of BOOLEAN.FALSE
     new 9571e51c Merge pull request #1826 from sodaRyCN/fix_issue_1821
93870652 is described below

commit 93870652a0503bbf82cd30a4156ac062a8a89aa3
Author: sodaRyCN <75...@qq.com>
AuthorDate: Mon Oct 24 22:58:31 2022 +0800

    use `false` instead of BOOLEAN.FALSE
---
 .../org/apache/eventmesh/connector/redis/client/RedissonClient.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eventmesh-connector-plugin/eventmesh-connector-redis/src/main/java/org/apache/eventmesh/connector/redis/client/RedissonClient.java b/eventmesh-connector-plugin/eventmesh-connector-redis/src/main/java/org/apache/eventmesh/connector/redis/client/RedissonClient.java
index 14ad3949..62508620 100644
--- a/eventmesh-connector-plugin/eventmesh-connector-redis/src/main/java/org/apache/eventmesh/connector/redis/client/RedissonClient.java
+++ b/eventmesh-connector-plugin/eventmesh-connector-redis/src/main/java/org/apache/eventmesh/connector/redis/client/RedissonClient.java
@@ -45,7 +45,7 @@ public final class RedissonClient {
     public static final Redisson INSTANCE;
 
     static {
-        OBJECT_MAPPER.configure(SerializationFeature.FAIL_ON_EMPTY_BEANS, Boolean.FALSE);
+        OBJECT_MAPPER.configure(SerializationFeature.FAIL_ON_EMPTY_BEANS, false);
 
         INSTANCE = create();
 


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