Skip to content

Commit

Permalink
fix: regression introduced in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
slandelle committed May 2, 2024
1 parent 02efa0c commit 7858e50
Showing 1 changed file with 4 additions and 3 deletions.
Expand Up @@ -222,8 +222,9 @@ final class HttpEngine(
httpClient.flushClientIdChannels(clientId, eventLoop)
}

override def close(): Unit =
override def close(): Unit = {
httpClient.close()
// perform close on system shutdown instead of virtual user termination as it's shared
sharedResolverCache.values().forEach(_.close())
// perform close on system shutdown instead of virtual user termination as it's shared
sharedResolverCache.values().forEach(_.close())
}
}

0 comments on commit 7858e50

Please sign in to comment.