You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2021/10/25 12:27:54 UTC

[brooklyn-server] 03/15: don't make feed tasks transient, allow us to see them in the ui

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

heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-server.git

commit 3b1cabcc9f43deadad0e83dbadf12fe3f3a00c88
Author: Alex Heneveld <al...@cloudsoftcorp.com>
AuthorDate: Wed Oct 20 11:22:11 2021 +0100

    don't make feed tasks transient, allow us to see them in the ui
---
 core/src/main/java/org/apache/brooklyn/core/feed/Poller.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/brooklyn/core/feed/Poller.java b/core/src/main/java/org/apache/brooklyn/core/feed/Poller.java
index 97b7a6b..b870110 100644
--- a/core/src/main/java/org/apache/brooklyn/core/feed/Poller.java
+++ b/core/src/main/java/org/apache/brooklyn/core/feed/Poller.java
@@ -156,7 +156,8 @@ public class Poller<V> {
                                     pollJob.wrappedJob.run();
                                     return null; 
                                 } } );
-                            BrooklynTaskTags.setTransient(task);
+                            // don't set transient -- it is good to be able to see these in the UI
+                            //BrooklynTaskTags.setTransient(task);
                             return task;
                         })
                         .displayName("scheduled:" + scheduleName)