Skip to content

Commit

Permalink
query duration change for historical ingestions (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilsinhaparseable authored Jun 6, 2024
1 parent af9c639 commit 12f8146
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 12f8146

Please sign in to comment.