This is an automated email from the ASF dual-hosted git repository.

pjfanning pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko-http.git


The following commit(s) were added to refs/heads/main by this push:
     new 3a43471c2 fix compiler warnings for implicit array to seq conversions 
(#1102)
3a43471c2 is described below

commit 3a43471c2bc38dd6f14aa389ac2ce8ff73bc34e1
Author: PJ Fanning <[email protected]>
AuthorDate: Sat Jun 27 03:00:50 2026 +0100

    fix compiler warnings for implicit array to seq conversions (#1102)
---
 http-core/src/test/scala/org/apache/pekko/testkit/Coroner.scala | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/http-core/src/test/scala/org/apache/pekko/testkit/Coroner.scala 
b/http-core/src/test/scala/org/apache/pekko/testkit/Coroner.scala
index b7b674012..9d0229364 100644
--- a/http-core/src/test/scala/org/apache/pekko/testkit/Coroner.scala
+++ b/http-core/src/test/scala/org/apache/pekko/testkit/Coroner.scala
@@ -152,7 +152,7 @@ object Coroner {
     def dumpAllThreads: Seq[ThreadInfo] = {
       threadMx.dumpAllThreads(
         threadMx.isObjectMonitorUsageSupported,
-        threadMx.isSynchronizerUsageSupported)
+        threadMx.isSynchronizerUsageSupported).toIndexedSeq
     }
 
     def findDeadlockedThreads: (Seq[ThreadInfo], String) = {
@@ -165,7 +165,7 @@ object Coroner {
         (Seq.empty, desc)
       } else {
         val maxTraceDepth = 1000 // Seems deep enough
-        (threadMx.getThreadInfo(ids, maxTraceDepth), desc)
+        (threadMx.getThreadInfo(ids, maxTraceDepth).toIndexedSeq, desc)
       }
     }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to