Browse Source

Merge pull request #3548 from yichengq/travis

storage/backend: extend wait timeout for commit to finish
Yicheng Qin 10 years ago
parent
commit
97b67fdbfc
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
 	time.Sleep(time.Nanosecond)
 	testutil.WaitSchedule()
+	// give time for commit to finish, including possible disk IO
+	time.Sleep(50 * time.Millisecond)
 
 	// check whether put happens via db view
 	b.db.View(func(tx *bolt.Tx) error {