Browse Source

Merge pull request #5 from iambrosi/cache-warmup-task

Removed cache:clear command from Warmup task
1.0
Andrés Montañez 12 years ago
parent
commit
20b9a63c3b
  1. 11
      Mage/Task/BuiltIn/Symfony2/CacheWarmup.php

11
Mage/Task/BuiltIn/Symfony2/CacheWarmup.php

@ -6,15 +6,12 @@ class Mage_Task_BuiltIn_Symfony2_CacheWarmup
{
return 'Symfony v2 - Cache Warmup [built-in]';
}
public function run()
{
$command = 'app/console cache:clear';
$result = $this->_runLocalCommand($command);
$command = 'app/console cache:warmup';
$result = $result && $this->_runLocalCommand($command);
$result = $this->_runLocalCommand($command);
return $result;
}
}
}

Loading…
Cancel
Save