diff options
author | Valery Piashchynski <[email protected]> | 2020-12-01 16:25:42 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-12-01 16:25:42 +0300 |
commit | bc7d58798055db54aa71a3f9ade7ae18a30e017a (patch) | |
tree | 373d83b2d530ad75438d68bc99e5d4929d36b566 /static_pool_test.go | |
parent | f320b5803ef8fda3d0371a2a6de26ee9f66d2d22 (diff) |
Increase allocate timeout for GHA
Diffstat (limited to 'static_pool_test.go')
-rwxr-xr-x | static_pool_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/static_pool_test.go b/static_pool_test.go index 15545e9a..9eb5de15 100755 --- a/static_pool_test.go +++ b/static_pool_test.go @@ -16,8 +16,8 @@ import ( var cfg = PoolConfig{ NumWorkers: int64(runtime.NumCPU()), - AllocateTimeout: time.Second, - DestroyTimeout: time.Second, + AllocateTimeout: time.Second * 5, + DestroyTimeout: time.Second * 5, } func Test_NewPool(t *testing.T) { |