Overview
Comment: | code tidy |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.6569-multi-db-wip |
Files: | files | file ages | folders |
SHA1: |
318542508d2c6e77469720e8ac327ddf |
User & Date: | matt on 2021-02-13 21:42:13 |
Other Links: | branch diff | manifest | tags |
Context
2021-02-13
| ||
23:02 | still trying check-in: e2ce43a8fe user: matt tags: v1.6569-multi-db-wip (unpublished) | |
21:42 | code tidy check-in: 318542508d user: matt tags: v1.6569-multi-db-wip (unpublished) | |
19:16 | updated couple unit tests check-in: 22975ea8da user: matt tags: v1.6569-multi-db-wip (unpublished) | |
Changes
Modified server.scm from [a020b6a629] to [fe68ceb7c8].
︙ | |||
173 174 175 176 177 178 179 | 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 | - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + + | ;; given a path to a server log return: host port startseconds ;; any changes to number of elements returned by this fuction will dirctly affect server:record->url,server:record->id,server:kill,server:get-num-alive which uses match let (define (server:logf-get-start-info logf) (let ((rx (regexp "^SERVER STARTED: (\\S+):(\\d+) AT ([\\d\\.]+) server-id: (\\S+)"))) ;; SERVER STARTED: host:port AT timesecs server id (handle-exceptions |
︙ |
Modified tests/unittests/all-rmt.scm from [1afb8effa6] to [7374458dca].
︙ | |||
73 74 75 76 77 78 79 | 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | - + - + | ;; let's start up a server the mechanical way (system "nbfake megatest -server -") (thread-sleep! 2) ;; (test #f #t (string? (server:start-and-wait *toppath*))) (test "setup for run" #t (begin (launch:setup) (string? (getenv "MT_RUN_AREA_HOME")))) |
︙ |