Overview
Comment: | Missing fix |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.80 |
Files: | files | file ages | folders |
SHA1: |
c608ac13c7cff6269e209091f1f435c8 |
User & Date: | matt on 2023-01-18 22:17:11 |
Other Links: | branch diff | manifest | tags |
Context
2023-01-20
| ||
07:29 | Added artifacts (will replace pkts) check-in: 7fa5291a80 user: matt tags: v1.80 | |
2023-01-19
| ||
19:52 | Refactor start check-in: f7272f26b7 user: matt tags: v1.80-reshape | |
03:46 | client setup was not updating runremote in some scenarios check-in: 3f4bf437c0 user: matt tags: v1.80-toomanyfiles | |
2023-01-18
| ||
22:17 | Missing fix check-in: c608ac13c7 user: matt tags: v1.80 | |
22:13 | Missing fix check-in: ff975ecd14 user: matt tags: v1.80 | |
Changes
Modified http-transport.scm from [c9c181def8] to [c450806bbf].
︙ | ︙ | |||
337 338 339 340 341 342 343 | (handle-exceptions exn (begin (print-call-chain *default-log-port*) (debug:print-error 0 *default-log-port* " closing connection failed with error: " ((condition-property-accessor 'exn 'message) exn) ", exn=" exn)) (if (args:any-defined? "-server" "-execute" "-run") (debug:print-info 0 *default-log-port* "Closing connections to "api-dat)) | | | 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 | (handle-exceptions exn (begin (print-call-chain *default-log-port*) (debug:print-error 0 *default-log-port* " closing connection failed with error: " ((condition-property-accessor 'exn 'message) exn) ", exn=" exn)) (if (args:any-defined? "-server" "-execute" "-run") (debug:print-info 0 *default-log-port* "Closing connections to "api-dat)) (if api-dat (close-connection! api-dat)) (remote-conndat-set! runremote #f) #t)) #f)) ;; run http-transport:keep-running in a parallel thread to monitor that the db is being ;; used and to shutdown after sometime if it is not. ;; |
︙ | ︙ |