Commit f1bb232d24f0f72799c225a0bb0cf65fb464b4f7
Committed by
Andrew Shvayka
1 parent
06078a31
removed RpcError
Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -518,7 +518,7 @@ class DeviceActorMessageProcessor extends AbstractContextAwareMsgProcessor { |
518 | 518 | String payload = hasError ? responseMsg.getError() : responseMsg.getPayload(); |
519 | 519 | systemContext.getTbCoreDeviceRpcService().processRpcResponseFromDeviceActor( |
520 | 520 | new FromDeviceRpcResponse(requestMd.getMsg().getMsg().getId(), |
521 | - payload, hasError ? RpcError.INTERNAL : null)); | |
521 | + payload, null)); | |
522 | 522 | if (requestMd.getMsg().getMsg().isPersisted()) { |
523 | 523 | RpcStatus status = hasError ? RpcStatus.FAILED : RpcStatus.SUCCESSFUL; |
524 | 524 | JsonNode response; | ... | ... |