Skip to content

Commit

Permalink
EPMRPP-92452 || Update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pbortnik committed Aug 6, 2024
1 parent dbf82a3 commit 83ea70e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ dependencies {
implementation('com.epam.reportportal:commons-dao')
annotationProcessor 'com.epam.reportportal:plugin-api'
} else {
implementation("com.github.reportportal:plugin-api:17962f8c32")
annotationProcessor 'com.github.reportportal:plugin-api:17962f8c32'
implementation 'com.github.reportportal:commons-dao:073aa934a5'
implementation("com.github.reportportal:plugin-api:a9a8b73")
annotationProcessor 'com.github.reportportal:plugin-api:a9a8b73'
implementation 'com.github.reportportal:commons-dao:b9dc960'
}

hello("com.apollographql.apollo3:apollo-runtime:3.8.2")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ private Ticket convertToTicket(String url, String boardId, GetItemsQuery.Item is
Ticket ticket = new Ticket();
ticket.setId(issue.id);
ticket.setSummary(issue.name);
ticket.setStatus("");
ofNullable(issue.column_values).flatMap(
values -> values.stream().filter(v -> Objects.nonNull(v.onStatusValue))
.map(v -> v.onStatusValue).filter(s -> Objects.nonNull(s.id))
Expand Down

0 comments on commit 83ea70e

Please sign in to comment.