From 4a13b718d329964e297eef6887110a7d79a5c88d Mon Sep 17 00:00:00 2001 From: Dheeraj Singh Jodha Date: Tue, 11 Aug 2026 18:35:00 +0530 Subject: [PATCH] fix: add --allow-past-effective-time to simple benchmark The simple benchmark uses --effective-time with a past date (2024-12-10) but does not pass --allow-past-effective-time, which is now required since past effective times are rejected by default. Co-Authored-By: Claude Opus 4.6 --- benchmark/simple/simple.go | 1 + 1 file changed, 1 insertion(+) diff --git a/benchmark/simple/simple.go b/benchmark/simple/simple.go index a682155d6..1921ddbaa 100644 --- a/benchmark/simple/simple.go +++ b/benchmark/simple/simple.go @@ -107,6 +107,7 @@ func ec(dir string) func() { "--ignore-rekor", "--effective-time", "2024-12-10T00:00:00Z", + "--allow-past-effective-time", }); err != nil { panic(err) }