Skip to content

Commit

Permalink
Disable telemetry (#846)
Browse files Browse the repository at this point in the history
  • Loading branch information
andsel authored Jul 8, 2024
1 parent 718b4fa commit 38428f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion broker/src/main/java/io/moquette/broker/Server.java
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public void startServer(IConfig config, List<? extends InterceptHandler> handler
final long startTime = System.currentTimeMillis() - start;
LOG.info("Moquette integration has been started successfully in {} ms", startTime);

if (config.boolProp(IConfig.ENABLE_TELEMETRY_NAME, true)) {
if (config.boolProp(IConfig.ENABLE_TELEMETRY_NAME, false)) {
collectAndSendTelemetryDataAsynch(config);
}

Expand Down

0 comments on commit 38428f6

Please sign in to comment.