reportActivity: return to master
This commit is contained in:
parent
f83c2ee351
commit
7422ec38e1
@ -388,12 +388,6 @@ public abstract class AbstractLwM2MIntegrationTest extends AbstractTransportInte
|
||||
return credentials;
|
||||
}
|
||||
|
||||
private static void awaitClientDestroy(LeshanClient leshanClient) {
|
||||
await("Destroy LeshanClient: delete All is registered Servers.")
|
||||
.atMost(DEFAULT_WAIT_TIMEOUT_SECONDS, TimeUnit.SECONDS)
|
||||
.until(() -> leshanClient.getRegisteredServers().size() == 0);
|
||||
}
|
||||
|
||||
protected void awaitObserveReadAll(int cntObserve, String deviceIdStr) throws Exception {
|
||||
await("ObserveReadAll: countObserve " + cntObserve)
|
||||
.atMost(40, TimeUnit.SECONDS)
|
||||
|
||||
@ -1101,21 +1101,16 @@ public class DefaultTransportService extends TransportActivityManager implements
|
||||
}
|
||||
|
||||
private void sendToCore(TenantId tenantId, EntityId entityId, ToCoreMsg msg, UUID routingKey, TransportServiceCallback<Void> callback) {
|
||||
// TODO remove before PR
|
||||
try {
|
||||
TopicPartitionInfo tpi = partitionService.resolve(ServiceType.TB_CORE, tenantId, entityId);
|
||||
log.trace("[{}][{}] Pushing to topic {} message {}", tenantId, entityId, tpi.getFullTopicName(), msg);
|
||||
if (log.isTraceEnabled()) {
|
||||
log.trace("[{}][{}] Pushing to topic {} message {}", tenantId, entityId, tpi.getFullTopicName(), msg);
|
||||
}
|
||||
|
||||
TransportTbQueueCallback transportTbQueueCallback = callback != null ?
|
||||
new TransportTbQueueCallback(callback) : null;
|
||||
tbCoreProducerStats.incrementTotal();
|
||||
StatsCallback wrappedCallback = new StatsCallback(transportTbQueueCallback, tbCoreProducerStats);
|
||||
tbCoreMsgProducer.send(tpi, new TbProtoQueueMsg<>(routingKey, msg), wrappedCallback);
|
||||
} catch (TenantNotFoundException e) {
|
||||
log.trace("Failed to send message to core. Tenant with ID [{}] not found in the database. Message delivery aborted.", tenantId, e);
|
||||
}
|
||||
}
|
||||
|
||||
private void sendToRuleEngine(TenantId tenantId, DeviceId deviceId, CustomerId customerId, TransportProtos.SessionInfoProto sessionInfo, JsonObject json,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user