From 5655f0bcb25347e268584cb0ec975d852c4f64ab Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Fri, 28 Jul 2023 12:42:24 +0100 Subject: [PATCH] mention pekko and pekko.tcp URL schemes (#502) * mention pekko and pekko.tcp URL schemes * Update migration-guides.md --- docs/src/main/paradox/project/migration-guides.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/src/main/paradox/project/migration-guides.md b/docs/src/main/paradox/project/migration-guides.md index 40e9286b07..7f03436dbd 100644 --- a/docs/src/main/paradox/project/migration-guides.md +++ b/docs/src/main/paradox/project/migration-guides.md @@ -16,9 +16,12 @@ These migration notes are designed for users migrating from Akka 2.6 to Pekko 1. * Pekko packages start with "org.apache.pekko" instead of "akka" - e.g. `import org.apache.pekko.actor` instead of `import akka.actor` * Where class names have "Akka" in the name, the Pekko ones have "Pekko" - e.g. PekkoException instead of AkkaException * Config names use "pekko" prefix instead of "akka", e.g. `pekko.actor.provider` instead of `akka.actor.provider` +* The Pekko node URLs use different URL schemes. + * `pekko://` instead of `akka://` + * `pekko.tcp://` instead of `akka.tcp://` * We have changed the default ports used by the pekko-remote module. -* With @ref:[Classic Remoting](../remoting.md), Akka defaults to 2552, while Pekko defaults to 7355. -* With @ref:[Artery Remoting](../remoting-artery.md), Akka defaults to 25520, while Pekko defaults to 17355. + * With @ref:[Classic Remoting](../remoting.md), Akka defaults to 2552, while Pekko defaults to 7355. + * With @ref:[Artery Remoting](../remoting-artery.md), Akka defaults to 25520, while Pekko defaults to 17355. ### Dependency Changes * The Scala 2.13/Scala 3 versions of Pekko no longer include [scala-java8-compat](https://github.com/scala/scala-java8-compat)