Overview
Comment: | Removed bad call to close-connection! |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.80-refactor-fix1 |
Files: | files | file ages | folders |
SHA1: |
463fffbd79ed17b78b2bb59f886dd96b |
User & Date: | matt on 2023-01-18 21:46:42 |
Other Links: | branch diff | manifest | tags |
Context
2023-01-18
| ||
21:53 | corrected misnamed funciton Leaf check-in: a9180a343b user: matt tags: v1.80-refactor-fix1 | |
21:46 | Removed bad call to close-connection! check-in: 463fffbd79 user: matt tags: v1.80-refactor-fix1 | |
2023-01-16
| ||
10:00 |
Major refactor/clean up of client connection stuff. Removed old crufty approach of having both client and server side calls in http-transport. Plan would be to eventually get rid of http-transport.
Open files slowly grows. bad argument type in http-transport. Line 285 (close-connection! fullurl) is wrong. check-in: 67b18cc991 user: matt tags: v1.80-refactor | |
Changes
Modified http-transport.scm from [7539e23e31] to [c9c181def8].
︙ | ︙ | |||
278 279 280 281 282 283 284 | (debug:print 0 *default-log-port* "WARNING: failure in with-input-from-request to " fullurl ".") (debug:print 0 *default-log-port* " message: " msg ", exn=" exn) (debug:print 0 *default-log-port* " cmd: " cmd " params: " params " key:" (or server-id "thekey")) (debug:print 0 *default-log-port* " call-chain: " call-chain))) ;; what if another thread is communicating ok? Can't happen due to mutex (http-transport:close-connections runremote) (mutex-unlock! *http-mutex*) | | | 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 | (debug:print 0 *default-log-port* "WARNING: failure in with-input-from-request to " fullurl ".") (debug:print 0 *default-log-port* " message: " msg ", exn=" exn) (debug:print 0 *default-log-port* " cmd: " cmd " params: " params " key:" (or server-id "thekey")) (debug:print 0 *default-log-port* " call-chain: " call-chain))) ;; what if another thread is communicating ok? Can't happen due to mutex (http-transport:close-connections runremote) (mutex-unlock! *http-mutex*) ;; (close-connection! fullurl) (db:obj->string #f)) (with-input-from-request ;; was dat fullurl (list (cons 'key (or server-id "thekey")) (cons 'cmd cmd) (cons 'params sparams)) read-string)) |
︙ | ︙ |