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
The EstimatorV2 run call waits for results to come back in the main Python thread, thus blocking any further work.
EstimatorV2
run
Any call to EstimatorV2
Calls to run return a job, but otherwise do not block the main process.
Remove the internal calls that wait on the results
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Informations
What is the current behavior?
The
EstimatorV2
run
call waits for results to come back in the main Python thread, thus blocking any further work.Steps to reproduce the problem
Any call to
EstimatorV2
What is the expected behavior?
Calls to
run
return a job, but otherwise do not block the main process.Suggested solutions
Remove the internal calls that wait on the results
The text was updated successfully, but these errors were encountered: