In my case I had do add Connection: Close header before sending request to backend service:
Connection: Close
val targetHeaders = HttpHeaders().apply { put("Connection", mutableListOf("Close")) }