Skip to content

Commit

Permalink
Fix #2476
Browse files Browse the repository at this point in the history
  • Loading branch information
joernu76 committed Aug 22, 2024
1 parent 4344e00 commit 4ed0c08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mslib/msui/mscolab.py
Original file line number Diff line number Diff line change
Expand Up @@ -1788,7 +1788,7 @@ def archive_operation(self):
"token": self.token,
"op_id": self.active_op_id,
# when a user archives an operation we set the max “natural” integer in days
"days": sys.maxsize,
"days": 99999, # larger values run into a lot of issues
}
url = urljoin(self.mscolab_server_url, 'set_last_used')
try:
Expand Down

0 comments on commit 4ed0c08

Please sign in to comment.