mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
etcdmain: test wrong heartbeat-interval, election-timeout in TestConfigFileElectionTimeout
Signed-off-by: Gyu-Ho Lee <gyuhox@gmail.com>
This commit is contained in:
parent
cffa130253
commit
c8277e1b02
@ -460,8 +460,19 @@ func TestConfigFileElectionTimeout(t *testing.T) {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
ElectionMs: 60000,
|
ElectionMs: 60000,
|
||||||
|
TickMs: 10000,
|
||||||
errStr: "is too long, and should be set less than",
|
errStr: "is too long, and should be set less than",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
ElectionMs: 100,
|
||||||
|
TickMs: 0,
|
||||||
|
errStr: "--heartbeat-interval must be >0 (set to 0ms)",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
ElectionMs: 0,
|
||||||
|
TickMs: 100,
|
||||||
|
errStr: "--election-timeout must be >0 (set to 0ms)",
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for i, tt := range tests {
|
for i, tt := range tests {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user