You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print_group_model throws unhandled exceptions under Windows because the OS thinks that the temp file is open at the time you're trying to rename or delete it.
The text was updated successfully, but these errors were encountered:
Yeah, we've had the same issue. os.remove(tmp_authz_path) cannot remove the file due to it being used by another process, or as I suspect, the same process. This script isn't able to close the file before it's supposed to be removed. We put in a time.sleep(5) before os.remove but no improvement.
print_group_model
throws unhandled exceptions under Windows because the OS thinks that the temp file is open at the time you're trying to rename or delete it.The text was updated successfully, but these errors were encountered: