aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-11-17 14:11:22 -0600
committerCraig Jennings <c@cjennings.net>2025-11-17 14:11:22 -0600
commitf0518e855f506d2bff1e7524fdfca40f291d4cdc (patch)
treeb18da441f2162c3720d0e00acc31f9fd64125e22 /modules
parent1922c6e60e993abb3d685ddeca4dce1993568ee6 (diff)
downloaddotemacs-f0518e855f506d2bff1e7524fdfca40f291d4cdc.tar.gz
dotemacs-f0518e855f506d2bff1e7524fdfca40f291d4cdc.zip
fix: increase calendar-sync curl timeout from 10 to 30 seconds
10-second timeout was too aggressive for slower networks or delayed Google servers. Increased to 30 seconds to prevent timeout errors while still preventing indefinite hangs.
Diffstat (limited to 'modules')
-rw-r--r--modules/calendar-sync.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/calendar-sync.el b/modules/calendar-sync.el
index 9fbfbeaeb..69059b7f3 100644
--- a/modules/calendar-sync.el
+++ b/modules/calendar-sync.el
@@ -309,7 +309,7 @@ invoked when the fetch completes, either successfully or with an error."
(make-process
:name "calendar-sync-curl"
:buffer buffer
- :command (list "curl" "-s" "-L" "-m" "10" url)
+ :command (list "curl" "-s" "-L" "-m" "30" url)
:sentinel
(lambda (process event)
(when (memq (process-status process) '(exit signal))