-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Report correct RemoteURI #12895
Report correct RemoteURI #12895
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jwhonce The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Nice! Would you mind un-commenting this out? podman/test/system/272-system-connection.bats Lines 102 to 105 in 8514ebd
|
06bd1f9
to
bd621a1
Compare
Change LGTM |
@jwhonce root tests failing with a FIXME, rootless failing with some other error, all of them failing within mere minutes, and all of them pretty much skipping all tests |
658966d
to
873c7cc
Compare
Changes LGTM |
@jwhonce Is this something we need to get into podman 4.0, or can it wait for podman 4.1? |
@rhatdan Podman 4.1, python-py higher priority |
A friendly reminder that this PR had no activity for 30 days. |
Rather than assuming a filesystem path, the API service URI is recorded in the libpod runtime configuration and then reported as requested. Note: All schemes other than "unix" are hard-coded to report URI exists. Fixes containers#12023 Signed-off-by: Jhon Honce <[email protected]>
I restarted a bunch of look-like-flakes, the quay.io outage we've been seeing the past week. This one, though, looks real:
|
@@ -3149,6 +3149,9 @@ invalid kube kind | |||
Expect(ls.OutputToStringArray()).To(HaveLen(1)) | |||
|
|||
containerLen := podmanTest.Podman([]string{"pod", "inspect", pod.Name, "--format", "'{{len .Containers}}'"}) | |||
containerLen.WaitWithDefaultTimeout() | |||
Expect(ls).Should(Exit(0)) | |||
Expect(ls.OutputToStringArray()).Should(BeNumerically(">", 1)) |
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.
Missing no wait this looks like copy-paste; it needs more significant cleanup (len()
s/ls/containerLen/
, OutputToString()
instead of Array
).
@jwhonce: PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Rather than assuming a filesystem path, the API service URI is recorded
in the libpod runtime configuration and then reported as requested.
Cleanup some godoc comments.
Note: All schemes other than "unix" are hard-coded to report URI exists.
Fixes #12023
Signed-off-by: Jhon Honce [email protected]