From da6dea7f136f9f1bad8fa8e3682e0bea88230727 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 13 Aug 2024 11:15:32 +0200 Subject: [PATCH] refactor: Remove debug statement in parseDockerComposeFile function --- bootstrap/helpers/shared.php | 1 - 1 file changed, 1 deletion(-) diff --git a/bootstrap/helpers/shared.php b/bootstrap/helpers/shared.php index 55ecf223c..7da72e360 100644 --- a/bootstrap/helpers/shared.php +++ b/bootstrap/helpers/shared.php @@ -1551,7 +1551,6 @@ function parseDockerComposeFile(Service|Application $resource, bool $isNew = fal } elseif ($resource->compose_parsing_version === '2') { if (count($serviceVolumes) > 0) { $serviceVolumes = parseServiceVolumes($serviceVolumes, $resource, $topLevelVolumes, $pull_request_id); - ray($serviceVolumes); data_set($service, 'volumes', $serviceVolumes->toArray()); // $serviceVolumes = $serviceVolumes->map(function ($volume) use ($resource, $topLevelVolumes, $pull_request_id) {