-
Notifications
You must be signed in to change notification settings - Fork 82
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
Retry to connect to network in esp-tester. #2692
Conversation
TBR. |
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.
Looks good to me.
@@ -27,7 +29,12 @@ install-new-test: | |||
if id != containers.current: | |||
containers.uninstall id | |||
|
|||
network := net.open | |||
network/net.Client? := null | |||
for i := 0; i < NETWORK_RETRIES; i++: |
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.
NETWORK-RETRIES
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.
#2693.
Saw it too, and then just forgot to fix it...
done.
network := net.open | ||
network/net.Client? := null | ||
for i := 0; i < NETWORK_RETRIES; i++: | ||
catch --unwind=(: i == NETWORK_RETRIES - 1): |
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.
NETWORK-RETRIES
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.
done.
No description provided.