mirror of https://github.com/apache/druid.git
Suppress stack trace in warning (#7348)
This commit is contained in:
parent
b9354fbddb
commit
4d37edac1e
|
@ -357,7 +357,7 @@ public abstract class SQLMetadataStorageActionHandler<EntryType, StatusType, Log
|
||||||
task = objectMapper.readValue(resultSet.getBytes("payload"), entryType);
|
task = objectMapper.readValue(resultSet.getBytes("payload"), entryType);
|
||||||
}
|
}
|
||||||
catch (IOException e) {
|
catch (IOException e) {
|
||||||
log.error(e, "Encountered exception while deserializing task payload, setting task to null");
|
log.warn("Encountered exception[%s] while deserializing task payload, setting payload to null", e.getMessage());
|
||||||
task = null;
|
task = null;
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue