From 12f814640485071a55f9e982b82bea82516a3b60 Mon Sep 17 00:00:00 2001 From: Nikhil Sinha <131262146+nikhilsinhaparseable@users.noreply.github.com> Date: Thu, 6 Jun 2024 19:51:28 +0530 Subject: [PATCH] query duration change for historical ingestions (#68) --- 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,