We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When failures occur we sometimes miss some logs.
It could be useful for some command to, for example, replace this:
err = exec.Command("virsh", "net-create", netDefaultFileName).Run() Expect(err).To(Not(HaveOccurred()))
by this:
out, err = exec.Command("virsh", "net-create", netDefaultFileName).CombinedOutput() Expect(err).To(Not(HaveOccurred()), out)
So in case of error we could have the output in Ginkgo logs.
Things to do:
elemental-support
The text was updated successfully, but these errors were encountered:
Done.
Sorry, something went wrong.
No branches or pull requests
When failures occur we sometimes miss some logs.
It could be useful for some command to, for example, replace this:
by this:
So in case of error we could have the output in Ginkgo logs.
Things to do:
elemental-support
command (see Add a elemental-support binary elemental-operator#109)The text was updated successfully, but these errors were encountered: