Skip to content

Commit

Permalink
fix(#3097): Avoid that pipeline element version gets lost (#3107)
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikriemer authored Aug 5, 2024
1 parent ddcbc18 commit 0c19ec1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ public DataProcessorInvocation(DataProcessorDescription other) {
this.setIncludedAssets(other.getIncludedAssets());
this.setIncludedLocales(other.getIncludedLocales());
this.setElementId(ElementIdGenerator.makeElementId(this));
this.setVersion(other.getVersion());
this.serviceTagPrefix = SpServiceTagPrefix.DATA_PROCESSOR;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ public DataSinkInvocation(DataSinkDescription other) {
this.setElementId(ElementIdGenerator.makeElementId(this));
this.setIncludedAssets(other.getIncludedAssets());
this.setIncludedLocales(other.getIncludedLocales());
this.setVersion(other.getVersion());
this.serviceTagPrefix = SpServiceTagPrefix.DATA_SINK;
}

Expand Down

0 comments on commit 0c19ec1

Please sign in to comment.