From 1828cd854cc2b0da1b99a7e97f4d25663681bd66 Mon Sep 17 00:00:00 2001 From: mohammed jasem alaajel Date: Mon, 25 Jul 2022 20:04:21 +0400 Subject: [PATCH] add config option for later use --- RedisBungee-API/src/main/resources/config.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/RedisBungee-API/src/main/resources/config.yml b/RedisBungee-API/src/main/resources/config.yml index 43fecf2..28fa02e 100644 --- a/RedisBungee-API/src/main/resources/config.yml +++ b/RedisBungee-API/src/main/resources/config.yml @@ -40,6 +40,13 @@ useSSL: false # An identifier for this BungeeCord / Velocity instance. Will randomly generate if leaving it blank. proxy-id: "test-1" +# In version 0.8.0 Internally now uses JedisPooled instead of Jedis, JedisPool. +# which will break compatibility with old plugins that uses RedisBungee JedisPool +# so to mitigate this issue, we will instruct RedisBungee to init an JedisPool for compatibility reasons. +# enabled by default +# ignored when cluster mode is enabled +enable-jedis-pool-compatibility: true + # Register redis bungee legacy commands # if this disabled override-bungee-commands will be ignored register-legacy-commands: false