-
Hi there! I have just upgraded to from 3.12.3 to 3.13.0 and realized than the Maven build use up to 4 times more memory than before. [EDIT] |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 21 replies
-
/cc @quarkusio/devtools (maven) |
Beta Was this translation helpful? Give feedback.
-
Do you have a reproducer so we can be sure what issue/difference you are seeing? |
Beta Was this translation helpful? Give feedback.
-
@admanzoni would you have the ability to test #42304 ? |
Beta Was this translation helpful? Give feedback.
-
#42303 has been fixed - it was a Keycloak DevService specific issue |
Beta Was this translation helpful? Give feedback.
-
Looks like another issue related? #42365 |
Beta Was this translation helpful? Give feedback.
All the new annotation does is change the default of
restrictToAnnotatedClass
fromfalse
totrue
.I think this means that the test resource, by default, is bound only to the single test class rather than all test classes.
I'd be curious if you see the same thing if you use
@QuarkusTestResource(restrictToAnnotatedClass=true)
My guess is that the behavior would be the same. Nothing else changed really