Overview
Comment: | Needed to follow links by default in sretrieve |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.60 |
Files: | files | file ages | folders |
SHA1: |
15bf67d66a300a721948f00ad08d016f |
User & Date: | mrwellan on 2015-12-17 14:31:18 |
Other Links: | branch diff | manifest | tags |
Context
2016-01-06
| ||
09:48 | Some fixes to address issues created by the per-section config processing code check-in: 2316fa6bc4 user: mrwellan tags: v1.60 | |
2015-12-17
| ||
14:31 | Needed to follow links by default in sretrieve check-in: 15bf67d66a user: mrwellan tags: v1.60 | |
2015-12-13
| ||
23:06 | Completed sretrieve check-in: 07c1d52486 user: matt tags: v1.60 | |
Changes
Modified rpctest/rpctest-continuous-client.scm from [9a7f357955] to [ea7c1d49cf].
︙ | |||
15 16 17 18 19 20 21 | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | - + | (define operation (string->symbol (car (command-line-arguments)))) (define param (cadr (command-line-arguments))) (print "Operation: " operation ", param: " param) ;; have a pool of db's to pick from (define *dbpool* '()) (define *pool-mutex* (make-mutex)) |
︙ | |||
45 46 47 48 49 50 51 | 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | - + + + + + + + + | (if (eq? operation 'server) (tcp-listen (rpc:default-server-port)) (tcp-listen 0))) ;; Start server thread (define rpc:server (make-thread |
︙ |
Modified sretrieve.scm from [bdaa86239f] to [d298262aee].
︙ | |||
151 152 153 154 155 156 157 | 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 | - + | (exit 1))) (sretrieve:db-do configdat (lambda (db) (sretrieve:register-action db "get" retriever datadir comment))) (change-directory datadir) |
︙ |