fix some stray akka refs (#117)
This commit is contained in:
parent
ec68a5280b
commit
0903c6aa86
4 changed files with 8 additions and 8 deletions
|
|
@ -1036,7 +1036,7 @@ private[pekko] class ActorSystemImpl(
|
||||||
throw new IllegalStateException(
|
throw new IllegalStateException(
|
||||||
"The calling code expected that the ActorSystem was initialized but it wasn't yet. " +
|
"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. " +
|
"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 =
|
private lazy val _start: this.type =
|
||||||
try {
|
try {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -27,6 +27,6 @@ object GitHub {
|
||||||
|
|
||||||
def url(v: String): String = {
|
def url(v: String): String = {
|
||||||
val branch = if (v.endsWith("SNAPSHOT")) "main" else "v" + v
|
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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ project-info {
|
||||||
new-tab: false
|
new-tab: false
|
||||||
}
|
}
|
||||||
issues: {
|
issues: {
|
||||||
url: "https://github.com/akka/akka/issues"
|
url: "https://github.com/apache/incubator-pekko/issues"
|
||||||
text: "Github issues"
|
text: "Github issues"
|
||||||
}
|
}
|
||||||
release-notes: {
|
release-notes: {
|
||||||
|
|
@ -20,12 +20,12 @@ project-info {
|
||||||
}
|
}
|
||||||
forums: [
|
forums: [
|
||||||
{
|
{
|
||||||
text: "Lightbend Discuss"
|
text: "Apache Pekko Dev mailing list"
|
||||||
url: "https://discuss.akka.io"
|
url: "https://lists.apache.org/list.html?dev@pekko.apache.org"
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
text: "akka/akka Gitter channel"
|
text: "apache/incubator-pekko discussion"
|
||||||
url: "https://gitter.im/akka/akka"
|
url: "https://github.com/apache/incubator-pekko/discussions"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -100,7 +100,7 @@ trait SourceRef[T] {
|
||||||
final case class TargetRefNotInitializedYetException()
|
final case class TargetRefNotInitializedYetException()
|
||||||
extends IllegalStateException(
|
extends IllegalStateException(
|
||||||
"Internal remote target actor ref not yet resolved, yet attempted to send messages to it. " +
|
"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)
|
final case class StreamRefSubscriptionTimeoutException(msg: String) extends IllegalStateException(msg)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue