Skip to content

Commit 903b9db

Browse files
committed
Commit
1 parent ea3b3ee commit 903b9db

3 files changed

Lines changed: 6 additions & 0 deletions

File tree

benchmarks/bench/fixed_qps_latency.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
sends requests at a steady rate to measure realistic latency impact.
99
"""
1010

11+
from __future__ import annotations
12+
1113
import json
1214
import os
1315
import subprocess

benchmarks/bench/realistic_workload.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
These simulate production APIs that do actual work (I/O, validation, processing).
1010
"""
1111

12+
from __future__ import annotations
13+
1214
import json
1315
import os
1416
import subprocess

benchmarks/bench/sdk_sampling_rates.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/usr/bin/env python3
22
"""Benchmark: SDK with different sampling rates."""
33

4+
from __future__ import annotations
5+
46
import os
57
import shutil
68
import sys

0 commit comments

Comments
 (0)