Skip to content

Commit 9d424bf

Browse files
authored
fix some links (#200)
1 parent 48c456c commit 9d424bf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/src/test/scala/docs/http/scaladsl/Http2ClientApp.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ object Http2ClientApp extends App {
5151

5252
dispatch(
5353
HttpRequest(
54-
uri = "https://pekko.apache.org/api/akka/current/akka/actor/typed/scaladsl/index.html",
54+
uri = "https://pekko.apache.org/api/pekko/current/org/apache/pekko/actor/typed/scaladsl/index.html",
5555
headers = headers.`Accept-Encoding`(HttpEncodings.gzip) :: Nil)).onComplete { res =>
5656
println(s"[1] Got index.html: $res")
5757
res.get.entity.dataBytes.runWith(Sink.ignore).onComplete(res => println(s"Finished reading [1] $res"))
@@ -61,13 +61,13 @@ object Http2ClientApp extends App {
6161

6262
dispatch(
6363
HttpRequest(
64-
uri = "https://pekko.apache.org/api/akka/current/index.js",
64+
uri = "https://pekko.apache.org/api/pekko/current/index.js",
6565
headers = /*headers.`Accept-Encoding`(HttpEncodings.gzip) ::*/ Nil)).onComplete { res =>
6666
println(s"[2] Got index.js: $res")
6767
res.get.entity.dataBytes.runWith(Sink.ignore).onComplete(res => println(s"Finished reading [2] $res"))
6868
}
6969

70-
dispatch(HttpRequest(uri = "https://pekko.apache.org/api/akka/current/lib/MaterialIcons-Regular.woff"))
70+
dispatch(HttpRequest(uri = "https://pekko.apache.org/api/pekko/current/lib/MaterialIcons-Regular.woff"))
7171
.flatMap(_.toStrict(1.second))
7272
.onComplete(res => println(s"[3] Got font: $res"))
7373

http-core/src/main/scala/org/apache/pekko/http/impl/util/StageLoggingWithOverride.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
/*
1111
* Copyright (C) 2017-2022 Lightbend Inc. <https://www.lightbend.com>
1212
*
13-
* Copied and adapted from pekko-remote
14-
* https://github.com/apache/incubator-pekko/blob/c90121485fcfc44a3cee62a0c638e1982d13d812/akka-remote/src/main/scala/akka/remote/artery/StageLogging.scala
13+
* Copied and adapted from pekko-stream
14+
* https://github.com/apache/incubator-pekko/blob/bd1af56fcead435cb3d730e759223dcb2b0fb4c6/stream/src/main/scala/org/apache/pekko/stream/stage/StageLogging.scala
1515
*/
1616

1717
package org.apache.pekko.http.impl.util

0 commit comments

Comments
 (0)