Skip to content

Commit

Permalink
Merge branch 'main' into testing_aug17_s
Browse files Browse the repository at this point in the history
Signed-off-by: Mitchell Gale <[email protected]>
  • Loading branch information
MitchellGale authored Aug 18, 2023
2 parents 14ed627 + 56aa572 commit 5ad54c4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import org.apache.commons.lang3.tuple.Pair;

/**
*
* Regardless the underling data format, the {@link Content} define the data in abstract manner.
* which could be parsed by ElasticsearchExprValueFactory. There are two major use cases:
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,6 @@ private String clusterName(Map<String, String> meta) {

@Override
public String toString() {
return "OpenSearchDescribeIndexRequest{" + "indexName='" + indexName + '\'' + '}';
return "OpenSearchDescribeIndexRequest{indexName='" + indexName + "\'}";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public Map<String, Object> parse(Aggregations aggregations) {
} else {
throw new RuntimeException(
StringUtils.format(
"couldn't parse field %s in aggregation " + "response", aggregation.getName()));
"couldn't parse field %s in aggregation response", aggregation.getName()));
}
}
return resultMap;
Expand Down

0 comments on commit 5ad54c4

Please sign in to comment.