Skip to content

Commit

Permalink
0005894: NotificationTypeEmail's deserializeOfflineNodes method always
Browse files Browse the repository at this point in the history
returns empty collection
  • Loading branch information
Catherine Quamme authored and Catherine Quamme committed Jun 28, 2023
1 parent 2bf7bc6 commit 9f2dcd0
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -149,7 +149,7 @@ protected static String getLogDetails(MonitorEvent event) throws IOException {
protected static List<String> deserializeOfflineNodes(MonitorEvent event) throws IOException {
List<String> nodes = null;
if (event.getDetails() != null) {
new Gson().fromJson(event.getDetails(), new TypeToken<List<String>>() {
nodes = new Gson().fromJson(event.getDetails(), new TypeToken<List<String>>() {
}.getType());
}
if (nodes == null) {
Expand Down

0 comments on commit 9f2dcd0

Please sign in to comment.