SEBSERV-238
This commit is contained in:
parent
daeb118210
commit
458cc9486e
1 changed files with 2 additions and 1 deletions
|
@ -267,7 +267,8 @@ public class SEBClientConnectionServiceImpl implements SEBClientConnectionServic
|
||||||
|
|
||||||
// connection integrity check
|
// connection integrity check
|
||||||
if (clientConnection.status == ConnectionStatus.ACTIVE) {
|
if (clientConnection.status == ConnectionStatus.ACTIVE) {
|
||||||
if (clientConnection.clientAddress != null && clientConnection.clientAddress.equals(clientAddress)) {
|
if (clientConnection.clientAddress != null &&
|
||||||
|
(StringUtils.isBlank(clientAddress) || clientConnection.clientAddress.equals(clientAddress))) {
|
||||||
// It seems that this is the same SEB that tries to establish the connection once again.
|
// It seems that this is the same SEB that tries to establish the connection once again.
|
||||||
// Just log this and return already established connection
|
// Just log this and return already established connection
|
||||||
if (log.isDebugEnabled()) {
|
if (log.isDebugEnabled()) {
|
||||||
|
|
Loading…
Reference in a new issue