-
Notifications
You must be signed in to change notification settings - Fork 87
Force quit frontend server after one second, unskip tests #1387
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
Conversation
Looks like I still see at least one timeout here. Probably this needs some investigation on a windows box. |
I tried running the test that timed out locally and the whole thing completed in 2.5 seconds. So I do not believe it is timing out it is actually hanging. Trying to figure out why, but I can't reproduce it locally. |
Ahah! It appears to actually be hanging on the cleanup of the client (ie: in the |
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.
LGTM with a comment
@@ -295,10 +295,13 @@ class FrontendServerClient { | |||
} | |||
|
|||
/// Stop the service gracefully (using the shutdown command) | |||
Future<int> shutdown() { | |||
_feServerStdoutLines.cancel(); | |||
Future<int> shutdown() async { |
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.
It would be great to open a bug on the SDK for that!
Fixes #1386
Fixes #1383