934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
|
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
|
-
-
+
+
|
(cond
((equal? syncer "brute-force-sync")
(server:writable-watchdog-bruteforce dbstruct))
((equal? syncer "delta-sync")
(server:writable-watchdog-deltasync dbstruct))
(else
(debug:print-error 0 *default-log-port* "Unknown server/sync-method specified ("syncer") - valid values are brute-force-sync and delta-sync.")
(exit 1))
(debug:print 1 *default-log-port* "INFO: ["(common:human-time)"] Syncer started (method="syncer")")))))
(exit 1)))
(debug:print 1 *default-log-port* "INFO: ["(common:human-time)"] Syncer started (method="syncer")"))))
(debug:print-info 13 *default-log-port* "watchdog done."))
(debug:print-info 13 *default-log-port* "no need for watchdog on non-homehost"))))
(define (std-exit-procedure)
;;(common:telemetry-log-close)
(on-exit (lambda () 0))
|