Script-level rotation postprocessor fix.

- This fixes a problem with writers that don't have a
  postprocessor.  Jon is still looking into the rotation
  problem in the core.
This commit is contained in:
Seth Hall 2012-07-27 13:49:49 -04:00
parent a3798070da
commit 2a9993619f

View file

@ -341,8 +341,9 @@ function __default_rotation_postprocessor(info: RotationInfo) : bool
{
if ( info$writer in default_rotation_postprocessors )
return default_rotation_postprocessors[info$writer](info);
return F;
else
# Return T by default so that postprocessor-less writers don't shutdown.
return T;
}
function default_path_func(id: ID, path: string, rec: any) : string