From 73f4719e0c4e6a1e4089a848303cecf7e9f61945 Mon Sep 17 00:00:00 2001 From: Ebere Abanonu Date: Tue, 15 Feb 2022 19:37:21 +0100 Subject: [PATCH] Fix invalid paths --- docs/api/index.md | 1 - docs/articles/persistence/custom-persistence-provider.md | 2 +- docs/articles/remoting/performance.md | 2 +- docs/articles/testing/multi-node-testing-old.md | 2 +- docs/articles/testing/multi-node-testing.md | 2 +- src/common.props | 2 +- .../Internals/AkkaAssertEqualityComparer.cs | 2 +- src/examples/Akka.Persistence.Custom/SqlitePersistence.cs | 4 ++-- 8 files changed, 8 insertions(+), 9 deletions(-) diff --git a/docs/api/index.md b/docs/api/index.md index 12675fef6ba..acaf2ba7a43 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -11,7 +11,6 @@ Full API reference documentation on Akka.NET's modules, classes, and APIs. * [Akka.Streams API Docs](Akka.Streams.yml) * [Akka.Cluster API Docs](Akka.Cluster.yml) * [Akka.Cluster.Sharding API Docs](Akka.Cluster.Sharding.yml) -* [Akka.Cluster.Tools API Docs](Akka.Cluster.Tools.yml) * [Akka.DependencyInjection API Docs](Akka.DependencyInjection.yml) * [Akka.Discovery API Docs](Akka.Discovery.yml) diff --git a/docs/articles/persistence/custom-persistence-provider.md b/docs/articles/persistence/custom-persistence-provider.md index 6af7469f9cc..519c3208611 100644 --- a/docs/articles/persistence/custom-persistence-provider.md +++ b/docs/articles/persistence/custom-persistence-provider.md @@ -444,7 +444,7 @@ There are two conventions that needs to be implemented when you extend `IExtensi * It is strongly recommended to create a static `Get` method that returns an instance of this class. This method is responsible for registering the extension with the Akka.NET extension manager and instantiates a new instance for users to use. -[!code-csharp[Get-Instance](../../../src/examples/Akka.Persistence.Custom/SqlitePersistence.cs?name=Get-Instance "Extension static Get method")] +[!code-csharp[GetInstance](../../../src/examples/Akka.Persistence.Custom/SqlitePersistence.cs?name=GetInstance "Extension static Get method")] ### Extending `ExtensionIdProvider` diff --git a/docs/articles/remoting/performance.md b/docs/articles/remoting/performance.md index 581e019b96b..37da9f7e9aa 100644 --- a/docs/articles/remoting/performance.md +++ b/docs/articles/remoting/performance.md @@ -114,7 +114,7 @@ You can achieve similar results for your application. #### Optimizing Batches for Your Use Case -To take advantage of I/O batching in DotNetty, you need to [tailor the following Akka.Remote configuration values to your use case](../../configuration/modules/akka.remote.md): +To take advantage of I/O batching in DotNetty, you need to [tailor the following Akka.Remote configuration values to your use case](../../articles/configuration/modules/akka.remote.md): ```hocon akka.remote.dot-netty.tcp{ diff --git a/docs/articles/testing/multi-node-testing-old.md b/docs/articles/testing/multi-node-testing-old.md index becdf77e7af..6d2cb0d2ced 100644 --- a/docs/articles/testing/multi-node-testing-old.md +++ b/docs/articles/testing/multi-node-testing-old.md @@ -52,7 +52,7 @@ The first step in creating an effective multi-node test is to define the configu The declaration of the `RoleName` properties is what the MNTR uses to determine how many nodes will be participating in this test. In this example, the test will create exactly two test processes. -The `CommonConfig` element of the [`MultiNodeConfig` implementation class](../../api/Akka.Remote.TestKit.MultiNodeConfig.md) is the common config that will be used throughout all of the nodes inside the multi-node test. So, for instance, if you want all of the nodes in your test to run [Akka.Cluster.Sharding](xref:cluster-sharding) you'd want to include those configuration elements inside the `CommonConfig` property. +The `CommonConfig` element of the [`MultiNodeConfig` implementation class](../../api/Akka.Remote.TestKit.MultiNodeConfig.html) is the common config that will be used throughout all of the nodes inside the multi-node test. So, for instance, if you want all of the nodes in your test to run [Akka.Cluster.Sharding](xref:cluster-sharding) you'd want to include those configuration elements inside the `CommonConfig` property. #### Configuring Individual Nodes Differently diff --git a/docs/articles/testing/multi-node-testing.md b/docs/articles/testing/multi-node-testing.md index a6b4fbe3a2a..9ec3a555152 100644 --- a/docs/articles/testing/multi-node-testing.md +++ b/docs/articles/testing/multi-node-testing.md @@ -57,7 +57,7 @@ The first step in creating an effective multi-node test is to define the configu The declaration of the `RoleName` properties is what the MNTR uses to determine how many nodes will be participating in this test. In this example, the test will create exactly two test processes. -The `CommonConfig` element of the [`MultiNodeConfig` implementation class](../../api/Akka.Remote.TestKit.MultiNodeConfig.md) is the common config that will be used throughout all of the nodes inside the multi-node test. So, for instance, if you want all of the nodes in your test to run [Akka.Cluster.Sharding](xref:cluster-sharding) you'd want to include those configuration elements inside the `CommonConfig` property. +The `CommonConfig` element of the [`MultiNodeConfig` implementation class](../../api/Akka.Remote.TestKit.MultiNodeConfig.html) is the common config that will be used throughout all of the nodes inside the multi-node test. So, for instance, if you want all of the nodes in your test to run [Akka.Cluster.Sharding](xref:cluster-sharding) you'd want to include those configuration elements inside the `CommonConfig` property. #### Configuring Individual Nodes Differently diff --git a/src/common.props b/src/common.props index 2c00bf9f5bc..91c43e12a05 100644 --- a/src/common.props +++ b/src/common.props @@ -2,7 +2,7 @@ Copyright © 2013-2021 Akka.NET Team Akka.NET Team - 1.4.33 + 1.4.34 akkalogo.png https://github.com/akkadotnet/akka.net https://github.com/akkadotnet/akka.net/blob/master/LICENSE diff --git a/src/contrib/testkits/Akka.TestKit.Xunit/Internals/AkkaAssertEqualityComparer.cs b/src/contrib/testkits/Akka.TestKit.Xunit/Internals/AkkaAssertEqualityComparer.cs index d754853f747..abab2df52e2 100644 --- a/src/contrib/testkits/Akka.TestKit.Xunit/Internals/AkkaAssertEqualityComparer.cs +++ b/src/contrib/testkits/Akka.TestKit.Xunit/Internals/AkkaAssertEqualityComparer.cs @@ -13,7 +13,7 @@ namespace Akka.TestKit.Xunit.Internals { /// - /// Default implementation of IEqualityComparer used by the Akka's xUnit.net equality assertions. + /// Default implementation of IEqualityComparer{T} used by the Akka's xUnit.net equality assertions. /// Copy of xUnits code /// https://github.com/xunit/xunit/blob/3e6ab94ca231a6d8c86e90d6e724631a0faa33b7/src/xunit.assert/Asserts/Sdk/AssertEqualityComparer.cs /// Note! Part of internal API. Breaking changes may occur without notice. Use at own risk. diff --git a/src/examples/Akka.Persistence.Custom/SqlitePersistence.cs b/src/examples/Akka.Persistence.Custom/SqlitePersistence.cs index 8e0f6265b65..5c81c4846f1 100644 --- a/src/examples/Akka.Persistence.Custom/SqlitePersistence.cs +++ b/src/examples/Akka.Persistence.Custom/SqlitePersistence.cs @@ -23,12 +23,12 @@ public static Config DefaultConfiguration() return ConfigurationFactory.FromResource("Akka.Persistence.Custom.sqlite.conf"); } - // + // public static SqlitePersistence Get(ActorSystem system) { return system.WithExtension(); } - // + // /// /// Journal-related settings loaded from HOCON configuration.