Browse Source

Fixed do method.

Marc 13 years ago
parent
commit
46326f0beb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Service/GearmanClient.php

+ 1 - 1
Service/GearmanClient.php

@@ -71,7 +71,7 @@ class GearmanClient extends GearmanService
      */
     public function doJob($name, $params = array())
     {
-        return $this->doNormalJob($name, $params);
+        return $this->enqueue($name, $params, 'do');
     }
 
     /**