Overview
Comment: | corrected misnamed funciton |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.80-refactor-fix1 |
Files: | files | file ages | folders |
SHA1: |
a9180a343b31f70406bfe9cf11803752 |
User & Date: | matt on 2023-01-18 21:53:49 |
Other Links: | branch diff | manifest | tags |
Context
2023-01-18
| ||
22:11 | Pulled in two needed fixes. check-in: 3936bce446 user: matt tags: v1.80 | |
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 | |
Changes
Modified client.scm from [c0f004bcfc] to [a82eed2b46].
︙ | ︙ | |||
123 124 125 126 127 128 129 | (debug:print-info 2 *default-log-port* "connected to " (client:get-url runremote)) runremote) (client:setup-http areapath runremote remaining-tries: (- remaining-tries 1))) (begin ;; login failed but have a server record, clean out the record and try again (debug:print-info 0 *default-log-port* "client:setup, login unsuccessful, will attempt to start server ... start-res=" start-res ", server-dat=" server-dat) ;; had runid. Fixes part of Randy;s ticket 1405717332 (http-transport:close-connections runremote) (thread-sleep! 1) | | | 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | (debug:print-info 2 *default-log-port* "connected to " (client:get-url runremote)) runremote) (client:setup-http areapath runremote remaining-tries: (- remaining-tries 1))) (begin ;; login failed but have a server record, clean out the record and try again (debug:print-info 0 *default-log-port* "client:setup, login unsuccessful, will attempt to start server ... start-res=" start-res ", server-dat=" server-dat) ;; had runid. Fixes part of Randy;s ticket 1405717332 (http-transport:close-connections runremote) (thread-sleep! 1) (client:setup-http areapath runremote remaining-tries: (- remaining-tries 1)) ))) (begin ;; no server registered ;; (server:kind-run areapath) (server:start-and-wait areapath) (debug:print-info 0 *default-log-port* "client:setup, no server registered, remaining-tries=" remaining-tries) (thread-sleep! 1) ;; (+ 5 (random (- 20 remaining-tries)))) ;; give server a little time to start up, randomize a little to avoid start storms. (client:setup-http areapath runremote remaining-tries: (- remaining-tries 1))))) |
︙ | ︙ |