You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by jo...@apache.org on 2021/12/13 18:43:17 UTC

[nifi] 13/22: NIFI-9368: Fixed the ordering of the log entries on the processor level bulletin pop-up

This is an automated email from the ASF dual-hosted git repository.

joewitt pushed a commit to branch support/nifi-1.15
in repository https://gitbox.apache.org/repos/asf/nifi.git

commit 388731e7220a5cc293c5dbf42e39f8e17c631cf3
Author: Peter Turcsanyi <tu...@apache.org>
AuthorDate: Mon Nov 8 17:56:40 2021 +0100

    NIFI-9368: Fixed the ordering of the log entries on the processor level bulletin pop-up
---
 .../src/main/java/org/apache/nifi/events/VolatileBulletinRepository.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-components/src/main/java/org/apache/nifi/events/VolatileBulletinRepository.java b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-components/src/main/java/org/apache/nifi/events/VolatileBulletinRepository.java
index 9bdb119..0345013 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-components/src/main/java/org/apache/nifi/events/VolatileBulletinRepository.java
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-components/src/main/java/org/apache/nifi/events/VolatileBulletinRepository.java
@@ -179,6 +179,7 @@ public class VolatileBulletinRepository implements BulletinRepository {
             }
 
             final List<Bulletin> bulletinsForComponent = ringBuffer.getSelectedElements(filter, max);
+            Collections.sort(bulletinsForComponent);
             return bulletinsForComponent;
         }