From f8caab74090dce26b6056857226a7e00e3b3fa09 Mon Sep 17 00:00:00 2001 From: Markus Kahl Date: Thu, 6 Jun 2024 13:36:17 +0100 Subject: [PATCH] fix protocol in deployment status check --- .../app/workers/cron/check_deploy_status_job.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/github_integration/app/workers/cron/check_deploy_status_job.rb b/modules/github_integration/app/workers/cron/check_deploy_status_job.rb index 1372811aa5d0..4a55c2e00938 100644 --- a/modules/github_integration/app/workers/cron/check_deploy_status_job.rb +++ b/modules/github_integration/app/workers/cron/check_deploy_status_job.rb @@ -126,7 +126,7 @@ def openproject_core_sha(host, api_token) end def introspection_request(host, api_token) - OpenProject.httpx.basic_auth("apikey", api_token).get("http://#{host}/api/v3") + OpenProject.httpx.basic_auth("apikey", api_token).get("https://#{host}/api/v3") end ##