Skip to content
This repository has been archived by the owner on Oct 10, 2023. It is now read-only.

v5: Return ExceptionOccurred if an exception occurred

Compare
Choose a tag to compare
@JannikArndt JannikArndt released this 16 Nov 16:40
· 164 commits to master since this release
f368ef5

So far, exceptions like javax.net.ssl.SSLException would have been swallowed. With this release, they are now returned (after the retries are exhausted) as

final case class ExceptionOccurred(exception: Throwable) extends HttpClientFailure

This is a breaking change: Although the class was never used before, it contained an Exception instead of a Throwable.