Browse Source

rpc: increase waitForEventTimeout to 8 seconds (#4917)

## Description

I was able to reproduce this non-determinism locally
After increasing the timeout to 8 seconds from 5 I was not able to reproduce it

Closes: #2856
pull/4919/head
Marko 4 years ago
committed by GitHub
parent
commit
d5a60b0eb0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      rpc/client/event_test.go

+ 1
- 1
rpc/client/event_test.go View File

@ -17,7 +17,7 @@ import (
"github.com/tendermint/tendermint/types"
)
var waitForEventTimeout = 5 * time.Second
var waitForEventTimeout = 8 * time.Second
// MakeTxKV returns a text transaction, allong with expected key, value pair
func MakeTxKV() ([]byte, []byte, []byte) {


Loading…
Cancel
Save