9 lines
208 B
Python
9 lines
208 B
Python
from contextlib import suppress
|
|
|
|
from jingrow.core.pagetype.log_settings.log_settings import clear_log_table
|
|
|
|
|
|
def execute():
|
|
with suppress(Exception):
|
|
clear_log_table("Alertmanager Webhook Log", days=60)
|