fix: kv costs (#3231)

This commit is contained in:
Daniel Salazar
2026-06-08 13:32:36 -07:00
committed by GitHub
parent c947c2c989
commit e782fa832e
+2 -2
View File
@@ -20,6 +20,6 @@
// Microcents per underlying DynamoDB capacity unit, as reported by
// SystemKVStore.KVUsage. Cost is `KV_COSTS[op] * usage.<op>`.
export const KV_COSTS = {
'kv:read': 63,
'kv:write': 125,
'kv:read': 17,
'kv:write': 90,
} as const;