Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkatufus committed May 2, 2024
1 parent ff6a86d commit d72b753
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/core/Akka.FSharp.Tests/Akka.FSharp.Tests.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<PropertyGroup>
<AssemblyTitle>Akka.FSharp.Tests</AssemblyTitle>
<TargetFrameworks>net452;netstandard2.0</TargetFrameworks>
<TargetFramework>netstandard2.0</TargetFramework>
<IsPackable>false</IsPackable>
<NoWarn></NoWarn>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/core/Akka.FSharp/Akka.FSharp.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<PropertyGroup>
<AssemblyTitle>Akka.FSharp</AssemblyTitle>
<Description>F# API support for Akka.NET</Description>
<TargetFrameworks>net45;netstandard2.0</TargetFrameworks>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageTags>$(AkkaPackageTags);F#;fsharp</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn></NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<PropertyGroup>
<AssemblyTitle>Akka.Persistence.FSharp</AssemblyTitle>
<Description>F# API for persistence actors in Akka.NET</Description>
<TargetFrameworks>net45</TargetFrameworks>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageTags>akka;actors;actor model;Akka;concurrency;F#;Fsharp;persistence;eventsource</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
Expand Down
10 changes: 0 additions & 10 deletions src/core/Akka.Remote.Tests/RemoteConfigSpec.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,16 +167,6 @@ public void Remoting_should_contain_correct_hostname_values_in_ReferenceConf()
Assert.Equal(IPAddress.Any.ToString(), s.PublicHostname);
}

[Fact]
public void Remoting_should_contain_correct_BatchWriter_settings_in_ReferenceConf()
{
var c = RARP.For(Sys).Provider.RemoteSettings.Config.GetConfig("akka.remote.dot-netty.tcp");
var s = DotNettyTransportSettings.Create(c);

s.BatchWriterSettings.EnableBatching.Should().BeTrue();
s.BatchWriterSettings.MaxExplicitFlushes.Should().Be(BatchWriterSettings.DefaultMaxPendingWrites);
}

[Fact]
public void Remoting_should_contain_correct_PrimitiveSerializer_settings_in_ReferenceConf()
{
Expand Down

0 comments on commit d72b753

Please sign in to comment.