Denis Rykov

Results 97 comments of Denis Rykov

Great! Thank you @tim-finnigan for sharing the correct approach for handling custom models. I wasn't aware of the 'best effort' basis for S3 logs, so I'll definitely take CloudTrail into...

A more straightforward approach to do the same without touching the models: https://stackoverflow.com/a/59057975

👍 for this change! I recently encountered the issue where [`content_type`](https://docs.aiohttp.org/en/stable/client_reference.html#aiohttp.ClientResponse.content_type) only returns the **content part** of the `Content-Type` header, leading to content type validation fail. Here's an example in...

Thank you! I can confirm that the warning is triggered when the content type check fails (tested via CLI): ``` 0/8: : 0.00B [00:00, ?B/s, 0 errors]/home/denis/git/stac-asset/src/stac_asset/http_client.py:175: UserWarning: the actual...

I've encountered the same issue. Since we are using `stac-fastapi` as our STAC server, we're getting the value defined [here](https://github.com/stac-utils/stac-fastapi/blob/4491fa1ee384cd3e789e30aaa1252cdbb2ea3246/stac_fastapi/extensions/stac_fastapi/extensions/core/filter/filter.py#L38C10-L38C81). Additionally, the OGC [standard](https://docs.ogc.org/is/21-065r2/21-065r2.html#_conformance_class_advanced_comparison_operators) specifies the reference URI as: ```...

The current dropdown appears like this, with the third item hidden behind the sort input. ![image](https://github.com/user-attachments/assets/071847ef-7626-41d8-8cb9-1754813dbb06)

I've been reviewing the `PgstacDB` class, and here's what doesn't seem right to me: we return the connection to the pool https://github.com/stac-utils/pgstac/blob/d5901b7f7a6f441475191cf47b2810d959940085/src/pypgstac/src/pypgstac/db.py#L168 but just a few lines later, we set...