fix some stray akka refs (#117)

This commit is contained in:
PJ Fanning 2023-01-19 18:10:59 +00:00 committed by GitHub
parent ec68a5280b
commit 0903c6aa86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 8 deletions

View file

@ -1036,7 +1036,7 @@ private[pekko] class ActorSystemImpl(
throw new IllegalStateException(
"The calling code expected that the ActorSystem was initialized but it wasn't yet. " +
"This is probably a bug in the ActorSystem initialization sequence often related to initialization of extensions. " +
"Please report at https://github.com/akka/akka/issues.")
"Please report at https://github.com/apache/incubator-pekko/issues.")
private lazy val _start: this.type =
try {

View file

@ -27,6 +27,6 @@ object GitHub {
def url(v: String): String = {
val branch = if (v.endsWith("SNAPSHOT")) "main" else "v" + v
"https://github.com/akka/akka/tree/" + branch
"https://github.com/apache/incubator-pekko/tree/" + branch
}
}

View file

@ -10,7 +10,7 @@ project-info {
new-tab: false
}
issues: {
url: "https://github.com/akka/akka/issues"
url: "https://github.com/apache/incubator-pekko/issues"
text: "Github issues"
}
release-notes: {
@ -20,12 +20,12 @@ project-info {
}
forums: [
{
text: "Lightbend Discuss"
url: "https://discuss.akka.io"
text: "Apache Pekko Dev mailing list"
url: "https://lists.apache.org/list.html?dev@pekko.apache.org"
}
{
text: "akka/akka Gitter channel"
url: "https://gitter.im/akka/akka"
text: "apache/incubator-pekko discussion"
url: "https://github.com/apache/incubator-pekko/discussions"
}
]
}

View file

@ -100,7 +100,7 @@ trait SourceRef[T] {
final case class TargetRefNotInitializedYetException()
extends IllegalStateException(
"Internal remote target actor ref not yet resolved, yet attempted to send messages to it. " +
"This should not happen due to proper flow-control, please open a ticket on the issue tracker: https://github.com/akka/akka")
"This should not happen due to proper flow-control, please open a ticket on the issue tracker: https://github.com/apache/incubator-pekko")
final case class StreamRefSubscriptionTimeoutException(msg: String) extends IllegalStateException(msg)