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
We expect the gr.field to now be None -- in actuality it is still some value as the failed get() did not update _current.
Actual GlideRecord behaves in this matter:
letgr=newGlideRecord('incident')gr.initialize()gr.short_description='this is a test'gs.info(gr.short_description)gr.get('sys_id')gs.info(gr.short_description)
will give us
my_scope: this is a test
my_scope:
The text was updated successfully, but these errors were encountered:
When doing something as such:
We expect the
gr.field
to now be None -- in actuality it is stillsome value
as the failedget()
did not update _current.Actual GlideRecord behaves in this matter:
will give us
The text was updated successfully, but these errors were encountered: