itest+routing: fix flake in runFeeEstimationTestCase

The test used 10s as the timeout value, which can easily cause a timeout
in a slow build so we increase it to 60s.
This commit is contained in:
yyforyongyu
2024-11-03 13:19:19 +08:00
parent 8b8f0c4eb4
commit 4eea2078fb
2 changed files with 3 additions and 2 deletions

View File

@@ -348,7 +348,7 @@ func (p *paymentLifecycle) checkContext(ctx context.Context) error {
if errors.Is(ctx.Err(), context.DeadlineExceeded) {
reason = channeldb.FailureReasonTimeout
log.Warnf("Payment attempt not completed before "+
"timeout, id=%s", p.identifier.String())
"context timeout, id=%s", p.identifier.String())
} else {
reason = channeldb.FailureReasonCanceled
log.Warnf("Payment attempt context canceled, id=%s",