Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove system property for net.debug #368

Merged
merged 1 commit into from
Nov 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,8 @@ public boolean isConnected(final @NotNull ClientKey key) {
}

private @NotNull Mqtt5Client connectMqtt5Client(
final @NotNull ConnectOptions connectOptions,
final @Nullable SubscribeOptions subscribeOptions) throws Exception {
final @NotNull ConnectOptions connectOptions, final @Nullable SubscribeOptions subscribeOptions)
throws Exception {
final MqttClientBuilder clientBuilder = createBuilder(connectOptions);
final Mqtt5Client client = clientBuilder.useMqttVersion5()
.advancedConfig()
Expand Down Expand Up @@ -317,9 +317,6 @@ public boolean isConnected(final @NotNull ClientKey key) {
.publishes(MqttGlobalPublishFilter.REMAINING,
buildRemainingMqtt5PublishesCallback(subscribeOptions, client));


System.setProperty("javax.net.debug", "ssl:handshake");

mqtt5Connect(client, connectBuilder.build());

final ClientData clientData = new ClientData(client);
Expand Down
Loading