Sdf10Executor опечатка в логе
GatewayRequester исключение
This commit is contained in:
parent
c4c2afe72c
commit
71cb78b72c
2 changed files with 5 additions and 1 deletions
|
|
@ -254,7 +254,7 @@ public class Sdf10Executor {
|
|||
)
|
||||
);
|
||||
if (stmt == null) {
|
||||
log.debug("Statement.id {} with type {} not found", statementId, InOutSDfType.type6.getKey());
|
||||
log.debug("Statement.id {} with type {} not found", statementId, InOutSDfType.type10.getKey());
|
||||
return;
|
||||
}
|
||||
requestIsIntendedForSdf10 = true;
|
||||
|
|
|
|||
|
|
@ -69,6 +69,10 @@ public class GatewayRequester extends QueueConsumer implements InitializingBean
|
|||
boolean gatewayReceived = false;
|
||||
gatewayLock.lock();
|
||||
try {
|
||||
if (this.omtId != null) {
|
||||
log.error("om*t.id={} already sent to gateway", this.omtId);
|
||||
throw new IllegalStateException(" forbid reusing GatewayRequester instance in multiple threads");
|
||||
}
|
||||
//send Request
|
||||
AssetOperationListRequest assetOperationListRequest = new AssetOperationListRequest();
|
||||
Collection<AssetOperationRequest> requests = new ArrayList<>();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue