DbTaskStorage: Fix getAuditLogs

This commit is contained in:
Gian Merlino 2013-03-01 14:40:29 -08:00
parent 360c6a1df1
commit 6b4f6bffce

View File

@ -379,7 +379,7 @@ public class DbTaskStorage implements TaskStorage
public TaskAction apply(Map<String, Object> row)
{
try {
return jsonMapper.readValue(row.get("payload").toString(), TaskAction.class);
return jsonMapper.readValue(row.get("log_payload").toString(), TaskAction.class);
} catch(Exception e) {
throw Throwables.propagate(e);
}