added error message for parameter bug - #41
Conversation
|
I'm not sure if I understand the problem correctly. Something similar like this failed in your case: Correct? The bugfix looks more like treating the symptoms and not the cause, but I need to understand the cause better. P.S.: Sorry for the late response, I was on vacation. |
|
So the issue was that during pickle.load, the whole Sisyphus config (starting from |
|
Shall we merge @michelwi ? I see no problem adding the code, even if it's not relevant anymore. |
|
Could we check for a more specific exception or reraise the original exception together with the explanation. Just so if any other error occured the user is not confused. |
|
From my memory I think this was a |
I had a strange bug, where opening the pickle file would result in the whole config to be loaded again, resulting conflicting emtpy jobs. It took some time until I could find a wrong parameter as cause (it was a wrong class added to a dict which was part of a correct class passed as parameter, the inputs are unfortunately quite complicated sometimes).