From 3e816c82813077493038b08b282bdd7fdad54e92 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Wed, 27 Aug 2025 18:36:58 +0200 Subject: [PATCH] refactor(parsers): remove unnecessary hyphen-to-underscore replacement for service names in serviceParser function --- bootstrap/helpers/parsers.php | 1 - 1 file changed, 1 deletion(-) diff --git a/bootstrap/helpers/parsers.php b/bootstrap/helpers/parsers.php index 649b87212..6e2b55ae9 100644 --- a/bootstrap/helpers/parsers.php +++ b/bootstrap/helpers/parsers.php @@ -1889,7 +1889,6 @@ function serviceParser(Service $resource): Collection }); } } - $serviceName = str($serviceName)->replace('-', '_')->value(); if (! $isDatabase && $fqdns instanceof Collection && $fqdns->count() > 0) { $shouldGenerateLabelsExactly = $resource->server->settings->generate_exact_labels; $uuid = $resource->uuid;