Skip to content
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

remove static uses of PrettyMarkupFormatter #1609

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

SimonCropp
Copy link
Contributor

PrettyMarkupFormatter is not thread safe

VerifyTests/Verify.Bunit#60

@egil
Copy link
Member

egil commented Nov 13, 2024

Thanks Simon. The particular use in bUnit is actually thread-safe, as the Attribute writing method does not rely on any state, but I am fine with instantiating the class here and add the obsolete flag, so other users dont assume the static instance is thread safe.

@linkdotnet any objections to merging this?

@SimonCropp
Copy link
Contributor Author

@egil

The particular use in bUnit is actually thread-safe,

r u certain? is it not possible to call ToMarkupElementOnly from multiple threads?

@egil
Copy link
Member

egil commented Nov 14, 2024

@egil

The particular use in bUnit is actually thread-safe,

r u certain? is it not possible to call ToMarkupElementOnly from multiple threads?

As far as I can tell, ConvertToString(attribute) calls base.Attribute(), and that method has no references to fields in the base class. Thus, I think it is safe.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants