Skip to content

Commit 12f8146

Browse files
query duration change for historical ingestions (#68)
1 parent af9c639 commit 12f8146

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test_utils.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ func QueryLogStreamCount_Historical(t *testing.T, client HTTPClient, stream stri
269269
// Query last 30 minutes of data only
270270
now := time.Now()
271271
startTime := now.AddDate(0, 0, -32).Format(time.RFC3339Nano)
272-
endTime := now.AddDate(0, 0, -30).Format(time.RFC3339Nano)
272+
endTime := now.AddDate(0, 0, -29).Format(time.RFC3339Nano)
273273

274274
query := map[string]interface{}{
275275
"query": "select count(*) as count from " + stream,

0 commit comments

Comments
 (0)