Skip to content

Commit

Permalink
chore: Test case tear down race condition warning #4244 (#4260)
Browse files Browse the repository at this point in the history
  • Loading branch information
johanandren authored May 22, 2023
1 parent 135d644 commit d4dd205
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ abstract class Http2PersistentClientSpec(tls: Boolean) extends AkkaSpecWithMater
akka.http.client.http2.completion-timeout=100ms
""") with ScalaFutures {
override def failOnSevereMessages: Boolean = true
private val notSevere = Set("ChannelReadable", "WriteAck")
private val notSevere = Set("ChannelReadable", "WriteAck",
// previous test case shutting stuff down race condition
// https://github.com/akka/akka-http/issues/4244
"Unexpected termination of TLS actor"
)
override protected def isSevere(event: Logging.LogEvent): Boolean =
event.level <= Logging.WarningLevel &&
// fix for https://github.com/akka/akka-http/issues/3732 / https://github.com/akka/akka/issues/29330
Expand Down

0 comments on commit d4dd205

Please sign in to comment.