mirror of https://github.com/apache/druid.git
fix bug with jackson conversion
This commit is contained in:
parent
68e5adde33
commit
34a221a586
|
@ -109,11 +109,7 @@ public class HadoopDruidIndexerConfig
|
|||
}
|
||||
}
|
||||
|
||||
final HadoopDruidIndexerConfig retVal = jsonMapper.convertValue(
|
||||
argSpec, new TypeReference<Map<String, Object>>()
|
||||
{
|
||||
}
|
||||
);
|
||||
final HadoopDruidIndexerConfig retVal = jsonMapper.convertValue(argSpec, HadoopDruidIndexerConfig.class);
|
||||
retVal.verify();
|
||||
return retVal;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue