You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pekko.apache.org by fa...@apache.org on 2023/01/19 18:11:06 UTC

[incubator-pekko] branch main updated: fix some stray akka refs (#117)

This is an automated email from the ASF dual-hosted git repository.

fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-pekko.git


The following commit(s) were added to refs/heads/main by this push:
     new 0903c6aa86 fix some stray akka refs (#117)
0903c6aa86 is described below

commit 0903c6aa86fa022d0a80d3fcfc4641ae88212fc1
Author: PJ Fanning <pj...@users.noreply.github.com>
AuthorDate: Thu Jan 19 18:10:59 2023 +0000

    fix some stray akka refs (#117)
---
 actor/src/main/scala/org/apache/pekko/actor/ActorSystem.scala  |  2 +-
 project/GitHub.scala                                           |  2 +-
 project/project-info.conf                                      | 10 +++++-----
 stream/src/main/scala/org/apache/pekko/stream/StreamRefs.scala |  2 +-
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/actor/src/main/scala/org/apache/pekko/actor/ActorSystem.scala b/actor/src/main/scala/org/apache/pekko/actor/ActorSystem.scala
index e510570d86..46f4feb6b4 100644
--- a/actor/src/main/scala/org/apache/pekko/actor/ActorSystem.scala
+++ b/actor/src/main/scala/org/apache/pekko/actor/ActorSystem.scala
@@ -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 {
 
diff --git a/project/GitHub.scala b/project/GitHub.scala
index 54d102c6f0..41d3fd9f8a 100644
--- a/project/GitHub.scala
+++ b/project/GitHub.scala
@@ -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
   }
 }
diff --git a/project/project-info.conf b/project/project-info.conf
index 350705cab0..b67aef954d 100644
--- a/project/project-info.conf
+++ b/project/project-info.conf
@@ -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"
       }
     ]
   }
diff --git a/stream/src/main/scala/org/apache/pekko/stream/StreamRefs.scala b/stream/src/main/scala/org/apache/pekko/stream/StreamRefs.scala
index 8e68d40127..2ccb8214a0 100644
--- a/stream/src/main/scala/org/apache/pekko/stream/StreamRefs.scala
+++ b/stream/src/main/scala/org/apache/pekko/stream/StreamRefs.scala
@@ -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)
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pekko.apache.org
For additional commands, e-mail: commits-help@pekko.apache.org