We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68b32d6 commit d49d4b5Copy full SHA for d49d4b5
1 file changed
cmd/aws-lambda-rie/handlers.go
@@ -54,7 +54,7 @@ func printEndReports(invokeId string, initDuration string, memorySize string, in
54
"Billed Duration: %.f ms\t"+
55
"Memory Size: %s MB\t"+
56
"Max Memory Used: %s MB\t\n",
57
- invokeId, invokeDuration, math.Ceil(invokeDuration/100)*100, memorySize, memorySize)
+ invokeId, invokeDuration, math.Ceil(invokeDuration), memorySize, memorySize)
58
}
59
60
func InvokeHandler(w http.ResponseWriter, r *http.Request, sandbox Sandbox) {
0 commit comments