Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
fund-manage-sdk
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
QG
fund-manage-sdk
Commits
5ef3e1c9
Commit
5ef3e1c9
authored
Nov 16, 2017
by
zhiguo.liu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
# 修复 ChannelPool 对 Port 的错误判断
# 修改 Deploy 时的上传 Jar 包的方式 # 升级 Pom 的 version。
parent
6360e950
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
pom.xml
pom.xml
+7
-2
ChannelPool.java
src/main/java/cn/quantgroup/fundmanage/ChannelPool.java
+1
-1
No files found.
pom.xml
View file @
5ef3e1c9
...
...
@@ -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>
r
eleases
</id>
<id>
R
eleases
</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>
...
...
src/main/java/cn/quantgroup/fundmanage/ChannelPool.java
View file @
5ef3e1c9
...
...
@@ -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
())
){
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment