Skip to content

Commit

Permalink
#4728 No longer treat deleted pipeline filters as dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
stroomdev66 committed Jan 28, 2025
1 parent 4ac0895 commit 7bf870a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,7 @@ public List<ProcessorFilter> fetchByRunAsUser(final String userUuid) {
.join(PROCESSOR)
.on(PROCESSOR_FILTER.FK_PROCESSOR_ID.eq(PROCESSOR.ID))
.where(PROCESSOR_FILTER.RUN_AS_USER_UUID.eq(userUuid))
.and(PROCESSOR_FILTER.DELETED.isFalse())
.fetch())
.map(this::mapRecord);
}
Expand Down
24 changes: 24 additions & 0 deletions unreleased_changes/20250128_163658_712__4728.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
* Issue **#4728** : No longer treat deleted pipeline filters as dependencies.


```sh
# ********************************************************************************
# Issue title: Deleted Proc Filters and Dependencies
# Issue link: https://github.com/gchq/stroom/issues/4728
# ********************************************************************************

# ONLY the top line will be included as a change entry in the CHANGELOG.
# The entry should be in GitHub flavour markdown and should be written on a SINGLE
# line with no hard breaks. You can have multiple change files for a single GitHub issue.
# The entry should be written in the imperative mood, i.e. 'Fix nasty bug' rather than
# 'Fixed nasty bug'.
#
# Examples of acceptable entries are:
#
#
# * Issue **123** : Fix bug with an associated GitHub issue in this repository
#
# * Issue **namespace/other-repo#456** : Fix bug with an associated GitHub issue in another repository
#
# * Fix bug with no associated GitHub issue.
```

0 comments on commit 7bf870a

Please sign in to comment.