MDL-24684 backup - basic protection against time/memory limits

This commit is contained in:
Eloy Lafuente (stronk7)
2011-06-30 03:37:30 +02:00
parent 7fde489dae
commit b7a45fa782
2 changed files with 10 additions and 0 deletions
@@ -290,6 +290,9 @@ class backup_controller extends backup implements loggable {
* @return void Throws and exception of completes
*/
public function execute_plan() {
// Basic/initial prevention against time/memory limits
set_time_limit(1 * 60 * 60); // 1 hour for 1 course initially granted
raise_memory_limit(MEMORY_EXTRA);
return $this->plan->execute();
}