Skip to content

Commit

Permalink
return edgesRef like before
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhrathod01 committed Nov 27, 2024
1 parent 5e4ffe1 commit 191e96f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -734,8 +734,8 @@ private Mono<Set<ExecutableDependencyEdge>> addDirectlyReferencedExecutablesToGr
return Mono.just(possibleEntity);
});
})
.collectList() // Collect all emitted elements into a list (to complete processing of the Flux)
.then(Mono.just(edgesRef)); // Return edgesRef as Mono
.collectList()
.thenReturn(edgesRef);
}

protected Mono<Executable> updateExecutableSelfReferencingPaths(EntityDependencyNode possibleEntity) {
Expand Down

0 comments on commit 191e96f

Please sign in to comment.