diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3567b980a..28aa229e3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ env: SCRIPTS_VERSION: 5.11.0 BOM_VERSION: 5.11.1 MIGRATIONS_VERSION: 5.11.0 - RELEASE_VERSION: 5.11.2 + RELEASE_VERSION: 5.11.3 jobs: release: diff --git a/src/main/java/com/epam/ta/reportportal/dao/custom/ElasticSearchClient.java b/src/main/java/com/epam/ta/reportportal/dao/custom/ElasticSearchClient.java index 3334ecfc2..7873dd58b 100644 --- a/src/main/java/com/epam/ta/reportportal/dao/custom/ElasticSearchClient.java +++ b/src/main/java/com/epam/ta/reportportal/dao/custom/ElasticSearchClient.java @@ -187,7 +187,7 @@ private List searchTestItemIdsByConditions(Long projectId, JSONObject sear if (org.apache.commons.collections.CollectionUtils.isNotEmpty(hits)) { for (LinkedHashMap hit : hits) { Map source = (Map) hit.get("_source"); - Long testItemId = ((Integer) source.get("itemId")).longValue(); + Long testItemId = (Long) source.get("itemId"); testItemIds.add(testItemId); } @@ -250,10 +250,10 @@ private LogMessage convertElasticDataToLogMessage(Long projectId, Map