Skip to content

Commit

Permalink
(PE-17825) Update do_higgs_install method with new installation log
Browse files Browse the repository at this point in the history
Prior to this PR, the PE the do_higgs_install method waits for the below PE installation log:
"Please go to https://higgs_installer_web_server:3000 in your browser to continue installation"

However, newer PE, for example in Davis builds, that line of log has changed to be:
"#Go to  https://higgs_installer_web_server:3000 in your browser to continue installation"

This PR is a simple fix for this by only searching for the substring:
"o to  https://higgs_installer_web_server:3000 in your browser to continue installation"
  • Loading branch information
phongdly committed Oct 6, 2016
1 parent e53e018 commit f17b509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/beaker-pe/install/pe_utils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ def do_higgs_install host, opts

#wait for output to host['higgs_file']
#we're all done when we find this line in the PE installation log
higgs_re = /Please\s+go\s+to\s+https:\/\/.*\s+in\s+your\s+browser\s+to\s+continue\s+installation/m
higgs_re = /o\s+to\s+https:\/\/.*\s+in\s+your\s+browser\s+to\s+continue\s+installation/m
res = Result.new(host, 'tmp cmd')
tries = 10
attempts = 0
Expand Down

0 comments on commit f17b509

Please sign in to comment.