# What this PR does These celery tasks have not been used for more than one week (since [v1.3.25](https://github.com/grafana/oncall/releases/tag/v1.3.25) which released an improvement for Grafana Alerting integration) ## Checklist - [ ] Unit, integration, and e2e (if applicable) tests updated - [x] Documentation added (or `pr:no public docs` PR label added if not required) - [x] `CHANGELOG.md` updated (or `pr:no changelog` PR label added if not required)
9 lines
503 B
Python
9 lines
503 B
Python
from common.custom_celery_tasks import shared_dedicated_queue_retry_task
|
|
|
|
|
|
@shared_dedicated_queue_retry_task(autoretry_for=(Exception,), retry_backoff=True, max_retries=10)
|
|
def disconnect_integration_from_alerting_contact_points(alert_receive_channel_id):
|
|
from apps.alerts.models import AlertReceiveChannel
|
|
|
|
alert_receive_channel = AlertReceiveChannel.objects_with_deleted.get(pk=alert_receive_channel_id)
|
|
alert_receive_channel.grafana_alerting_sync_manager.disconnect_all_contact_points()
|