Skip to content

Commit

Permalink
disable strict parameter consumption by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jshook committed Jun 2, 2022
1 parent 480e915 commit 07339c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public StandardActivity(DriverAdapter<R, S> adapter, ActivityDef activityDef) {
try {
OpMapper<R> opmapper = adapter.getOpMapper();
Function<Map<String, Object>, Map<String, Object>> preprocessor = adapter.getPreprocessor();
boolean strict = activityDef.getParams().getOptionalBoolean("strict").orElse(true);
boolean strict = activityDef.getParams().getOptionalBoolean("strict").orElse(false);
sequence = createOpSourceFromCommands(opmapper, adapter.getConfiguration(), List.of(preprocessor), strict);
} catch (Exception e) {
if (e instanceof OpConfigError) {
Expand Down

0 comments on commit 07339c4

Please sign in to comment.