-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
React warning fixes #19503
React warning fixes #19503
Conversation
passwd, and thus the accounts list can have duplicate UIDs, with different user names. TestAccounts.testCustomUID covers that case. Avoid this by consitently using user and group names, as the other places of the code already do.
This property can specify a custom failure message, but there's a default one. The SELinux page uses the default.
The property is required, and from the component's PoV that is right as it gets called unconditionally. In the host selector we don't use jumps/links, but React's property check cannot know that. To quiesce these warnings, add a dummy jump property to the host selector instantiation.
Oh, this failure is interesting:
I reported this a https://issues.redhat.com/browse/RHEL-14082 , this should become a naughty. The other failures are easy, fixed. |
one more common tracer exit which we should ignore. Same thing here. |
ModuleNotFoundError happens every time on every non-Fedora OS, and there are common problem codes which don't need to make noise.
We should ignore UnsupportedDistribution as well |
Meh, one more tracer bug on RHEL 9.3 and RHEL 9.4: I reported this to https://issues.redhat.com/browse/RHEL-14094 , will add naughty. |
The accounts tests are very flaky with 3x affected retries, but the remaining ones are unrelated to the changes here. @jelly perhaps you can hit the retry button later tonight, as I'll be AFK for a while. |
exception.problem !== "access-denied" && | ||
// or the session goes away while checking | ||
exception.problem !== "terminated") | ||
console.error(`Tracer failed: "${JSON.stringify(exception)}", data: "${JSON.stringify(data)}"`); |
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.
This added line is not executed by any test. Details
sorting={(a, b) => true} | ||
filtering={this.filterHosts} | ||
current={label} | ||
jump={() => console.error("internal error: jump not supported in hosts selector")} |
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.
This added line is not executed by any test. Details
First wave of fixes after #19053