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
Originally reported by: Giovanni Pizzi (Bitbucket: pizzi, GitHub: giovannipizzi)
Right now, the base Node class is returned.
First, we need to discuss if this is ok.
In particular, it may be good maybe to return the 'closest' existing class. A specific issue I have is:
verdi calculation list -p20 -a
05/30/2016 06:19:16 PM, aiida: [ERROR] Unable to find plugin for type 'calculation.job.phonopy.PhonopyCalculation.' (node= 222733), will use base Node class
05/30/2016 06:19:16 PM, aiida: [ERROR] Unable to find plugin for type 'calculation.job.phonopy.PhonopyCalculation.' (node= 222752), will use base Node class
05/30/2016 06:19:16 PM, aiida: [ERROR] Unable to find plugin for type 'calculation.job.phonopy.PhonopyCalculation.' (node= 222773), will use base Node class
05/30/2016 06:19:16 PM, aiida: [ERROR] Unable to find plugin for type 'calculation.job.phonopy.PhonopyCalculation.' (node= 222794), will use base Node class
05/30/2016 06:19:16 PM, aiida: [ERROR] Unable to find plugin for type 'calculation.job.phonopy.PhonopyCalculation.' (node= 222817), will use base Node class
Error (AttributeError): 'Node' object has no attribute '_get_state_string'
Specifically, I don't have the plugin in this branch, a bare "Node" is returned, this does not have the _get_state_string, and therefore I do not see any calculation in the output (not even the other ones). One simple workaround is to fix the 'verdi calculation list' function, but it would be more robust to return in this case e.g. a JobCalculation.
Originally reported by: Giovanni Pizzi (Bitbucket: pizzi, GitHub: giovannipizzi)
Right now, the base Node class is returned.
First, we need to discuss if this is ok.
In particular, it may be good maybe to return the 'closest' existing class. A specific issue I have is:
Specifically, I don't have the plugin in this branch, a bare "Node" is returned, this does not have the _get_state_string, and therefore I do not see any calculation in the output (not even the other ones). One simple workaround is to fix the 'verdi calculation list' function, but it would be more robust to return in this case e.g. a JobCalculation.
The text was updated successfully, but these errors were encountered: