Skip to content

Commit

Permalink
Fix partial update for sprint
Browse files Browse the repository at this point in the history
  • Loading branch information
marcotollini committed Nov 8, 2024
1 parent ef10e1a commit f8061c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jira/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -5391,7 +5391,7 @@ def update_sprint(
payload["goal"] = goal

url = self._get_url(f"sprint/{id}", base=self.AGILE_BASE_URL)
r = self._session.put(url, data=json.dumps(payload))
r = self._session.post(url, data=json.dumps(payload))

return json_loads(r)

Expand Down

0 comments on commit f8061c7

Please sign in to comment.