Skip to content

Commit

Permalink
#384 Fix schema key generation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jemacineiras committed Nov 20, 2023
1 parent b2e5770 commit 3ac589f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ public static BaseLoadGenerator configureValueGenerator(final Properties props)
} else {
try {
final String schema;
if (jMeterVariables.get(PropsKeysHelper.VALUE_SCHEMA).isEmpty()) {
if (ObjectUtils.isEmpty(jMeterVariables.get(PropsKeysHelper.VALUE_SCHEMA))) {
schema = props.getProperty(PropsKeysHelper.VALUE_SCHEMA);
} else {
schema = jMeterVariables.get(PropsKeysHelper.VALUE_SCHEMA);
Expand Down

0 comments on commit 3ac589f

Please sign in to comment.