-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
stage_8 #84
base: main
Are you sure you want to change the base?
stage_8 #84
Conversation
Test-NetStack.psm1
Outdated
[String] $DpdkUser='', | ||
[Parameter(Mandatory = $false)] | ||
[String[]] $DpdkPortIps ='', | ||
[Parameter(Mandatory = $false)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know what's going on here, tried fixing it both in editor and on the web and nothing seems to work. 👎
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are a few other lines that look like this too, if anyone knows how to fix please help me
helpers/tcp.psm1
Outdated
Sleep 30 | ||
|
||
$ServerRecv = Receive-Job $ServerRecvCounter | ||
$ClientSend = Receive-Job $ClientSendCounter |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we wanted this sleep and to have the -Wait -AutoRemoveJob to avoid the issue where Stage 2 was hanging
helpers/tcp.psm1
Outdated
$ServerOutput = Receive-Job $ServerOutput | ||
$ClientOutput = Receive-Job $ClientOutput |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above re: -Wait -AutoRemoveJob
Test-NetStack.psm1
Outdated
[Switch] $Experimental = $false, | ||
|
||
[Parameter(Mandatory = $false, ParameterSetName = 'Experimental' , position = 5)] | ||
[String] $DpdkUser='', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought we were doing away with the user here since it required a specific setup beforehand anyway?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes you're right, forgot to remove that.
Full background can be read here