mirror of https://github.com/apache/druid.git
Merge pull request #1703 from metamx/fix-npe
add null check for task context.
This commit is contained in:
commit
9b5889b393
|
@ -215,7 +215,9 @@ public class ForkingTaskRunner implements TaskRunner, TaskLogStreamer
|
|||
}
|
||||
|
||||
// Override task specific properties
|
||||
for (String propName : task.getContext().keySet()) {
|
||||
final Map<String, Object> context = task.getContext();
|
||||
if (context != null) {
|
||||
for (String propName : context.keySet()) {
|
||||
if (propName.startsWith(CHILD_PROPERTY_PREFIX)) {
|
||||
command.add(
|
||||
String.format(
|
||||
|
@ -226,6 +228,7 @@ public class ForkingTaskRunner implements TaskRunner, TaskLogStreamer
|
|||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
command.add(String.format("-Ddruid.host=%s", childHost));
|
||||
command.add(String.format("-Ddruid.port=%d", childPort));
|
||||
|
|
Loading…
Reference in New Issue