Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating TaskDetails-object makes Task-object undeleteable. #1082

Open
dekiesel opened this issue Jun 4, 2024 · 1 comment
Open

Updating TaskDetails-object makes Task-object undeleteable. #1082

dekiesel opened this issue Jun 4, 2024 · 1 comment

Comments

@dekiesel
Copy link

dekiesel commented Jun 4, 2024

Problem:

task=bucket.create_task("testtask")
taskdetails=task.get_details()
taskdetails.update(description="testdescription")
task.delete()

results in:

Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/local/lib/python3.12/site-packages/O365/planner.py", line 378, in delete
    response = self.con.delete(url, headers={'If-Match': self._etag})
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.12/site-packages/O365/connection.py", line 941, in delete
    return self.oauth_request(url, 'delete', **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.12/site-packages/O365/connection.py", line 887, in oauth_request
    return self._internal_request(self.session, url, method, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.12/site-packages/O365/connection.py", line 848, in _internal_request
    raise HTTPError('{} | Error Message: {}'.format(e.args[0], error_message),
requests.exceptions.HTTPError: 409 Client Error: Conflict for url: https://graph.microsoft.com/v1.0/planner/tasks/JqRjj7vHKkS5QbddA3F_RJgAFjk9 | Error Message: The attempted changes conflicted with already accepted changes. Read the latest state and resolve differences.

Workaround
Refresh the task object without actually changing it.


task.update(title=task.title)
task.delete()

It would be nice if updating the TaskDetails-object also would refresh the Task-object.

@alejcas
Copy link
Member

alejcas commented Jun 14, 2024

PR are very welcome. If you have the time and know how to properly solve this I would be grateful if you submit a PR.

Thank

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants