lntest: change wait timeout values

This commit is contained in:
yyforyongyu 2022-10-29 00:51:54 +08:00
parent 2bc6aabf96
commit 0e8a525f94
No known key found for this signature in database
GPG key ID: 9BCD95C4FF296868
3 changed files with 7 additions and 7 deletions

View file

@ -24,11 +24,11 @@ const (
// AsyncBenchmarkTimeout is the timeout used when running the async
// payments benchmark.
AsyncBenchmarkTimeout = 2 * time.Minute
AsyncBenchmarkTimeout = time.Minute * 2
// NodeStartTimeout is the timeout value when waiting for a node to
// become fully started.
NodeStartTimeout = time.Second * 120
NodeStartTimeout = time.Minute * 2
// SqliteBusyTimeout is the maximum time that a call to the sqlite db
// will wait for the connection to become available.

View file

@ -16,7 +16,7 @@ const (
// ChannelCloseTimeout is the max time we will wait before a channel is
// considered closed.
ChannelCloseTimeout = time.Second * 30
ChannelCloseTimeout = time.Second * 60
// DefaultTimeout is a timeout that will be used for various wait
// scenarios where no custom timeout value is defined.
@ -29,7 +29,7 @@ const (
// NodeStartTimeout is the timeout value when waiting for a node to
// become fully started.
NodeStartTimeout = time.Second * 120
NodeStartTimeout = time.Minute * 2
// SqliteBusyTimeout is the maximum time that a call to the sqlite db
// will wait for the connection to become available.

View file

@ -16,7 +16,7 @@ const (
// ChannelCloseTimeout is the max time we will wait before a channel is
// considered closed.
ChannelCloseTimeout = time.Second * 120
ChannelCloseTimeout = time.Second * 30
// DefaultTimeout is a timeout that will be used for various wait
// scenarios where no custom timeout value is defined.
@ -24,11 +24,11 @@ const (
// AsyncBenchmarkTimeout is the timeout used when running the async
// payments benchmark.
AsyncBenchmarkTimeout = 3 * time.Minute
AsyncBenchmarkTimeout = time.Minute * 2
// NodeStartTimeout is the timeout value when waiting for a node to
// become fully started.
NodeStartTimeout = time.Second * 120
NodeStartTimeout = time.Minute * 2
// SqliteBusyTimeout is the maximum time that a call to the sqlite db
// will wait for the connection to become available.