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
_AiocaShim.get('pv')
Currently the single-pv version raises the communication error, while the list version returns a list of such errors.
The two should act similarly
poking around #73 , this is something I saw in the past but never ironed out
from superscore.control_layers import ControlLayer; cl = ControlLayer()
res_single = cl.get('nonsense:non:working:pv')
res_list = cl.get(['nonsense', 'nonsense2'])
res_single
res_list
Catch the exception in the single version and return it?
The text was updated successfully, but these errors were encountered:
shilorigins
No branches or pull requests
Current Behavior
Currently the single-pv version raises the communication error, while the list version returns a list of such errors.
Expected Behavior
The two should act similarly
Context / environment
poking around #73 , this is something I saw in the past but never ironed out
Steps to Reproduce (for bugs)
from superscore.control_layers import ControlLayer; cl = ControlLayer()
res_single = cl.get('nonsense:non:working:pv')
(should raise)res_list = cl.get(['nonsense', 'nonsense2'])
(should return list)res_single
,res_list
Suggested Solution
Catch the exception in the single version and return it?
The text was updated successfully, but these errors were encountered: