File tree Expand file tree Collapse file tree
src/VirtualClient/VirtualClient.Actions/Network/NetworkingWorkload/NTttcp Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- 2.1.39
1+ 2.1.40
Original file line number Diff line number Diff line change @@ -454,7 +454,7 @@ private string GetWindowsSpecificCommandLine()
454454 $ "-p { this . Port } " +
455455 $ "-xml { this . ResultsPath } " +
456456 $ "{ ( this . Protocol . ToLowerInvariant ( ) == "udp" ? "-u" : string . Empty ) } " +
457- $ "{ ( ( this . IsInClientRole && this . NoSyncEnabled == true ) ? "-ns" : string . Empty ) } " +
457+ $ "{ ( this . NoSyncEnabled == true ? "-ns" : string . Empty ) } " +
458458 $ "{ ( this . IsInClientRole ? $ "-nic { clientIPAddress } " : string . Empty ) } ". Trim ( ) ;
459459 }
460460
@@ -475,7 +475,7 @@ private string GetLinuxSpecificCommandLine()
475475 $ "{ ( ( this . IsInServerRole && this . ReceiverMultiClientMode == true ) ? "-M" : string . Empty ) } " +
476476 $ "{ ( ( this . IsInClientRole && this . ThreadsPerServerPort != null ) ? $ "-n { this . ThreadsPerServerPort } " : string . Empty ) } " +
477477 $ "{ ( ( this . IsInClientRole && this . ConnectionsPerThread != null ) ? $ "-l { this . ConnectionsPerThread } " : string . Empty ) } " +
478- $ "{ ( ( this . IsInClientRole && this . NoSyncEnabled == true ) ? "-N" : string . Empty ) } " +
478+ $ "{ ( this . NoSyncEnabled == true ? "-N" : string . Empty ) } " +
479479 $ "{ ( ( this . DevInterruptsDifferentiator != null ) ? $ "--show-dev-interrupts { this . DevInterruptsDifferentiator } " : string . Empty ) } ". Trim ( ) ;
480480 }
481481 }
You can’t perform that action at this time.
0 commit comments