-
Notifications
You must be signed in to change notification settings - Fork 115
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
Fix vault makescripts with capture output #12909
Conversation
b7dcce0
to
39d496e
Compare
trigger: test-robottelo |
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.
Change RE to use ^
and MULTILINE
.
Or merge my #12960 and rebase on top of it.
Thanks.
39d496e
to
911f98c
Compare
Merging this PR on priority since many facing issues with REGEX of |
* Fix vault makescripts with capture output * Handle topped Vault enablement in .env file (cherry picked from commit 291698f)
* Fix vault makescripts with capture output * Handle topped Vault enablement in .env file (cherry picked from commit 291698f)
* Fix vault makescripts with capture output * Handle topped Vault enablement in .env file (cherry picked from commit 291698f)
Fix vault makescripts with capture output (#12909) * Fix vault makescripts with capture output * Handle topped Vault enablement in .env file (cherry picked from commit 291698f) Co-authored-by: Jitendra Yejare <[email protected]>
Fix vault makescripts with capture output (#12909) * Fix vault makescripts with capture output * Handle topped Vault enablement in .env file (cherry picked from commit 291698f) Co-authored-by: Jitendra Yejare <[email protected]>
Fix vault makescripts with capture output (#12909) * Fix vault makescripts with capture output * Handle topped Vault enablement in .env file (cherry picked from commit 291698f) Co-authored-by: Jitendra Yejare <[email protected]>
* Fix vault makescripts with capture output * Handle topped Vault enablement in .env file
Missing
Capture Output
mademake vault scripts
to break as it was trying to read and print STDOUT which was never returned due tocapture_output
was not set.Fix:
capture_output
to True in subprocess running vault command.This also addresses the REGEX for Vault_enablement key in
.env
when its the first line in.env
file.