Skip to content

Commit

Permalink
Fix issue with Tread init
Browse files Browse the repository at this point in the history
  • Loading branch information
Oren Yagev committed Feb 12, 2012
1 parent 7ac9a28 commit d3635b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/lib/Server.php
Expand Up @@ -20,7 +20,7 @@ function startNewWorker(){
if( ! Thread::available() ) {
die( 'Threads not supported' );
}
$t = new Thread( '\PHAS\Lib\Server\runWorker' );
$t = new Thread( 'PHAS\Lib\Server\runWorker' );

$this->workers[$this->workersCount] = $t;
$this->workersStats[$this->workersCount] = array(
Expand Down

0 comments on commit d3635b1

Please sign in to comment.