Skip to content

Commit 78f3c4c

Browse files
committed
fix tasks/ops/resources not being created dirty
thanks @zaharidichev for noticing that! Signed-off-by: Eliza Weisman <[email protected]>
1 parent 37fea83 commit 78f3c4c

File tree

1 file changed

+3
-3
lines changed
  • console-subscriber/src/aggregator

1 file changed

+3
-3
lines changed

console-subscriber/src/aggregator/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ impl Aggregator {
423423
id.clone(),
424424
Task {
425425
id: id.clone(),
426-
is_dirty: AtomicBool::new(false),
426+
is_dirty: AtomicBool::new(true),
427427
metadata,
428428
fields,
429429
location,
@@ -448,7 +448,7 @@ impl Aggregator {
448448
id.clone(),
449449
Resource {
450450
id: id.clone(),
451-
is_dirty: AtomicBool::new(false),
451+
is_dirty: AtomicBool::new(true),
452452
parent_id,
453453
kind,
454454
metadata,
@@ -494,7 +494,7 @@ impl Aggregator {
494494
id.clone(),
495495
AsyncOp {
496496
id: id.clone(),
497-
is_dirty: AtomicBool::new(false),
497+
is_dirty: AtomicBool::new(true),
498498
resource_id,
499499
metadata,
500500
source,

0 commit comments

Comments
 (0)