This is an automated email from the ASF dual-hosted git repository. fanningpj pushed a commit to branch pjfanning-patch-1 in repository https://gitbox.apache.org/repos/asf/pekko-connectors.git
commit 0886c9fd938e8d043d729bb88152c08e7b381754 Author: PJ Fanning <[email protected]> AuthorDate: Thu Apr 16 14:39:23 2026 +0200 Ignore tests for file storage and gzipping Updated FtpExamplesSpec to ignore tests for storing and gzipping files due to an open issue. --- ftp/src/test/scala/docs/scaladsl/FtpExamplesSpec.scala | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ftp/src/test/scala/docs/scaladsl/FtpExamplesSpec.scala b/ftp/src/test/scala/docs/scaladsl/FtpExamplesSpec.scala index d15788478..d15209392 100644 --- a/ftp/src/test/scala/docs/scaladsl/FtpExamplesSpec.scala +++ b/ftp/src/test/scala/docs/scaladsl/FtpExamplesSpec.scala @@ -64,7 +64,8 @@ class FtpExamplesSpec } "a file" should { - "be stored" in assertAllStagesStopped { + // https://github.com/apache/pekko-connectors/issues/1581 open to try to get this fixed + "be stored" ignore assertAllStagesStopped { // #storing import org.apache.pekko import pekko.stream.IOResult @@ -85,7 +86,8 @@ class FtpExamplesSpec } - "be gzipped" in assertAllStagesStopped { + // https://github.com/apache/pekko-connectors/issues/1581 open to try to get this fixed + "be gzipped" ignore assertAllStagesStopped { import pekko.stream.IOResult import pekko.stream.connectors.ftp.scaladsl.Ftp import pekko.util.ByteString --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
