diff --git a/VERSION b/VERSION index ee87a8cea6..6754f7424d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.1.39 \ No newline at end of file +2.1.40 \ No newline at end of file diff --git a/src/VirtualClient/VirtualClient.Actions/Network/NetworkingWorkload/NTttcp/NTttcpExecutor.cs b/src/VirtualClient/VirtualClient.Actions/Network/NetworkingWorkload/NTttcp/NTttcpExecutor.cs index 5d8cc4d82e..18a6d6eb0e 100644 --- a/src/VirtualClient/VirtualClient.Actions/Network/NetworkingWorkload/NTttcp/NTttcpExecutor.cs +++ b/src/VirtualClient/VirtualClient.Actions/Network/NetworkingWorkload/NTttcp/NTttcpExecutor.cs @@ -454,7 +454,7 @@ private string GetWindowsSpecificCommandLine() $"-p {this.Port} " + $"-xml {this.ResultsPath} " + $"{(this.Protocol.ToLowerInvariant() == "udp" ? "-u" : string.Empty)} " + - $"{((this.IsInClientRole && this.NoSyncEnabled == true) ? "-ns" : string.Empty)} " + + $"{(this.NoSyncEnabled == true ? "-ns" : string.Empty)} " + $"{(this.IsInClientRole ? $"-nic {clientIPAddress}" : string.Empty)}".Trim(); } @@ -475,7 +475,7 @@ private string GetLinuxSpecificCommandLine() $"{((this.IsInServerRole && this.ReceiverMultiClientMode == true) ? "-M" : string.Empty)} " + $"{((this.IsInClientRole && this.ThreadsPerServerPort != null) ? $"-n {this.ThreadsPerServerPort}" : string.Empty)} " + $"{((this.IsInClientRole && this.ConnectionsPerThread != null) ? $"-l {this.ConnectionsPerThread}" : string.Empty)} " + - $"{((this.IsInClientRole && this.NoSyncEnabled == true) ? "-N" : string.Empty)} " + + $"{(this.NoSyncEnabled == true ? "-N" : string.Empty)} " + $"{((this.DevInterruptsDifferentiator != null) ? $"--show-dev-interrupts {this.DevInterruptsDifferentiator}" : string.Empty)}".Trim(); } }