Skip to content
Snippets Groups Projects
Unverified Commit c3a441ce authored by ruan's avatar ruan Committed by GitHub
Browse files

optimize: Modify the attribute prefix in the file file.properties (#3689)

parent c4981491
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
......@@ -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)
......
......@@ -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
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment