Skip to content

Commit f08d735

Browse files
committed
Use HTTPS to request on the controller
1 parent 55d3324 commit f08d735

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

jenkins_pipelines/environments/common/pipeline-build-validation.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -910,7 +910,7 @@ def cleanMigrationFeatureName(String feature) {
910910
*/
911911
def echoHtmlReportPath(String rake_target) {
912912
// Construct the full URL to the file containing the HTML path
913-
def path_export_url = "http://${env.controller_hostname}/results/${env.BUILD_NUMBER}/${rake_target}_html_path.txt"
913+
def path_export_url = "https://${env.controller_hostname}/results/${env.BUILD_NUMBER}/${rake_target}_html_path.txt"
914914

915915
def html_report_path = ''
916916
try {
@@ -922,7 +922,7 @@ def echoHtmlReportPath(String rake_target) {
922922
html_report_path = response.content.trim()
923923

924924
// Construct and log the full HTTP URL for the actual report
925-
def full_html_url = "http://${env.controller_hostname}/${html_report_path}"
925+
def full_html_url = "https://${env.controller_hostname}/${html_report_path}"
926926
echo "HTML Report URL: ${full_html_url}"
927927
} else {
928928
echo "Warning: Failed to fetch HTML path file. HTTP Status: ${response.status}"

0 commit comments

Comments
 (0)