From 10e31c4e8c53de2c1c778c332faaf8a92a1d63a4 Mon Sep 17 00:00:00 2001 From: steve-chavez Date: Thu, 15 May 2025 16:38:59 -0500 Subject: [PATCH] nix: clarify output of loadtest jwt --- nix/tools/generate_targets.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nix/tools/generate_targets.py b/nix/tools/generate_targets.py index 347626ab5..a41b3aeef 100644 --- a/nix/tools/generate_targets.py +++ b/nix/tools/generate_targets.py @@ -87,7 +87,8 @@ def main(): sys.exit(1) elapsed = time.time() - start_time - print(f"Created {TOTAL_TARGETS} targets in {args.output} ({elapsed:.2f}s)") + print(f"Created {TOTAL_TARGETS} targets with unique JWTs", end=" ") + print(f"in {args.output} ({elapsed:.2f}s)") if __name__ == "__main__":