Skip to content

Commit d4dd205

Browse files
authored
chore: Test case tear down race condition warning #4244 (#4260)
1 parent 135d644 commit d4dd205

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

akka-http2-support/src/test/scala/akka/http/impl/engine/http2/Http2PersistentClientSpec.scala

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,11 @@ abstract class Http2PersistentClientSpec(tls: Boolean) extends AkkaSpecWithMater
4444
akka.http.client.http2.completion-timeout=100ms
4545
""") with ScalaFutures {
4646
override def failOnSevereMessages: Boolean = true
47-
private val notSevere = Set("ChannelReadable", "WriteAck")
47+
private val notSevere = Set("ChannelReadable", "WriteAck",
48+
// previous test case shutting stuff down race condition
49+
// https://github.com/akka/akka-http/issues/4244
50+
"Unexpected termination of TLS actor"
51+
)
4852
override protected def isSevere(event: Logging.LogEvent): Boolean =
4953
event.level <= Logging.WarningLevel &&
5054
// fix for https://github.com/akka/akka-http/issues/3732 / https://github.com/akka/akka/issues/29330

0 commit comments

Comments
 (0)