diff options
author | Christopher Baines <mail@cbaines.net> | 2023-05-03 00:20:32 +0200 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-05-03 00:20:32 +0200 |
commit | fe26e18e72b9f6ddcb1f4d911f0d2c1a9125837a (patch) | |
tree | c0c25bd4630b9152458c81deb153defe08b1fe43 /guix-build-coordinator/agent-messaging | |
parent | d2c12e3522379f0bf7995b9baf932ae5f86eb633 (diff) | |
download | build-coordinator-fe26e18e72b9f6ddcb1f4d911f0d2c1a9125837a.tar build-coordinator-fe26e18e72b9f6ddcb1f4d911f0d2c1a9125837a.tar.gz |
Remove now redundant logging around gc protection
Diffstat (limited to 'guix-build-coordinator/agent-messaging')
-rw-r--r-- | guix-build-coordinator/agent-messaging/http.scm | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/guix-build-coordinator/agent-messaging/http.scm b/guix-build-coordinator/agent-messaging/http.scm index efcad50..a76fe90 100644 --- a/guix-build-coordinator/agent-messaging/http.scm +++ b/guix-build-coordinator/agent-messaging/http.scm @@ -71,17 +71,9 @@ agent-uuid password) (let* ((gnutls-ver (gnutls-version)) - (guix-ver %guix-version) - (gnutls-probably-retries-on-gc? - (or (version>=? gnutls-ver "3.7.3") - ;; guix patched gnutls to retry when interrupted by gc before - ;; gnutls released the change - (version>=? guix-ver "1.3.0-14")))) + (guix-ver %guix-version)) (simple-format (current-error-port) - "gc protection ~A (gnutls version: ~A, guix version: ~A)\n" - (if gnutls-probably-retries-on-gc? - "disabled" - "enabled") + "(gnutls version: ~A, guix version: ~A)\n" gnutls-ver guix-ver)) |