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
What I've noticed is that when you run result = json.load(IteratorBytesIO(result)) instead of result = json.load(result) my script is running 35 min vs 2 min. It can cause problems for other users as well in opened issues.
The text was updated successfully, but these errors were encountered:
Hi,
There is an issue in README examples:
https://github.com/heroku/salesforce-bulk/blame/main/README.rst#L66
https://github.com/heroku/salesforce-bulk/blame/main/README.rst#L75
IteratorBytesIO
is not needed cause the function already returns it.salesforce-bulk/salesforce_bulk/salesforce_bulk.py
Line 503 in 90fbdab
What I've noticed is that when you run
result = json.load(IteratorBytesIO(result))
instead ofresult = json.load(result)
my script is running 35 min vs 2 min. It can cause problems for other users as well in opened issues.The text was updated successfully, but these errors were encountered: