File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
akka-http2-support/src/test/scala/akka/http/impl/engine/http2 Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments