Tom

Results 4 comments of Tom

Need to address the following issues from `mimaReportBinaryIssues`: ``` [error] * abstract method update(scala.concurrent.duration.Duration,scala.Function1)Unit in interface akka.http.scaladsl.TimeoutAccess does not have a correspondent in current version [error] filter with: ProblemFilters.exclude[DirectMissingMethodProblem]("akka.http.scaladsl.TimeoutAccess.update") [error]...

I have a PR which I think addresses this use case. It handles last byte time as well @ssgao . Any and all feedback on approach taken welcomed. https://github.com/akka/akka-http/pull/2814/

@ssgao is correct. The approach taken in https://github.com/akka/akka-http/pull/2814 will capture the timing for first byte sent on non-chunked responses. For chunked responses it will capture the time to first byte...

Hey @Crack, thanks for the new example. I tested it out. It looks like it works well for it's intended purpose of capturing entity size 👍 However, the `onComplete` function...