Skip to content

Commit

Permalink
288 kloadgen review behaviour of ancestorrequired in extractor (#292)
Browse files Browse the repository at this point in the history
* added getRequired in compare(), SerialisedSubjectPropertyEditor

* pom version updated

Co-authored-by: Diana Gómez <[email protected]>
  • Loading branch information
dianaGomezGar and Diana Gómez authored Sep 5, 2022
1 parent f556037 commit dcfbbed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom-maven-central.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<artifactId>kloadgen</artifactId>

<version>5.0.0</version>
<version>5.0.1</version>
<name>KLoadGen</name>
<description>Load Generation Jmeter plugin for Kafka Cluster. Supporting AVRO, JSON Schema and Protobuf schema types. Generate Artificial data based on Data specification</description>
<url>https://corunet.github.io/kloadgen/</url>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<artifactId>kloadgen</artifactId>

<version>5.0.0</version>
<version>5.0.1</version>
<name>KLoadGen</name>
<description>Load Generation Jmeter plugin for Kafka Cluster. Supporting AVRO, JSON Schema and Protobuf schema types. Generate Artificial data base on Data specification</description>
<url>https://corunet.github.io/kloadgen/</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,8 @@ final List<FieldValueMapping> mergeValue(final List<FieldValueMapping> tableEdit

private Predicate<FieldValueMapping> compare(final FieldValueMapping fieldValue2) {
return fieldValue -> fieldValue.getFieldName().equalsIgnoreCase(fieldValue2.getFieldName())
&& fieldValue.getFieldType().equalsIgnoreCase(fieldValue2.getFieldType());
&& fieldValue.getFieldType().equalsIgnoreCase(fieldValue2.getFieldType())
&& fieldValue.getRequired().equals(fieldValue2.getRequired());
}

}

0 comments on commit dcfbbed

Please sign in to comment.