Commit ea0e59f7d1254096fc50bf4116da7b70b4cd227c

Authored by Andrew Shvayka
1 parent 496286cb

Fixed topic name in RPC response

... ... @@ -132,7 +132,7 @@ public class JsonMqttAdaptor implements MqttTransportAdaptor {
132 132 break;
133 133 case TO_SERVER_RPC_RESPONSE:
134 134 ToServerRpcResponseMsg rpcResponse = (ToServerRpcResponseMsg) msg;
135   - result = createMqttPublishMsg(ctx, MqttTopics.DEVICE_RPC_REQUESTS_TOPIC + rpcResponse.getRequestId(),
  135 + result = createMqttPublishMsg(ctx, MqttTopics.DEVICE_RPC_RESPONSE_TOPIC + rpcResponse.getRequestId(),
136 136 rpcResponse);
137 137 break;
138 138 case RULE_ENGINE_ERROR:
... ...