Skip to content

Commit 1f59da8

Browse files
committed
ease off the throttle
1 parent 64a1653 commit 1f59da8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

relay/gcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ async def write(metrics: List[Neo4j5Metric]) -> None:
206206
# Check if we haven't defined this metric type yet
207207
if not metric.key in _METRICS:
208208
# Don't stampede the creation service. It gets sad :(
209-
if rate_limit == 5:
209+
if rate_limit == 2:
210210
await asyncio.sleep(1)
211211
rate_limit = 0
212212
rate_limit += 1

0 commit comments

Comments
 (0)