Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
default logs to an empty list
Browse files Browse the repository at this point in the history
  • Loading branch information
Viren Baraiya committed Jun 16, 2017
1 parent 6e01c92 commit bf4b581
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
*/
package com.netflix.conductor.common.metadata.tasks;

import java.util.LinkedList;
import java.util.List;

/**
Expand All @@ -26,7 +27,7 @@
*/
public class TaskExecLog {

private List<String> logs;
private List<String> logs = new LinkedList<>();

private String taskId;

Expand Down

0 comments on commit bf4b581

Please sign in to comment.