-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Stop Narayana getting initialized in static init #18984
Conversation
This workflow status is outdated as a new workflow run has been triggered. Failing Jobs - Building b1de0b5
Full information is available in the Build summary check run. Test Failures⚙️ JVM Tests - JDK 11 #📦 extensions/narayana-jta/deployment✖
⚙️ JVM Tests - JDK 11 Windows #📦 extensions/narayana-jta/deployment✖
⚙️ JVM Tests - JDK 16 #📦 extensions/narayana-jta/deployment✖
|
This stops it being runtime configurable, and also loads the XML parsers in JVM mode.
import io.quarkus.test.QuarkusUnitTest; | ||
|
||
public class TransactionalTest { | ||
|
||
static final Set<String> loadedClasses = Collections.newSetFromMap(new ConcurrentHashMap<>()); |
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 guess this was later replaced with your nice new testing helper?
It's not used.
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.
oops
This stops it being runtime configurable, and also loads the XML parsers
in JVM mode.