Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion legacy/src/Command/Resources/ResourcesGetCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class ResourcesGetCommand extends ResourcesCommandBase
{
/** @var array<string, string> */
protected array $tableHeader = [
'service' => 'App or service',
'service' => 'Container',
'type' => 'Type',
'profile' => 'Profile',
'profile_size' => 'Size',
Expand Down
2 changes: 1 addition & 1 deletion legacy/src/Command/Resources/ResourcesSetCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 <error>%s</error> not found.', $pattern);
$errors[] = sprintf('Container <error>%s</error> not found.', $pattern);
continue;
}
foreach ($givenServiceNames as $name) {
Expand Down