Skip to content

Commit

Permalink
NIFI-13439 Fixing system tests
Browse files Browse the repository at this point in the history
  • Loading branch information
timeabarna committed Jul 19, 2024
1 parent fb30bcf commit 5901a64
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,8 @@ public ProcessGroupStatusSnapshotDTO clone() {
other.setProcessGroupStatusSnapshots(childGroups);
}

other.setProcessingPerformanceStatusDTO(getProcessingPerformanceStatusDTO().clone());

other.setProcessingPerformanceStatusDTO(getProcessingPerformanceStatusDTO());

return other;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ public ProcessorStatusSnapshotDTO clone() {
other.setWritten(getWritten());
other.setTasks(getTasks());

other.setProcessingPerformanceStatusDTO(getProcessingPerformanceStatusDTO().clone());
other.setProcessingPerformanceStatusDTO(getProcessingPerformanceStatusDTO());

return other;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@
<configuration>
<!-- Enable parameters for AspectJ Around annotation argument name resolution -->
<parameters>true</parameters>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 5901a64

Please sign in to comment.