Skip to content

Commit

Permalink
test: fixed jedis version for seata-server (#5979)
Browse files Browse the repository at this point in the history
  • Loading branch information
wangliang181230 authored Oct 31, 2023
1 parent 3c8a9e3 commit 459502d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 23 deletions.
1 change: 1 addition & 0 deletions changes/en-us/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Add changes here for all PR submitted to the develop branch.
- [[#5884](https://github.com/seata/seata/pull/5884)] fix dm escaped characters for upper and lower case column names
- [[#5924](https://github.com/seata/seata/pull/5924)] fix zk unit test error
- [[#5931](https://github.com/seata/seata/pull/5931)] fix the issue of missing sentinel password in store redis mode
- [[#5970](https://github.com/seata/seata/pull/5970)] fix some configurations that are not deprecated show "Deprecated"

### optimize:
- [[#5866](https://github.com/seata/seata/pull/5866)] some minor syntax optimization
Expand Down
1 change: 1 addition & 0 deletions changes/zh-cn/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- [[#5884](https://github.com/seata/seata/pull/5884)] 修复达梦前后镜像查询列名都加了引号导致sql异常的问题
- [[#5924](https://github.com/seata/seata/pull/5924)] 修复zk单元测试错误
- [[#5931](https://github.com/seata/seata/pull/5931)] 修复存储redis哨兵模式下哨兵密码缺失的问题
- [[#5970](https://github.com/seata/seata/pull/5970)] 修复某些未弃用的配置显示"已弃用"

### optimize:
- [[#5866](https://github.com/seata/seata/pull/5866)] 一些小的语法优化
Expand Down
8 changes: 0 additions & 8 deletions dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,6 @@
<logstash-logback-encoder.version>6.5</logstash-logback-encoder.version>
<kafka-appender.version>0.2.0-RC2</kafka-appender.version>

<!-- redis -->
<jedis.version>3.8.0</jedis.version>

<!-- # for database -->
<!-- db -->
<mysql.version>5.1.42</mysql.version>
Expand Down Expand Up @@ -390,11 +387,6 @@
<artifactId>apollo-client</artifactId>
<version>${apollo-client.version}</version>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>${jedis.version}</version>
</dependency>
<dependency>
<groupId>com.github.microwww</groupId>
<artifactId>redis-server</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,29 +104,17 @@
{
"name": "seata.transport.rpc-rm-request-timeout",
"type": "java.lang.Long",
"sourceType": "io.seata.spring.boot.autoconfigure.properties.TransportProperties",
"deprecation": {
"level": "error",
"reason": "Please configure to 'seata.transport.rpcRmRequestTimeout'."
}
"sourceType": "io.seata.spring.boot.autoconfigure.properties.TransportProperties"
},
{
"name": "seata.transport.rpc-tm-request-timeout",
"type": "java.lang.Long",
"sourceType": "io.seata.spring.boot.autoconfigure.properties.TransportProperties",
"deprecation": {
"level": "error",
"reason": "Please configure to 'seata.transport.rpcTmRequestTimeout'."
}
"sourceType": "io.seata.spring.boot.autoconfigure.properties.TransportProperties"
},
{
"name": "seata.transport.rpc-tc-request-timeout",
"type": "java.lang.Long",
"sourceType": "io.seata.spring.boot.autoconfigure.properties.TransportProperties",
"deprecation": {
"level": "error",
"reason": "Please configure to 'seata.transport.rpcTcRequestTimeout'."
}
"sourceType": "io.seata.spring.boot.autoconfigure.properties.TransportProperties"
}
],
"hints": [
Expand Down
4 changes: 4 additions & 0 deletions server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
<spring-boot-for-server.version>${spring-boot.version}</spring-boot-for-server.version>
<spring-framework-for-server.version>${spring-framework.version}</spring-framework-for-server.version>
<native-build-tools-plugin.version>0.9.20</native-build-tools-plugin.version>

<!-- jedis version for seata-server -->
<jedis.version>3.8.0</jedis.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -202,6 +205,7 @@
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>${jedis.version}</version>
</dependency>

<dependency>
Expand Down

0 comments on commit 459502d

Please sign in to comment.