CritasWang commented on code in PR #14848:
URL: https://github.com/apache/iotdb/pull/14848#discussion_r1959380024
##########
integration-test/src/main/java/org/apache/iotdb/it/env/remote/config/RemoteDataNodeConfig.java:
##########
@@ -48,4 +48,19 @@ public DataNodeConfig
setLoadTsFileAnalyzeSchemaMemorySizeInBytes(
public DataNodeConfig setCompactionScheduleInterval(long
compactionScheduleInterval) {
return this;
}
+
+ @Override
+ public DataNodeConfig setEnableMQTTService(boolean enableMQTTService) {
+ return this;
+ }
+
+ @Override
+ public DataNodeConfig setMqttPayloadFormatter(String mqttPayloadFormatter) {
+ return this;
+ }
+
+ @Override
+ public DataNodeConfig setMqttDataPath(String mqttDataPath) {
Review Comment:
remove unused method
##########
integration-test/src/main/java/org/apache/iotdb/itbase/env/DataNodeConfig.java:
##########
@@ -33,4 +33,10 @@ DataNodeConfig setLoadTsFileAnalyzeSchemaMemorySizeInBytes(
long loadTsFileAnalyzeSchemaMemorySizeInBytes);
DataNodeConfig setCompactionScheduleInterval(long
compactionScheduleInterval);
+
+ DataNodeConfig setEnableMQTTService(boolean enableMQTTService);
+
+ DataNodeConfig setMqttPayloadFormatter(String mqttPayloadFormatter);
+
+ DataNodeConfig setMqttDataPath(String mqttDataPath);
Review Comment:
remove unused method
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]