This is an automated email from the ASF dual-hosted git repository.

claudio4j pushed a commit to branch claudio4j-patch-1
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit b1ac6ac0bc79dec1bb7f86c685177b4bd9bada74
Author: Claudio Miranda <clau...@claudius.com.br>
AuthorDate: Wed Jun 21 16:03:15 2023 -0300

    Increase log lines to 150 when dumping pod logs in e2e tests
    
    To facilitate analysis, there are situations when the last 50 lines is not 
enough.
---
 e2e/support/util/dump.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/e2e/support/util/dump.go b/e2e/support/util/dump.go
index 64741beb3..741cba2b7 100644
--- a/e2e/support/util/dump.go
+++ b/e2e/support/util/dump.go
@@ -317,7 +317,7 @@ func dumpLogs(ctx context.Context, c client.Client, prefix 
string, ns string, na
 
        if os.Getenv("CAMEL_K_TEST_LOG_LEVEL") != "debug" {
                // If not in debug mode then curtail the dumping of log lines
-               lines := int64(50)
+               lines := int64(150)
                logOptions.TailLines = &lines
        }
 

Reply via email to