In ConsumerManager.java on line 1793 there is a call to result.setStatusMsg,
but that call is only executed, if DEBUG is true. Need to move the call out of
the if block, i.e. replace the code:
else if (DEBUG)
{
_log.debug("Local signature verification failed.");
result.setStatusMsg("Local signature verification failed");
}
with code:
else
{
if (DEBUG)
_log.debug("Local signature verification failed.");
result.setStatusMsg("Local signature verification failed");
}
Original issue reported on code.google.com by viliam.d...@gmail.com on 21 Sep 2011 at 10:57
Original issue reported on code.google.com by
viliam.d...@gmail.com
on 21 Sep 2011 at 10:57