Increase pool release conn wait time for CI

No simple way around sleeping for certain tests.
pull/955/head
Jack Christensen 2021-03-04 20:06:15 -06:00
parent f8c43c97ab
commit d245ed47f1
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ import (
// completed. To test something that relies on the actual work for Conn.Release being completed we must simply wait.
// This function wraps the sleep so there is more meaning for the callers.
func waitForReleaseToComplete() {
time.Sleep(5 * time.Millisecond)
time.Sleep(25 * time.Millisecond)
}
type execer interface {