Skip to content

Commit 509c706

Browse files
committed
[FAB-3679] Disable brittle TestConnectToAnchorPeers
This test fails from time to time, and I am going to restructure the logic that this test tests as part of https://jira.hyperledger.org/browse/FAB-3109 so most likely would also need to change the test itself. Disabling the test in the meantime, and it will be introduced later when it will be more stable. Change-Id: I8b20a308a7ef60b11f9e7965f8b6ee7380fcf1e8 Signed-off-by: Yacov Manevich <[email protected]>
1 parent 8c4fa8e commit 509c706

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

gossip/gossip/gossip_test.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ func init() {
5353
discovery.SetAliveExpirationCheckInterval(aliveTimeInterval)
5454
discovery.SetAliveExpirationTimeout(aliveTimeInterval * 10)
5555
discovery.SetReconnectInterval(aliveTimeInterval)
56-
testWG.Add(7)
56+
testWG.Add(6)
5757
factory.InitFactories(nil)
5858
identityExpirationCheckInterval = time.Second
5959
}
@@ -359,6 +359,7 @@ func TestPull(t *testing.T) {
359359
}
360360

361361
func TestConnectToAnchorPeers(t *testing.T) {
362+
t.Skip()
362363
t.Parallel()
363364
// Scenario: spawn 10 peers, and have them join a channel
364365
// of 3 anchor peers that don't exist yet.

0 commit comments

Comments
 (0)