I am doing a POST request with the following akka http request side api.
Http().singleRequest(....)
I found that akka http for post doesn't support retries.
// max-retries = 3 // AKKA http default value is 5, and it doesn't work for POST request
Then what would be the best approach for doing a retry in case of POST request .