datafoo
datafoo
The timestamps `inserted_at` and `updated_at` in `projection_versions` table use the PostgreSQL type `timestamp without time zone`. Since `inserted_at` and `updated_at` are to be implicitly interpreted as UTC, why not making...
A uuid with characters outside the hexadecimal characters is wrongly validated. Example: `a462cc9d-4322-4c96-a195-f8e1b00881fg` ``` iex(1)> Vex.Validators.Uuid.validate("a462cc9d-4322-4c96-a195-f8e1b00881fg", format: :default) :ok iex(2)> UUID.info("a462cc9d-4322-4c96-a195-f8e1b00881fg") {:error, "Invalid argument; Not a valid UUID: a462cc9d-4322-4c96-a195-f8e1b00881fg"} ```
I am trying Colmena 0.4 coming from NixOps and I was glad to see that option `deployment.keys..path` exists. However, it is missing from the documentation. Could this option be documented?
I tried to build a machine with Colmena but I could not because I did not manage to set 'sandbox' to 'relaxed' despite using `--nix-option`. In fact `--nix-option` seems to...
When running `nixops check`, I sometime observe the `Connection closed by authenticating user root` log on the target machines. When this happens `nixops check` displays Up = No for the...
Here are a few facts about `nixops`: - For quite a while, `nixops` does not have a stable release working without disabling security warnings (https://github.com/NixOS/nixops/issues/1532) - Many opened issues seem...
I am using NixOps 2 with traditional (non-flake) deployments. When I run `nixops list` from the directory containing the `nixops.nix` file for my `berlin.example.com` deployment, the results are wrong. The...
**Describe the bug** It is not possible to stop a git pre-commit hook after `lingui extract --clean` has started, even after `lingui extract --clean` has finished. **To Reproduce** In one...
PostgreSQL [indicates](https://www.postgresql.org/docs/current/locale.html#id-1.6.11.3.5): > The drawback of using locales other than C or POSIX in PostgreSQL is its performance impact. It slows character handling and prevents ordinary indexes from being used...