Skip to content

Commit

Permalink
Fix a potential NPE in DataStreamAlias#toString() (#78399) (#78461)
Browse files Browse the repository at this point in the history
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
  • Loading branch information
martijnvg and elasticmachine authored Oct 7, 2021
1 parent ad9b09a commit ac76063
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ public String toString() {
"name='" + name + '\'' +
", dataStreams=" + dataStreams +
", writeDataStream='" + writeDataStream + '\'' +
", filter=" + filter.string() +
", filter=" + (filter != null ? filter.string() : "null") +
'}';
}
}

0 comments on commit ac76063

Please sign in to comment.