summaryrefslogtreecommitdiffstats
path: root/integrations
diff options
context:
space:
mode:
Diffstat (limited to 'integrations')
-rw-r--r--integrations/testlogger.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/integrations/testlogger.go b/integrations/testlogger.go
index b2ad257a9b..eed0bf788d 100644
--- a/integrations/testlogger.go
+++ b/integrations/testlogger.go
@@ -13,7 +13,6 @@ import (
"strings"
"sync"
"testing"
- "time"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/queue"
@@ -101,7 +100,7 @@ func PrintCurrentTest(t testing.TB, skip ...int) func() {
}
writerCloser.setT(&t)
return func() {
- if err := queue.GetManager().FlushAll(context.Background(), 20*time.Second); err != nil {
+ if err := queue.GetManager().FlushAll(context.Background(), -1); err != nil {
t.Errorf("Flushing queues failed with error %v", err)
}
_ = writerCloser.Close()