This commit is contained in:
CHIEFSOFT\ameye
2025-09-24 08:54:25 -04:00
parent de7596cca4
commit c02ab3fbc5
+2
View File
@@ -209,11 +209,13 @@ abstract class BaseController extends Controller
$res = curl_exec($ch);
$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
$result .= "\n" . 'Launch task HTTP code: ' . $httpcode;
log_message('critical', "***** ***** Provision LAUNCHED :: ansibleProvision(httpcode) " . $result);
curl_close($ch);
# 4. Get tasks
$url = $base_url . "/api/project/$PROJECT_ID/tasks";
$url = $base_url . "/project/$PROJECT_ID/tasks";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);