We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dfaab2 commit 222f62cCopy full SHA for 222f62c
lib/idp_common_pkg/idp_common/utils/lambda_metering.py
@@ -63,8 +63,8 @@ def calculate_lambda_metering(
63
memory_gb = memory_mb / 1024.0
64
gb_seconds_raw = memory_gb * duration_seconds
65
66
- # Round GB-seconds to 2 decimal places for cleaner output
67
- gb_seconds = round(gb_seconds_raw, 2)
+ # Round GB-seconds to 1 decimal places for cleaner output
+ gb_seconds = round(gb_seconds_raw, 1)
68
69
# Log the calculated metrics for visibility
70
logger.info(f"Lambda metering for {context_name}: "
0 commit comments