Skip to content

Commit ba3c321

Browse files
author
Safwan Khan
committed
MAGETWO-31450: Fatal Error in Cache Management Tool when Application is Not Installed
- Fixed it.
1 parent d1ff85c commit ba3c321

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/internal/Magento/Framework/App/Bootstrap.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,11 +298,11 @@ protected function assertInstalled()
298298
$isInstalled = $this->isInstalled();
299299
if (!$isInstalled && $isExpected) {
300300
$this->errorCode = self::ERR_IS_INSTALLED;
301-
throw new \Exception('Application is not installed yet.');
301+
throw new \Exception('Application is not installed yet. ');
302302
}
303303
if ($isInstalled && !$isExpected) {
304304
$this->errorCode = self::ERR_IS_INSTALLED;
305-
throw new \Exception('Application is already installed.');
305+
throw new \Exception('Application is already installed. ');
306306
}
307307
}
308308

0 commit comments

Comments
 (0)