pjfanning commented on PR #146: URL: https://github.com/apache/incubator-pekko-connectors/pull/146#issuecomment-1584130832
``` [error] -- [E007] Type Mismatch Error: /Users/pj.fanning/code/incubator-pekko-connectors/json-streaming/src/main/scala/org/apache/pekko/stream/connectors/json/impl/JsonStreamReader.scala:52:48 [error] 52 | buffer = buffer.enqueue(ByteString(value.toString)) [error] | ^^^^^^^^^^^^^^^^^^^^^^^^^^ [error] | Found: org.apache.pekko.util.ByteString [error] | Required: Iterable[org.apache.pekko.util.ByteString] [error] | [error] | longer explanation available when compiling with `-explain` [warn] three warnings found [error] one error found [error] (json-streaming / Compile / compileIncremental) Compilation failed ``` There is a deprecated enqueue(Iterable[T]) function and for some reason Scala 3.3.0 compiler ignores the fact enqueue(T) is available. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
