-
Notifications
You must be signed in to change notification settings - Fork 229
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
Warnings #806
Warnings #806
Conversation
@ebozduman can you run again? |
@ebozduman trying to track down the test issues I find it sometimes difficult to see where they come from now they run in parallel. Do you have any suggestions? I tried this: await Utils.RunInParallel(functionalTestTasks, async (task, _) => {
try
{
await task.ConfigureAwait(false);
}
catch (Exception)
{
throw task.Exception;
}
})
.ConfigureAwait(false); Which does help a bit to see the inner exception. What do you think? |
Great idea! |
@ebozduman can you run this one again? |
I forgot to answer your previous question. I used the following cancellation token related change at the end of the
|
I guess you need to run
|
@ebozduman done. can you run again? |
@ebozduman all green here! Can you merge? |
currently reviewing. |
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
@ebozduman another round of warnings.