Skip to content

Commit

Permalink
Fixes for release github action
Browse files Browse the repository at this point in the history
  • Loading branch information
haarli committed Nov 28, 2023
1 parent 4ea0d0f commit 27e9c8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./target/imeji.war
asset_name: imeji-${{ github.ref_name }}.war
asset_name: ${{ github.ref_name }}.war
asset_content_type: application/java-archive
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,7 @@ private static void fillResult(String key, Aggregate terms, FacetResult facetRes
facetResult.getValues().add(new FacetResultValue(bucket.key().stringValue(), bucket.docCount()));
}

}
else if (terms.isStats()) {
} else if (terms.isStats()) {
FacetResultValue result = new FacetResultValue(key, terms.stats().count());
double max = terms.stats().max();
double min = terms.stats().min();
Expand Down

0 comments on commit 27e9c8d

Please sign in to comment.