Skip to content

Commit

Permalink
MAINT-2752 Remove the priority field from genering JIRA tickets
Browse files Browse the repository at this point in the history
  • Loading branch information
QuyenLy87 committed Feb 13, 2025
1 parent 72cac6e commit 0b69ffe
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,6 @@ public class RVFFailureJiraAssociationService {
@Value("${jira.ticket.assignee}")
private String assignee;

@Value("${jira.ticket.priority}")
private String priority;

@Value("${jira.ticket.customField.product.release.date}")
private String productReleaseDate;

Expand Down Expand Up @@ -231,7 +228,6 @@ private void updateJiraIssue(Product product, String releaseDate, Issue jiraIssu
ReleaseCenter releaseCenter = product.getReleaseCenter();
try {
final Issue.FluentUpdate updateRequest = jiraIssue.update();
updateRequest.field(Field.PRIORITY, priority);
updateRequest.field(productReleaseDate, releaseDate);
updateRequest.field(reportingEntity, Collections.singletonList(reportingEntityDefaultValue));
updateRequest.field(reportingStage, Collections.singletonList(reportingStageDefaultValue));
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ jira.privateKeyName = UNIT_TEST
jira.project =
jira.issueType =
jira.ticket.assignee =
jira.ticket.priority = 4
jira.ticket.customField.product.release.date =
jira.ticket.customField.reporting.entity =
jira.ticket.customField.reporting.entity.default.value =
Expand Down

0 comments on commit 0b69ffe

Please sign in to comment.