From 46695a04cd24785ae2e25ad73df8829f8ebe2e46 Mon Sep 17 00:00:00 2001 From: Nikhil Sinha Date: Thu, 6 Jun 2024 19:49:21 +0530 Subject: [PATCH] query duration change for historical ingestions --- test_utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_utils.go b/test_utils.go index 4ace707..7e4ca79 100644 --- a/test_utils.go +++ b/test_utils.go @@ -269,7 +269,7 @@ func QueryLogStreamCount_Historical(t *testing.T, client HTTPClient, stream stri // Query last 30 minutes of data only now := time.Now() startTime := now.AddDate(0, 0, -32).Format(time.RFC3339Nano) - endTime := now.AddDate(0, 0, -30).Format(time.RFC3339Nano) + endTime := now.AddDate(0, 0, -29).Format(time.RFC3339Nano) query := map[string]interface{}{ "query": "select count(*) as count from " + stream,