Changeset 1402

Show
Ignore:
Timestamp:
02/23/08 01:32:50 (6 months ago)
Author:
bchoate
Message:

Changed coalesce key format (including blog id in signature and lowered time hash to 10 seconds).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/release-30/lib/MT.pm.pre

    r1372 r1402  
    11841184    $job->funcname('MT::Worker::Sync'); 
    11851185    $job->uniqkey( $fi->id ); 
    1186     $job->coalesce( $$ . ':' . ( time - ( time % 100 ) ) ); 
     1186    $job->coalesce( ( $fi->blog_id || 0 ) . ':' . $$ . ':' . ( time - ( time % 10 ) ) ); 
    11871187    MT::TheSchwartz->insert($job); 
    11881188}