Skip to content
This repository has been archived by the owner on Nov 26, 2021. It is now read-only.

Commit

Permalink
Merge pull request #12 from nitper/patch-1
Browse files Browse the repository at this point in the history
get rid of process timeout
  • Loading branch information
ipalaus committed May 14, 2014
2 parents f31740b + 29e1e79 commit 4a63464
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Commands/ImportCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ protected function seedCommand($class, $extra = '')
*/
protected function makeProcess($command)
{
return new Process($command, $this->laravel['path.base'], null, null, 600);
return new Process($command, $this->laravel['path.base'], null, null, 0);
}

/**
Expand Down Expand Up @@ -335,4 +335,4 @@ protected function getOptions()
);
}

}
}

0 comments on commit 4a63464

Please sign in to comment.