From:             hradtke
Operating system: CentOS 5.7
PHP version:      5.3.8
Package:          gearman
Bug Type:         Bug
Bug description:add_task(GEARMAN_INVALID_ARGUMENT) unique name longer then 
GEARMAN_UNIQUE_MAX_S

Description:
------------
Ok, updated everything to .25 and re-built all packages.

The new feature of GEARMAN_UNIQUE_MAX_SIZE is causing problems.

GearmanClient::doBackground(): add_task(GEARMAN_INVALID_ARGUMENT)
unique name longer then GEARMAN_UNIQUE_MAX_SIZE -> libgearman/add.cc:
131 in /blah/blah.php

We use the same ID for the message and the uniqueId and have never had
any problems in the past.

Usage:

$client->doBackground('jobs_publish', 42789639, 42789639);

At first I thought maybe its just interpreting the uniqueId as an int
so I explicitly cast it as a string first and still failed.

$client->doBackground('rtu_careers_jobs_publish', 42789639,
(string)42789639);

Let me know if I can provide any additional information.

CentOS 5.7
PHP 5.3.6
PECL Gearman 0.8
Gearmand 0.25

Ok, we figured out a work-around already.

Passing in a pure integer as uniqueId does not work. Even when casting
as a string.

However, we simply changed the uniqueId to something like this:

$uniqueId =
substr(str_shuffle(str_repeat('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789',
5)),0,5);
$client->doBackground('jobs_publish', 42789639, $uniqueId);


And everything works!!!


-- 
Edit bug report at https://bugs.php.net/bug.php?id=60307&edit=1
-- 
Try a snapshot (PHP 5.4):            
https://bugs.php.net/fix.php?id=60307&r=trysnapshot54
Try a snapshot (PHP 5.3):            
https://bugs.php.net/fix.php?id=60307&r=trysnapshot53
Try a snapshot (trunk):              
https://bugs.php.net/fix.php?id=60307&r=trysnapshottrunk
Fixed in SVN:                        
https://bugs.php.net/fix.php?id=60307&r=fixed
Fixed in SVN and need be documented: 
https://bugs.php.net/fix.php?id=60307&r=needdocs
Fixed in release:                    
https://bugs.php.net/fix.php?id=60307&r=alreadyfixed
Need backtrace:                      
https://bugs.php.net/fix.php?id=60307&r=needtrace
Need Reproduce Script:               
https://bugs.php.net/fix.php?id=60307&r=needscript
Try newer version:                   
https://bugs.php.net/fix.php?id=60307&r=oldversion
Not developer issue:                 
https://bugs.php.net/fix.php?id=60307&r=support
Expected behavior:                   
https://bugs.php.net/fix.php?id=60307&r=notwrong
Not enough info:                     
https://bugs.php.net/fix.php?id=60307&r=notenoughinfo
Submitted twice:                     
https://bugs.php.net/fix.php?id=60307&r=submittedtwice
register_globals:                    
https://bugs.php.net/fix.php?id=60307&r=globals
PHP 4 support discontinued:          
https://bugs.php.net/fix.php?id=60307&r=php4
Daylight Savings:                    https://bugs.php.net/fix.php?id=60307&r=dst
IIS Stability:                       
https://bugs.php.net/fix.php?id=60307&r=isapi
Install GNU Sed:                     
https://bugs.php.net/fix.php?id=60307&r=gnused
Floating point limitations:          
https://bugs.php.net/fix.php?id=60307&r=float
No Zend Extensions:                  
https://bugs.php.net/fix.php?id=60307&r=nozend
MySQL Configuration Error:           
https://bugs.php.net/fix.php?id=60307&r=mysqlcfg

Reply via email to