Skip to content

fabric 2 traffic generation with non-blocking commands

I need to run some tests with a traffic generator that has different client and server commands. I would like to roll this into a fabric2 script which executes the traffic generation commands while cd’d into /root. I have public-key authentication on the iperf machines. How can I run this traffic genera…

Finding unique elements from the list of given numbers

I have written a code which finds unique elements from the list of integers. if my given input array is [1,2,2,3,4] where n = 5 i get the output as 1,2,3,4,None but i want the output to be 1,2,3,4 can anyone tell how to fix this ? Answer Your function Distinct has no return statement so it will always return