Commit 5ef3e1c9 authored by zhiguo.liu's avatar zhiguo.liu

# 修复 ChannelPool 对 Port 的错误判断

# 修改 Deploy 时的上传 Jar 包的方式
# 升级 Pom 的 version。
parent 6360e950
......@@ -6,7 +6,7 @@
<groupId>cn.quantgroup</groupId>
<artifactId>fund-manage-sdk</artifactId>
<version>1.0.6-SNAPSHOT</version>
<version>1.0.9</version>
<packaging>jar</packaging>
<name>sdk:fundmanage</name>
......@@ -84,10 +84,15 @@
<id>release</id>
<distributionManagement>
<repository>
<id>releases</id>
<id>Releases</id>
<name>Releases Repository</name>
<url>http://repo.quantgroup.cn/nexus/content/repositories/lkb-releases/</url>
</repository>
<snapshotRepository>
<id>Snapshots</id>
<name>Snapshots Repository</name>
<url>http://repo.quantgroup.cn/nexus/content/repositories/lkb-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<build>
<resources>
......
......@@ -59,7 +59,7 @@ public class ChannelPool {
if(mqConfig.getHost() != null || !"".equals(mqConfig.getHost().trim()) ){
rabbitHost = mqConfig.getHost();
}
if(mqConfig.getPort() < 0){
if(mqConfig.getPort() > 0){
rabbitPort = mqConfig.getPort();
}
if(mqConfig.getUser() != null || !"".equals(mqConfig.getUser().trim()) ){
......
Markdown is supported
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