-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
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
Storage_server json inhibits ert from plotting after error encountered #8452
Comments
I believe what's happening here is that the first exception takes down ERT, and it's not able to clean up the files properly (leaving the |
the json file does not seem to be used any more. removing all reads/checks of it does not impact our tests. also tested plotter with snake oil case. |
this issue seems to be caused by ert not closing base_services on mac when ert goes down unexpectedly. dark storage will continue running and responding to base_url/healthcheck causing ert to think that it already has a running dark storage when starting up. |
Whenever Ert encounters an error during plotting, you cannot plot storage content anymore.
Ert will just hang.
Reproduce by:
First run poly-example to have something to plot.
Add some error, for example adding
raise ValueError()
at the bottom ofobservations_for_key
inplot_api.py
Run ert and have the error raised when trying to plot.
Revert code snippet, and observe that you cannot plot content anymore.
Ert will just hang.
I've diffed the output and found this;
Removing that json file seems to unclog plotting again.
The text was updated successfully, but these errors were encountered: