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
doing a gr.get(sys_id) does not show any errors when we have a RoleException
gr.get(sys_id)
doing it via gr.query() however does -- need this to be more consistent
gr.query()
e.g.
test = self.client.GlideRecord('sys_atf_test') test.add_query('sys_id', sys_id) test.query()
vs
test = self.client.GlideRecord('sys_atf_test') test.get(sys_id)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
doing a
gr.get(sys_id)
does not show any errors when we have a RoleExceptiondoing it via
gr.query()
however does -- need this to be more consistente.g.
vs
The text was updated successfully, but these errors were encountered: