diff options
author | Christopher Baines <mail@cbaines.net> | 2024-05-11 07:30:12 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-05-11 07:30:12 +0100 |
commit | 32c4ff9c7e08f170b5f0b4a2bb2f42730c4aa48d (patch) | |
tree | 21dec1d0e197770a7f16bc49f05561d95581cefd | |
parent | 510144000de70323b4946b1eb9bd31b29aa5bec0 (diff) | |
download | nar-herder-32c4ff9c7e08f170b5f0b4a2bb2f42730c4aa48d.tar nar-herder-32c4ff9c7e08f170b5f0b4a2bb2f42730c4aa48d.tar.gz |
Set %file-port-name-canonicalization to 'none
As this reduces syscalls.
-rw-r--r-- | scripts/nar-herder.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/nar-herder.in b/scripts/nar-herder.in index fafcf9f..515b98a 100644 --- a/scripts/nar-herder.in +++ b/scripts/nar-herder.in @@ -611,4 +611,5 @@ (lambda (port) (simple-format port "~A\n" (getpid)))))) - (run-nar-herder-service opts lgr)))) + (with-fluids ((%file-port-name-canonicalization 'none)) + (run-nar-herder-service opts lgr))))) |