Browse Source

Change depricated GearmanMethods::GEARMAN_METHOD_DO method to GearmanMethods::GEARMAN_METHOD_DONORMAL

Aleksandras S 11 years ago
parent
commit
00e91ba3ce
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Service/GearmanClient.php

+ 1 - 1
Service/GearmanClient.php

@@ -289,7 +289,7 @@ class GearmanClient extends AbstractGearmanService
      */
     public function doJob($name, $params = '', $unique = null)
     {
-        return $this->enqueue($name, $params, GearmanMethods::GEARMAN_METHOD_DO, $unique);
+        return $this->enqueue($name, $params, GearmanMethods::GEARMAN_METHOD_DONORMAL, $unique);
     }
 
     /**