Browse Source

storage/backend: extend wait timeout for commit to finish

It needs to take more time on travis. Fix:

```
--- FAIL: TestBackendBatchIntervalCommit (0.01s)
		backend_test.go:113: bucket test does not exit
```
Yicheng Qin 10 years ago
parent
commit
f7efbe8b14
1 changed files with 2 additions and 0 deletions
  1. 2 0
      storage/backend/backend_test.go

+ 2 - 0
storage/backend/backend_test.go

@@ -105,6 +105,8 @@ func TestBackendBatchIntervalCommit(t *testing.T) {
 	// give time for batch interval commit to happen
 	// give time for batch interval commit to happen
 	time.Sleep(time.Nanosecond)
 	time.Sleep(time.Nanosecond)
 	testutil.WaitSchedule()
 	testutil.WaitSchedule()
+	// give time for commit to finish, including possible disk IO
+	time.Sleep(50 * time.Millisecond)
 
 
 	// check whether put happens via db view
 	// check whether put happens via db view
 	b.db.View(func(tx *bolt.Tx) error {
 	b.db.View(func(tx *bolt.Tx) error {