Skip to content

Commit

Permalink
EPMRPP-88977 || Skip debug mode (#969)
Browse files Browse the repository at this point in the history
* EPMRPP-88977 || Skip debug

* EPMRPP-88977 || Update commons rules
  • Loading branch information
APiankouski authored Jan 8, 2024
1 parent dc4c3ea commit 8a171ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ dependencies {
compile 'com.epam.reportportal:commons-model'
} else {
compile 'com.github.reportportal:commons:07566b8e'
compile 'com.github.reportportal:commons-rules:01ec4d17'
compile 'com.github.reportportal:commons-rules:837ccf2'
compile 'com.github.reportportal:commons-model:83f012f'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,7 @@ public Optional<Long> findPreviousLaunchId(Launch launch) {
.and(LAUNCH.NAME.eq(launch.getName()))
.and(LAUNCH.NUMBER.lt(launch.getNumber().intValue())
.and(LAUNCH.PROJECT_ID.eq(launch.getProjectId()))))
.and(LAUNCH.MODE.ne(JLaunchModeEnum.DEBUG))
.orderBy(LAUNCH.NUMBER.desc())
.limit(1)
.fetchOptionalInto(Long.class);
Expand Down

0 comments on commit 8a171ef

Please sign in to comment.