Skip to content

Commit

Permalink
Merge pull request #1702 from lnash94/fixes
Browse files Browse the repository at this point in the history
[master]Fix tag and operation filter issue in client generation in bal build
  • Loading branch information
lnash94 committed May 2, 2024
2 parents b4f8b72 + 9430856 commit 719b10e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -270,10 +270,10 @@ public static ImmutablePair<OASClientConfig, OASServiceMetadata> extractOptionDe
String fieldName = field.getKey();
switch (fieldName) {
case TAGS:
filter.setTags(getArrayItems(field.getValue()));
filter.setTags(getArrayItems(field.getValue().value()));
break;
case OPERATIONS:
filter.setOperations(getArrayItems(field.getValue()));
filter.setOperations(getArrayItems(field.getValue().value()));
break;
case NULLABLE:
serviceMetaDataBuilder.withNullable(value.contains(TRUE));
Expand Down

0 comments on commit 719b10e

Please sign in to comment.