-
Notifications
You must be signed in to change notification settings - Fork 24
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
[2.13] Allow two warnings #254
Conversation
Missing builder image seems to be fixed now |
testsuite/src/it/java/io/quarkus/ts/startstop/utils/Commons.java
Outdated
Show resolved
Hide resolved
import java.util.regex.Pattern; | ||
|
||
public class Commons { | ||
static Pattern NETTY_HANDLERS=Pattern.compile(".*Could not register io.netty.handler.codec.*"); //https://github.com/quarkusio/quarkus/issues/30508 |
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.
Better to put it into WhitelistLogLines
and drop Commons
class
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.
Moved some more repeated patterns into commons
Fixes failures due to two upstreams issues: Missing classes: quarkusio/quarkus#30508
c4422f9
to
5d91aeb
Compare
5d91aeb
to
8a64e30
Compare
Move several repeating patterns to another class
8a64e30
to
79b2b35
Compare
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
Fixes failures due to two upstreams issues:
Missing classes: quarkusio/quarkus#30508
Missing builder image: quarkusio/quarkus#30738