From a2a42eab33bbe68e2dd89f4cef9fb960af9bdce5 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Sat, 27 Jan 2024 17:45:47 +0100 Subject: [PATCH] fix bug in docs that uses akka names for configs (#1057) --- .../src/main/scala/org/apache/pekko/stream/javadsl/Flow.scala | 2 +- .../src/main/scala/org/apache/pekko/stream/javadsl/Source.scala | 2 +- .../main/scala/org/apache/pekko/stream/javadsl/SubFlow.scala | 2 +- .../main/scala/org/apache/pekko/stream/javadsl/SubSource.scala | 2 +- .../src/main/scala/org/apache/pekko/stream/scaladsl/Flow.scala | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/stream/src/main/scala/org/apache/pekko/stream/javadsl/Flow.scala b/stream/src/main/scala/org/apache/pekko/stream/javadsl/Flow.scala index 92accbddd0..c48f246983 100755 --- a/stream/src/main/scala/org/apache/pekko/stream/javadsl/Flow.scala +++ b/stream/src/main/scala/org/apache/pekko/stream/javadsl/Flow.scala @@ -801,7 +801,7 @@ final class Flow[In, Out, Mat](delegate: scaladsl.Flow[In, Out, Mat]) extends Gr * * Adheres to the [[ActorAttributes.SupervisionStrategy]] attribute. * - * You can configure the default dispatcher for this Source by changing the `akka.stream.materializer.blocking-io-dispatcher` or + * You can configure the default dispatcher for this Source by changing the `pekko.stream.materializer.blocking-io-dispatcher` or * set it for a given Source by using [[ActorAttributes]]. * * '''Emits when''' the mapping function returns an element and downstream is ready to consume it diff --git a/stream/src/main/scala/org/apache/pekko/stream/javadsl/Source.scala b/stream/src/main/scala/org/apache/pekko/stream/javadsl/Source.scala index a2cdc6def3..43125ade66 100755 --- a/stream/src/main/scala/org/apache/pekko/stream/javadsl/Source.scala +++ b/stream/src/main/scala/org/apache/pekko/stream/javadsl/Source.scala @@ -2514,7 +2514,7 @@ final class Source[Out, Mat](delegate: scaladsl.Source[Out, Mat]) extends Graph[ * * Adheres to the [[ActorAttributes.SupervisionStrategy]] attribute. * - * You can configure the default dispatcher for this Source by changing the `akka.stream.materializer.blocking-io-dispatcher` or + * You can configure the default dispatcher for this Source by changing the `pekko.stream.materializer.blocking-io-dispatcher` or * set it for a given Source by using [[ActorAttributes]]. * * '''Emits when''' the mapping function returns an element and downstream is ready to consume it diff --git a/stream/src/main/scala/org/apache/pekko/stream/javadsl/SubFlow.scala b/stream/src/main/scala/org/apache/pekko/stream/javadsl/SubFlow.scala index 1afa33569b..8fa5662ab8 100755 --- a/stream/src/main/scala/org/apache/pekko/stream/javadsl/SubFlow.scala +++ b/stream/src/main/scala/org/apache/pekko/stream/javadsl/SubFlow.scala @@ -258,7 +258,7 @@ class SubFlow[In, Out, Mat]( * * Adheres to the [[ActorAttributes.SupervisionStrategy]] attribute. * - * You can configure the default dispatcher for this Source by changing the `akka.stream.materializer.blocking-io-dispatcher` or + * You can configure the default dispatcher for this Source by changing the `pekko.stream.materializer.blocking-io-dispatcher` or * set it for a given Source by using [[ActorAttributes]]. * * '''Emits when''' the mapping function returns an element and downstream is ready to consume it diff --git a/stream/src/main/scala/org/apache/pekko/stream/javadsl/SubSource.scala b/stream/src/main/scala/org/apache/pekko/stream/javadsl/SubSource.scala index 0faa7e0d5e..f64f003a9c 100755 --- a/stream/src/main/scala/org/apache/pekko/stream/javadsl/SubSource.scala +++ b/stream/src/main/scala/org/apache/pekko/stream/javadsl/SubSource.scala @@ -249,7 +249,7 @@ class SubSource[Out, Mat]( * * Adheres to the [[ActorAttributes.SupervisionStrategy]] attribute. * - * You can configure the default dispatcher for this Source by changing the `akka.stream.materializer.blocking-io-dispatcher` or + * You can configure the default dispatcher for this Source by changing the `pekko.stream.materializer.blocking-io-dispatcher` or * set it for a given Source by using [[ActorAttributes]]. * * '''Emits when''' the mapping function returns an element and downstream is ready to consume it diff --git a/stream/src/main/scala/org/apache/pekko/stream/scaladsl/Flow.scala b/stream/src/main/scala/org/apache/pekko/stream/scaladsl/Flow.scala index da519cf81b..d328a8ebb2 100755 --- a/stream/src/main/scala/org/apache/pekko/stream/scaladsl/Flow.scala +++ b/stream/src/main/scala/org/apache/pekko/stream/scaladsl/Flow.scala @@ -1116,7 +1116,7 @@ trait FlowOps[+Out, +Mat] { * * Adheres to the [[ActorAttributes.SupervisionStrategy]] attribute. * - * You can configure the default dispatcher for this Source by changing the `akka.stream.materializer.blocking-io-dispatcher` or + * You can configure the default dispatcher for this Source by changing the `pekko.stream.materializer.blocking-io-dispatcher` or * set it for a given Source by using [[ActorAttributes]]. * * '''Emits when''' the mapping function returns an element and downstream is ready to consume it