Results 297 issues of Peter A. Jonsson

After running `datacube system init` on a fresh database, I had to look in the code to figure out what the created users are called, and according to my `git...

documentation

After running `datacube system init` with the postgis driver, this is how things show up in psql: ``` datacube=# \du+ List of roles Role name | Attributes | Description ------------+------------------------------------------------------------+-------------...

The `uninitialised_postgres_db` fixture in the integration tests is parameterized over two time zones. This effectively doubles the number of tests that have to be run, and that also doubles the...

Running ` uv run pytest tests/test_eo3converter.py::test_s1_nrb` inside the Docker container takes 29s for me. My CPU does nothing during those 29s. Here's a reproducer (which is the same thing that...

The instructions in `docs/source/installation/setup/macosx.rst` use `sudo apt install make` which surprised me. Someone who has a reasonably standard Mac installation should probably double check that this works for them.

documentation

After #1953 was fixed, there is now a warning about the file not being included in any toctree: ``` /code/docs/api/grid-processing/gridWorkflow.rst: WARNING: document isn't included in any toctree ```

documentation

I've fixed a bunch of Sphinx warnings, but there are still two missing references in `load_3d_dataset.rst`: ``` /code/docs/ops/load_3d_dataset.rst:10: WARNING: undefined label: 'extending-datacube-3d-reads' [ref.ref] /code/docs/ops/load_3d_dataset.rst:10: WARNING: undefined label: 'product-doc-extra-dim' [ref.ref] ```

documentation

## Describe the bug Headlamp AMD64 Debian package is missing a dependency on some package that provides `libasound.so.2`. ## To Reproduce Steps to reproduce the bug: 1. Download AMD64 Debian/Linux...

kind/bug

It takes a while to import platform, so use sys.platform to check for macOS/Linux, and only import platform to detect BSD dialects. Tested inside a `python:3.10-bookworm` container with a `test.py`...

feature

The NamedTextIOWrapper is closing the buffers that are owned by the StreamMixer, so implement a close() method that prevents it from doing that. Refs #824 Refs #2993 Previous PR for...