lntest: increase port timeout

This commit is contained in:
yyforyongyu 2024-12-04 10:46:25 +08:00
parent 33b07be8c3
commit d7f8fa6ab6
No known key found for this signature in database
GPG Key ID: 9BCD95C4FF296868

View File

@ -8,6 +8,8 @@ import (
"strconv"
"sync"
"time"
"github.com/lightningnetwork/lnd/lntest/wait"
)
const (
@ -45,7 +47,7 @@ func NextAvailablePort() int {
defer portFileMutex.Unlock()
lockFile := filepath.Join(os.TempDir(), uniquePortFile+".lock")
timeout := time.After(time.Second)
timeout := time.After(wait.DefaultTimeout)
var (
lockFileHandle *os.File