-
Notifications
You must be signed in to change notification settings - Fork 1.3k
CSHARP-4361: Add log messages to CMAP spec #949
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
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.
Minor comments and then LGTM
@@ -68,7 +68,7 @@ | |||
</ItemGroup> | |||
|
|||
<ItemGroup> | |||
<EmbeddedResource LinkBase="Specifications\connection-monitoring-and-pooling" Include="..\..\specifications\connection-monitoring-and-pooling\**\*.json" /> | |||
<EmbeddedResource LinkBase="Specifications\connection-monitoring-and-pooling\tests\cmap-format" Include="..\..\specifications\connection-monitoring-and-pooling\tests\cmap-format\*.json" /> |
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.
nit: why didn't you use **
?
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.
We just need to include the cmap-format
folder. Logging folder is included in Driver.Tests.
public class CmapUnifiedTestRunner : LoggableTestClass | ||
{ | ||
private static readonly HashSet<string> __ignoredLogsMessages = new HashSet<string>(new[] | ||
{ |
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 expected formatting here:
private static readonly HashSet<string> __ignoredLogsMessages = new HashSet<string>(
new[]
{
..
}
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.
Done.
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
* CSHARP-4361: Add log messages to CMAP spec
No description provided.