Call it faulty config intead of invalid config

This commit is contained in:
Sukhwinder Dhillon 2023-08-09 09:54:37 +02:00 committed by Johannes Meyer
parent 08cae45336
commit f93873623f
2 changed files with 2 additions and 2 deletions

View file

@ -52,7 +52,7 @@ class CleanupCommand extends Command
$bp = $this->storage->loadProcess($configName);
} catch (Exception $e) {
Logger::error(
'Failed to scan the %s.conf file for missing nodes. Invalid config found.',
'Failed to scan the %s.conf file for missing nodes. Faulty config found.',
$configName
);

View file

@ -100,7 +100,7 @@ class Dashboard extends BaseHtmlElement
$this->add(new BpDashboardTile(
new BpConfig(),
$title,
sprintf(t('File %s has invalid config'), $name . '.conf'),
sprintf(t('File %s has faulty config'), $name . '.conf'),
'file-circle-xmark',
'businessprocess/process/show',
['config' => $name]