Solaris 9
TeamSite 6.5 SP1
We just patched our Solaris 9 box and ran into the "Group buffer size issue". All of our workflows that use "WFsystem.pm" to start a workflow started reporting an error. I found the following workaround:
$iw-home/iw-perl/vendor/lib/TeamSite/WFsystem.pm
Around line 310, I strip out the "buffer" error message
$wfid = <TMP>; close TMP;
unlink $tmpout;
}
}
else
{
$wfid = `$command 2>&1`;
# if the command outputs the buffer error, strip it out
if($wfid =~m/buffer/){
$wfid=~s/^.*\n//;
}
}