Skip to content

Commit d060aa5

Browse files
committed
Fixed issue with reconnecting plugin after disconnect
1 parent 84f0784 commit d060aa5

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

devicehive-plugin/src/main/java/com/devicehive/service/PluginRegisterService.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,7 @@ private CompletableFuture<PluginVO> updatePlugin(PluginVO existingPlugin, Plugin
234234
if (existingPlugin.getStatus().equals(PluginStatus.ACTIVE)) {
235235
request = pluginUpdateQuery.toRequest(filterService);
236236
request.setSubscriptionId(existingPlugin.getSubscriptionId());
237+
((PluginSubscribeRequest) request).setTopicName(existingPlugin.getTopicName());
237238
} else {
238239
request = new PluginUnsubscribeRequest(existingPlugin.getSubscriptionId(), existingPlugin.getTopicName());
239240
}
@@ -265,7 +266,7 @@ private JsonObject createTokenResponse(String topicName, JwtTokenVO jwtTokenVO)
265266

266267
response.addProperty("accessToken", jwtTokenVO.getAccessToken());
267268
response.addProperty("refreshToken", jwtTokenVO.getRefreshToken());
268-
response.addProperty("proxyEndpoint", webSocketKafkaProxyConfig.getProxyConnect());
269+
response.addProperty("proxyEndpoint", webSocketKafkaProxyConfig.getProxyPluginConnect());
269270
response.addProperty("topicName", topicName);
270271

271272
return response;

devicehive-plugin/src/main/resources/application.properties

+5-1
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,8 @@ jwt.access-token-max-age=1800000
6262
health.initial.delay=300000
6363

6464
#auth service link
65-
auth.base.url=http://localhost:8090/dh/rest
65+
auth.base.url=http://localhost:8090/dh/rest
66+
67+
#proxy link
68+
proxy.connect=localhost:3000
69+
proxy.plugin.connect=localhost:3001

devicehive-proxy-ws-kafka-impl/src/main/java/com/devicehive/proxy/config/WebSocketKafkaProxyConfig.java

+7
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ public class WebSocketKafkaProxyConfig {
3131
@Value("${proxy.connect:localhost:3000}")
3232
private String proxyConnect;
3333

34+
@Value("${proxy.plugin.connect:localhost:3001}")
35+
private String proxyPluginConnect;
36+
3437
@Value("${proxy.request-consumer.group:request-consumer-group}")
3538
private String consumerGroup;
3639

@@ -50,6 +53,10 @@ public String getProxyConnect() {
5053
return proxyConnect;
5154
}
5255

56+
public String getProxyPluginConnect() {
57+
return proxyPluginConnect;
58+
}
59+
5360
public String getConsumerGroup() {
5461
return consumerGroup;
5562
}

0 commit comments

Comments
 (0)