Overview
Comment: | Improved recovery when communications goes bad in http transport |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.60 |
Files: | files | file ages | folders |
SHA1: |
2c6622a2b742bfcd4a2a7be929b2b12e |
User & Date: | matt on 2015-03-30 22:49:51 |
Other Links: | branch diff | manifest | tags |
References
2015-04-01
| ||
22:11 | • Fixed ticket [ec89f803f2]: http-client error when server is dead plus 5 other changes artifact: e462c888fb user: matt | |
21:54 | • Fixed ticket [d33ba94e7e]: Communication to server failing with message: WARNING: Communication failed, trying call to http-transport:client-api-send-receive again. plus 5 other changes artifact: 23c1326599 user: matt | |
Context
2015-03-31
| ||
08:24 | Added makefile to batchsim check-in: 37efe35171 user: mrwellan tags: v1.60 | |
2015-03-30
| ||
22:49 | Improved recovery when communications goes bad in http transport check-in: 2c6622a2b7 user: matt tags: v1.60 | |
2015-03-27
| ||
11:22 | Cleaned up batchsim check-in: 47f6163e4c user: mrwellan tags: v1.60 | |
Changes
Modified http-transport.scm from [c3c2fc0fe7] to [e2a8a6ff8e].
︙ | |||
270 271 272 273 274 275 276 | 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 | - + - - - + + + + | exn (begin (set! success #f) (debug:print 0 "WARNING: failure in with-input-from-request to " fullurl ".") (debug:print 0 " message: " ((condition-property-accessor 'exn 'message) exn)) (hash-table-delete! *runremote* run-id) ;; Killing associated server to allow clean retry.") |
︙ |
Modified tests/unittests/basicserver.scm from [28418079ab] to [f2f7d0aa9d].
︙ | |||
137 138 139 140 141 142 143 | 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | - + | (thread-sleep! 1) (case test-state ((start) (print "Trying to start server") (server:kind-run run-id) (loop 'server-started)) ((server-started) |
︙ |