Overview
Comment: | Added exception handler to stats gathering |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.60 |
Files: | files | file ages | folders |
SHA1: |
87aa55e5d2453105cfff2a40fd8bc162 |
User & Date: | matt on 2014-10-20 22:48:41 |
Other Links: | branch diff | manifest | tags |
Context
2014-10-21
| ||
14:02 | fix for typo check-in: 4496ba9a2a user: mrwellan tags: v1.60 | |
2014-10-20
| ||
22:48 | Added exception handler to stats gathering check-in: 87aa55e5d2 user: matt tags: v1.60 | |
22:21 | Added compression for messages over http check-in: a73f871b7d user: matt tags: v1.60 | |
Changes
Modified rmt.scm from [d26a3cbeff] to [752c6895c8].
︙ | |||
98 99 100 101 102 103 104 | 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | + + + + + - - - - - - - - + + + + + + + + | (begin (debug:print-info 3 "Max average query, " (inexact->exact (round (cdr curr-max))) "ms (" (car curr-max) ") exceeds " max-avg-qry ", try starting server ...") (server:kind-run run-id)))) (rmt:open-qry-close-locally cmd run-id params))))) (define (rmt:update-db-stats rawcmd params duration) (mutex-lock! *db-stats-mutex*) (handle-exceptions exn (begin (debug:print 0 "WARNING: stats collection failed in update-db-stats") #f) ;; if this fails we don't care, it is just stats |
︙ |