Story points is not set permanently

Ramu Pandey
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
August 29, 2023

I am giving value of story points through JIRA python api but it styas for some seconds and get disappear but if i try manually through separate file but not iterating whole bunch of issues then i can put the value permanently.
This is the snippet of my code that is in loop for different tickets:

#story points updation
                new_issue = jira.issue(In_key)
                new_issue.update( fields={
                    'customfield_12592': s})   #s is story points getting from excel

this is what i did while did separately(hard coding)
issue = jira.issue('AADTEMP-859')
issue.update( fields={"customfield_12592": 12}
    )
print(issue.fields.summary)

1 answer

0 votes
Mohamed Benziane
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 29, 2024

Hi,

Can you show us the whole code. If you can do it separately so there is something in your loop.

Suggest an answer

Log in or Sign up to answer