You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expect(sess.Err).To(gbytes.Say(`invalid new config metadata: ElectionTick \(10\) must be greater than HeartbeatTick \(10\)`))
245
+
nwo.UpdateOrdererConfigFails(network, orderer, "testchannel", config, updatedConfig, "invalid new config metadata: ElectionTick (10) must be greater than HeartbeatTick (10)", org1Peer0, orderer)
248
246
})
249
247
})
250
248
@@ -455,9 +453,7 @@ var _ = Describe("EndToEnd reconfiguration and onboarding", func() {
Expect(sess.Err).To(gbytes.Say(fmt.Sprintf("BAD_REQUEST -- error applying config update to existing channel 'testchannel': consensus metadata update for channel config update is invalid: invalid new config metadata: consenter %s:%d has invalid certificate: verifying tls client cert with serial number %d: x509: certificate signed by unknown authority", newConsenterHost, newConsenterPort, newConsenterCert.SerialNumber)))
456
+
nwo.UpdateOrdererConfigFails(network, orderer, "testchannel", current, updated, fmt.Sprintf("error applying config update to existing channel 'testchannel': consensus metadata update for channel config update is invalid: invalid new config metadata: consenter %s:%d has invalid certificate: verifying tls client cert with serial number %d: x509: certificate signed by unknown authority", newConsenterHost, newConsenterPort, newConsenterCert.SerialNumber), peer, orderer)
461
457
})
462
458
})
463
459
@@ -1092,11 +1088,7 @@ var _ = Describe("EndToEnd reconfiguration and onboarding", func() {
}, network.EventuallyTimeout).Should(ContainSubstring("2 out of 3 nodes are alive, configuration will result in quorum loss"))
1091
+
nwo.UpdateOrdererConfigFails(network, o2, "testchannel", current, updated, "2 out of 3 nodes are alive, configuration will result in quorum loss", peer, o2)
1100
1092
1101
1093
By("Adding node to 2/3 cluster")
1102
1094
current, updated=consenterAdder(
@@ -1111,9 +1103,7 @@ var _ = Describe("EndToEnd reconfiguration and onboarding", func() {
Expect(string(sess.Err.Contents())).To(ContainSubstring("2 out of 3 nodes are alive, configuration will result in quorum loss"))
1106
+
nwo.UpdateOrdererConfigFails(network, o2, "testchannel", current, updated, "2 out of 3 nodes are alive, configuration will result in quorum loss", peer, o2)
0 commit comments