From ed23b0034e95c94aec3de10df5b124aab2a89906 Mon Sep 17 00:00:00 2001 From: Dzming Li Date: Wed, 4 Mar 2026 10:30:36 +0800 Subject: [PATCH] Change connect_sync to 5s --- Scripts/python/src/calendar/calendar-events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/python/src/calendar/calendar-events.py b/Scripts/python/src/calendar/calendar-events.py index 02ecf41a1..e080eb82f 100755 --- a/Scripts/python/src/calendar/calendar-events.py +++ b/Scripts/python/src/calendar/calendar-events.py @@ -71,7 +71,7 @@ for source in sources: print(f"\nProcessing calendar: {calendar_name}", file=sys.stderr) try: - client = ECal.Client.connect_sync(source, ECal.ClientSourceType.EVENTS, 1, None) + client = ECal.Client.connect_sync(source, ECal.ClientSourceType.EVENTS, 5, None) start_dt = datetime.fromtimestamp(start_time) end_dt = datetime.fromtimestamp(end_time)