summaryrefslogtreecommitdiff
path: root/modules/calendar-sync.el
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
commit0d93fcd23591c093f3be2af3572d41b76cabcb52 (patch)
treeaf060bea002c1a5b7808e35dd1b84cd1f74b5e9c /modules/calendar-sync.el
parentdfa324aebcafd66929e4d2204d8ea3a05edab73e (diff)
downloaddotemacs-0d93fcd23591c093f3be2af3572d41b76cabcb52.tar.gz
dotemacs-0d93fcd23591c093f3be2af3572d41b76cabcb52.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/calendar-sync.el')
-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 732798c0..1fbac8db 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))