Authorization Packages record the same state changes happening twice in the audit historyIssue When transitioning an Authorization Package from Step "Select" to "Implement", it is noted in the Audit history of that record that this is written twice, on separate updates, but is duplicated nonetheless.For example, in update #7, the Old value will be "Select", and the New value will be "Implement". Then, about 3-5 seconds later, another entry will post the same Old and New values, essentially duplicating the earlier update. The same behavior occurs from Step "Authorize" to "Monitor".ReleaseSan Diego, Patch 9aCauseThis is due to a defect in ServiceNow that is being handled internally with ServiceNow Development.ResolutionAttached to this knowledge article is the provided workaround for said defect, an update set (Name = "Authorization Package Duplicate Audit Entry Fix") containing an update to Script Include "AuthPackageControlProcessorBase". The update is as follows: Line 33-39 were:this.authPackage.setValue('authorization_decision', approval.getValue('state'));var gdt = new GlideDateTime(approval.getValue('sys_updated_on'));this.authPackage.setValue('authorization_date', gdt);var comments = this._getAuthorizationComments(approval.getUniqueValue(), defaultComments);this.authPackage.setValue('authorization_comments', comments);this.authPackage.update();And they have now been replaced with:var authorizationinfo = new GlideRecord("sn_irm_cont_auth_pack");authorizationinfo.get(this.authPackageId);authorizationinfo.setValue('authorization_decision',approval.getValue('state'));var gdt = new GlideDateTime(approval.getValue('sys_updated_on'));authorizationinfo.setValue('authorization_date',gdt);var comments = this._getAuthorizationComments(approval.getUniqueValue(), defaultComments);authorizationinfo.setValue('authorization_comments',comments);authorizationinfo.update();