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

[TEST ONLY] skip TestMQTTClusterConnectDisconnect... #6218

Merged
merged 1 commit into from
Dec 4, 2024
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
14 changes: 14 additions & 0 deletions server/mqtt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3054,6 +3054,13 @@ func testMQTTConnectDisconnect(t *testing.T, o *Options, clientID string, clean
}

func TestMQTTClusterConnectDisconnectClean(t *testing.T) {
// The purpose of this test was to illustrate and verify
// https://github.com/nats-io/nats-server/pull/4734. Due to its timing
// sensitivity it has never been 100% reliable, prone to flaking on an
// occasional MQTT Connect failure (API timeout?). Skip for now, to reduce
// the flaky noise.
t.Skip()

nServers := 3
cl := createJetStreamClusterWithTemplate(t, testMQTTGetClusterTemplaceNoLeaf(), "MQTT", nServers)
defer cl.shutdown()
Expand All @@ -3069,6 +3076,13 @@ func TestMQTTClusterConnectDisconnectClean(t *testing.T) {
}

func TestMQTTClusterConnectDisconnectPersist(t *testing.T) {
// The purpose of this test was to illustrate and verify
// https://github.com/nats-io/nats-server/pull/4734. Due to its timing
// sensitivity it has never been 100% reliable, prone to flaking on an
// occasional MQTT Connect failure (API timeout?). Skip for now, to reduce
// the flaky noise.
t.Skip()

nServers := 3
cl := createJetStreamClusterWithTemplate(t, testMQTTGetClusterTemplaceNoLeaf(), "MQTT", nServers)
defer cl.shutdown()
Expand Down
Loading