From 2284e855c46d5bd9c81bbc726fc6131d23d27277 Mon Sep 17 00:00:00 2001 From: Veronika Tolkachova Date: Tue, 11 Aug 2026 13:05:28 +0200 Subject: [PATCH 1/2] fix(legacy): rename resources:get column title to Container --- legacy/src/Command/Resources/ResourcesGetCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/src/Command/Resources/ResourcesGetCommand.php b/legacy/src/Command/Resources/ResourcesGetCommand.php index 75444bc9..6402393b 100644 --- a/legacy/src/Command/Resources/ResourcesGetCommand.php +++ b/legacy/src/Command/Resources/ResourcesGetCommand.php @@ -24,7 +24,7 @@ class ResourcesGetCommand extends ResourcesCommandBase { /** @var array */ protected array $tableHeader = [ - 'service' => 'App or service', + 'service' => 'Container', 'type' => 'Type', 'profile' => 'Profile', 'profile_size' => 'Size', From 163fb392b8a9a86ad0ddc5e868b44902e191dfe9 Mon Sep 17 00:00:00 2001 From: Veronika Tolkachova Date: Tue, 11 Aug 2026 13:34:27 +0200 Subject: [PATCH 2/2] fix(legacy): rename resources:set not-found error to Container --- legacy/src/Command/Resources/ResourcesSetCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/src/Command/Resources/ResourcesSetCommand.php b/legacy/src/Command/Resources/ResourcesSetCommand.php index a33272fa..25a559c4 100644 --- a/legacy/src/Command/Resources/ResourcesSetCommand.php +++ b/legacy/src/Command/Resources/ResourcesSetCommand.php @@ -714,7 +714,7 @@ private function parseSetting(InputInterface $input, string $optionName, array $ [$pattern, $value] = $parts; $givenServiceNames = Wildcard::select($serviceNames, [$pattern]); if (empty($givenServiceNames)) { - $errors[] = sprintf('App or service %s not found.', $pattern); + $errors[] = sprintf('Container %s not found.', $pattern); continue; } foreach ($givenServiceNames as $name) {