mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
fix scripts
Signed-off-by: Tessa Pham <hpham111@bloomberg.net>
This commit is contained in:
parent
649b365937
commit
2b7e1c6f82
@ -652,7 +652,7 @@ function run_pass {
|
||||
local pass="${1}"
|
||||
shift 1
|
||||
log_callout -e "\\n'${pass}' started at $(date)"
|
||||
if "${pass}_pass" "${@}" ; then
|
||||
if "${pass}_pass" "$@" ; then
|
||||
log_success "'${pass}' PASSED and completed at $(date)"
|
||||
return 0
|
||||
else
|
||||
|
@ -248,8 +248,8 @@ func (fkv *fakeKVForCheckCluster) Get(ctx context.Context, key string, opts ...c
|
||||
},
|
||||
},
|
||||
}, nil
|
||||
|
||||
} else if key == clusterMembersKey {
|
||||
}
|
||||
if key == clusterMembersKey {
|
||||
if fkv.getMembersRetries > 0 {
|
||||
fkv.getMembersRetries--
|
||||
// discovery client should retry on error.
|
||||
@ -263,10 +263,9 @@ func (fkv *fakeKVForCheckCluster) Get(ctx context.Context, key string, opts ...c
|
||||
},
|
||||
Kvs: kvs,
|
||||
}, nil
|
||||
} else {
|
||||
fkv.t.Errorf("unexpected key: %s", key)
|
||||
return nil, fmt.Errorf("unexpected key: %s", key)
|
||||
}
|
||||
fkv.t.Errorf("unexpected key: %s", key)
|
||||
return nil, fmt.Errorf("unexpected key: %s", key)
|
||||
}
|
||||
|
||||
func TestCheckCluster(t *testing.T) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user