We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I found an issue when trying to download big ZIP files (~200 MB) with the HTTP().download() method.
HTTP().download()
Because currently arguments are always evaluated, the response.text is taking quite some time to compute (practically freezing).
response.text
Here is the code exactly where the problem is occurring:
https://github.com/robocorp/rpaframework/blob/3d57f4237c03c53ee290f8223280a21deda126af/packages/main/src/RPA/HTTP.py#L23C53-L23C66
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I found an issue when trying to download big ZIP files (~200 MB) with the
HTTP().download()
method.Because currently arguments are always evaluated, the
response.text
is taking quite some time to compute (practically freezing).Here is the code exactly where the problem is occurring:
https://github.com/robocorp/rpaframework/blob/3d57f4237c03c53ee290f8223280a21deda126af/packages/main/src/RPA/HTTP.py#L23C53-L23C66
The text was updated successfully, but these errors were encountered: