aboutsummaryrefslogtreecommitdiff
path: root/build-aux/hydra
diff options
context:
space:
mode:
authorMichael Rohleder <mike@rohleder.de>2020-08-16 04:08:53 +0200
committerMathieu Othacehe <othacehe@gnu.org>2020-08-16 09:43:29 +0200
commit5630675d4cdf117bd65c1f11d7ac150400100c1d (patch)
tree6342f09b36d4e3cc74aff9741cd47c58c135c804 /build-aux/hydra
parentfad176c4e20424c3dacddac8820237cf0b93a2c0 (diff)
downloadguix-5630675d4cdf117bd65c1f11d7ac150400100c1d.tar.gz
guix-5630675d4cdf117bd65c1f11d7ac150400100c1d.zip
gnu: libmicrohttpd: Update to 0.9.71.
* gnu/packages/gnunet.scm (libmicrohttpd): Update to 0.9.71. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Diffstat (limited to 'build-aux/hydra')
0 files changed, 0 insertions, 0 deletions
s elsewhere; namely, using 'operating-system-services' instead of 'operating-system-user-services'. Maxim Cournoyer 2022-03-17services: nfs: Define rpcbind-shepherd-service at the top level....Attempting to use the 'nfs-service-type' as part of a computed operating-system definition, the following exception would be thrown: ice-9/boot-9.scm:1685:16: In procedure raise-exception: ERROR: 1. &ambiguous-target-service-error: service: #<<service> type: #<service-type rpcbind 7f7529853780> value: #<<rpcbind-configuration> rpcbind: #<package rpcbind@1.2.6 gnu/packages/onc-rpc.scm:87 7f75389e78f0> warm-start?: #t>> target-type: #<service-type shepherd-root 7f7529396080> 2. &message: "more than one target service of type 'shepherd-root'" The problem was that the rpcbind shepherd-service object was dynamically instantiated every time the rpcbind-service-type would be called, causing multiple objects in some situations, resulting in the above condition. * gnu/services/nfs.scm (rpcbind-service-type): Refactor and adjust in a way to extract... (rpcbind-shepherd-service): ... this new procedure. Maxim Cournoyer