Azure Sentinel Incident Profile ErrorIssue Azure Sentinel Incident Profile changes the state to "Error".CauseProfile changes to "Error" state in case of an error in connecting to corresponding Microsoft Endpoint, Currently once the profile changes to error state it will not be executed again for ingestion until the actual error is resolved and profile state is set to "Waiting" manually.ResolutionIn case profile state changes to "Error", once the error is resolved users with sn_si.admin role can manually set the state of the profile back to "waiting" from the Profile List View.In case the customer wants to execute the profiles in the "Error" state as well, please make the below changes:1. Go to "AzureSentinelProfileProcessor" script include.2. Go to "_getProfiles" method in script include.3. Replace line#31 with the below:OOB code line : "query.addQuery(this._PROPERTIES.PROFILE_COLUMNS.STATE,"waiting");"Replace with : "query.addQuery(this._PROPERTIES.PROFILE_COLUMNS.STATE, "IN" ,["waiting","error"]);"This change will consider profiles in the "Error" state as well for execution. In case the current run is successful, data will be ingested from the time when the profile is last executed successfully.