| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Trace web requests even when they fail with an error code, not just
when they succeed with a 2xx code.
|
|
This will aid debugging and let users report issues more precisely and
reproducibly.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
We need an explicit reference to the TLS certificates directory so we
can pass it on into our tool call containers.
|
|
|
|
Prior to this, when an i/o-decoding-error was raised (as is expected
for binary files), we would exit the call-with-input-file procedure
non-locally, failing to close the port and leaving it up to the
garbage collector to close it later. This leaks file descriptors and
could result in a "Too many open files" error.
Change-Id: Ie21c1be41f6af62335dd8bf64aa603551e58cb4d
|
|
|
|
|
|
|
|
The guix package now depends on guile-next. Using guile-3.0 causes
incompatibility warnings.
|
|
This obviates the need for -L since GUILE_LOAD_PATH and friends are
already set in pre-inst-env.
|
|
This can be used to pass in optimization flags such as -O0, that are
useful when debugging.
|
|
|
|
With the state monad, we no longer have to explicitly thread state
through every function call and return it as one of two values. As a
result, the code now reads more naturally.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|