diff --git a/changes/1.5.0.md b/changes/1.5.0.md index 47441a74fb339cfd6b0c96bf4fea5682f460bcf0..7fddd99756c731ffce438133c583f0e6ab3fcd5e 100644 --- a/changes/1.5.0.md +++ b/changes/1.5.0.md @@ -31,6 +31,7 @@ Seata 是一款开源的分布式事务解决方案,提供高性能和简单 - [[#3678](https://github.com/seata/seata/pull/3678)] 补充遗漏的配置及新版本pr登记md文件 - [[#3654](https://github.com/seata/seata/pull/3654)] 修正拼写,applicationContex -> applicationContext - [[#3687](https://github.com/seata/seata/pull/3687)] 修复某些场景下无法重试全局锁的问题 +- [[#3689](https://github.com/seata/seata/pull/3689)] 修正script/server/config/file.properties中属性编写错误 ### test: @@ -43,6 +44,7 @@ Seata 是一款开源的分布式事务解决方案,提供高性能和简单 - [a364176773](https://github.com/a364176773) - [drgnchan](https://github.com/drgnchan) - [caohdgege](https://github.com/caohdgege) + - [ruanun](https://github.com/ruanun) diff --git a/changes/en-us/1.5.0.md b/changes/en-us/1.5.0.md index a995778f7d8ff3fb927780d0448e9040a58a8c24..ed081f96cdf0fceadead082fb09c01a546f3891e 100644 --- a/changes/en-us/1.5.0.md +++ b/changes/en-us/1.5.0.md @@ -32,6 +32,7 @@ - [[#3678](https://github.com/seata/seata/pull/3678)] supplement missing configuration and new version documents - [[#3654](https://github.com/seata/seata/pull/3654)] fix typo,applicationContex -> applicationContext - [[#3687](https://github.com/seata/seata/pull/3687)] fix the case that could not retry acquire global lock +- [[#3689](https://github.com/seata/seata/pull/3689)] modify the attribute prefix in the file file.properties ### test: @@ -44,6 +45,7 @@ - [a364176773](https://github.com/a364176773) - [drgnchan](https://github.com/drgnchan) - [caohdgege](https://github.com/caohdgege) + - [ruanun](https://github.com/ruanun) diff --git a/script/server/config/file.properties b/script/server/config/file.properties index 7689e0c7c4f5408daa3b28eb1dfc7b3c733ccd51..c822c96c586a8c09480dd3a67f8f83f27f382d26 100644 --- a/script/server/config/file.properties +++ b/script/server/config/file.properties @@ -20,14 +20,14 @@ store.db.lockTable=lock_table store.db.queryLimit=100 store.db.maxWait=5000 -seata.store.redis.mode=single -seata.store.redis.single.host=127.0.0.1 -seata.store.redis.single.port=6379 -seata.store.redis.sentinel.masterName= -seata.store.redis.sentinel.sentinelHosts= -seata.store.redis.password= -seata.store.redis.database=0 -seata.store.redis.minConn=1 -seata.store.redis.maxConn=10 -seata.store.redis.maxTotal=100 -seata.store.redis.queryLimit=100 +store.redis.mode=single +store.redis.single.host=127.0.0.1 +store.redis.single.port=6379 +store.redis.sentinel.masterName= +store.redis.sentinel.sentinelHosts= +store.redis.password= +store.redis.database=0 +store.redis.minConn=1 +store.redis.maxConn=10 +store.redis.maxTotal=100 +store.redis.queryLimit=100