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

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


The following commit(s) were added to refs/heads/main by this push:
     new fbd5e91e2 Update pekko and remove ByteString Scala 2.12 workaround
fbd5e91e2 is described below

commit fbd5e91e2ba38c0ffcb794b7c238a0f6a0ce3fc8
Author: Matthew de Detrich <[email protected]>
AuthorDate: Wed Mar 22 09:25:01 2023 +0100

    Update pekko and remove ByteString Scala 2.12 workaround
---
 file/src/test/scala/docs/scaladsl/ExecutableUtils.scala | 2 +-
 project/Dependencies.scala                              | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/file/src/test/scala/docs/scaladsl/ExecutableUtils.scala 
b/file/src/test/scala/docs/scaladsl/ExecutableUtils.scala
index f27949dfa..79ebe9f43 100644
--- a/file/src/test/scala/docs/scaladsl/ExecutableUtils.scala
+++ b/file/src/test/scala/docs/scaladsl/ExecutableUtils.scala
@@ -59,7 +59,7 @@ object ExecutableUtils {
 
   private def readStream(stream: InputStream): ByteString = {
     val reader = new BufferedInputStream(stream)
-    try ByteString(Iterator.continually(reader.read).takeWhile(_ != 
-1).map(_.toByte).toArray)
+    try ByteString(Iterator.continually(reader.read).takeWhile(_ != 
-1).map(_.toByte))
     finally reader.close()
   }
 
diff --git a/project/Dependencies.scala b/project/Dependencies.scala
index 57662e033..a80e2369d 100644
--- a/project/Dependencies.scala
+++ b/project/Dependencies.scala
@@ -18,7 +18,7 @@ object Dependencies {
   val Scala212 = "2.12.17"
   val ScalaVersions = Seq(Scala213, Scala212)
 
-  val PekkoVersion = "0.0.0+26621-44d03df6-SNAPSHOT"
+  val PekkoVersion = "0.0.0+26623-85c2a469-SNAPSHOT"
   val AkkaBinaryVersion = "2.6"
 
   val InfluxDBJavaVersion = "2.15"


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

Reply via email to