Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
APiankouski committed Sep 19, 2024
2 parents 8a5314f + ad8a9ce commit 7167fc7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ project.ext {

ext['junit-jupiter.version'] = '5.10.0'

def scriptsUrl = 'https://raw.githubusercontent.com/reportportal/gradle-scripts/' + (releaseMode ? '5.10.0' : 'develop')
def scriptsUrl = 'https://raw.githubusercontent.com/reportportal/gradle-scripts/' + (releaseMode ? '5.12.0' : 'develop')

apply from: "$scriptsUrl/build-commons.gradle"
apply from: "$scriptsUrl/build-info.gradle"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=5.11.2
version=5.12.1
description=EPAM Report portal. Service jobs
dockerServerUrl=unix:///var/run/docker.sock
dockerPrepareEnvironment=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,14 @@ public void execute() {

if (metadata.optInt("userAnalyzed") > 0) {
status.add("manually");
sentToAnalyze += metadata.optInt("userAnalyzed");
} else {
status.add("automatically");
sentToAnalyze += metadata.optInt("sentToAnalyze");
}

userAnalyzed += metadata.optInt("userAnalyzed");
autoAnalyzed += metadata.optInt("analyzed");
sentToAnalyze += metadata.optInt("userAnalyzed") + metadata.optInt("sentToAnalyze");
version = metadata.getString("version");

} while (rs.next());
Expand Down Expand Up @@ -164,6 +165,9 @@ public void execute() {
sendRequest(requestBody);

});

LOGGER.info("Completed items defect update statistics job");

}

private void sendRequest(JSONObject requestBody) {
Expand Down

0 comments on commit 7167fc7

Please sign in to comment.