Skip to content

Commit 099b0c6

Browse files
authoredJan 16, 2025
Merge pull request #83 from cxpsemea/dev-jc
Dev jc
2 parents bf88307 + f264d2d commit 099b0c6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed
 

‎cxoneflow/src/cxjirafeedback.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -1101,14 +1101,14 @@ def __processjiraticket( self, scanner: str, ticketsummary: str, ticket: cxresul
11011101
# Add to CREATED
11021102
cxlogger.verbose( '- JIRA issue ' + jiraticket.get('key') + ' created, type ' + scanner.upper() + ', with key "' + ticketsummary + '"' )
11031103
else :
1104+
reopened = False
11041105

11051106
ticketkey = jiraticket.get('key')
1107+
current_status = jiraticket['fields']['status']['name']
11061108

11071109
# >>> TEMP CONDITION TO REMOVE
1108-
if ticketkey in ['GINFOSEC-75333', 'GINFOSEC-72118', 'GINFOSEC-72120'] :
1110+
if ticketkey in ['GINFOSEC-75333', 'GINFOSEC-72118', 'GINFOSEC-72120'] :
11091111

1110-
current_status = jiraticket['fields']['status']['name']
1111-
reopened = False
11121112
# If it's not opened, let's reopen it
11131113
if (str(current_status).lower() in self.jiraparams.closedstatus) :
11141114
if self.jiraparams.opentransition :
@@ -1161,7 +1161,6 @@ def __processjiraticket( self, scanner: str, ticketsummary: str, ticket: cxresul
11611161
raise e
11621162
else :
11631163
raise Exception( 'Error updating jira ticket' )
1164-
# <<< TEMP CONDITION TO REMOVE
11651164

11661165
if reopened :
11671166
cxlogger.verbose( '- JIRA issue ' + ticketkey + ' re-opened, type ' + scanner.upper() + ', prev status "' + current_status + '", with key "' + ticketsummary + '"' )

0 commit comments

Comments
 (0)
Please sign in to comment.