Merge pull request #1703 from metamx/fix-npe

add null check for task context.
This commit is contained in:
Charles Allen 2015-09-04 11:04:12 -07:00
commit 9b5889b393
1 changed files with 12 additions and 9 deletions

View File

@ -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));