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
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 storage_server.json behind). The next time ERT starts it tries to pick up the session from this file instead of starting a new (the presence of the file indicates a running session that you can connect to), but it isn't valid anymore.
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: