Ivan Trusov

Results 102 comments of Ivan Trusov

Note: I'm quite sure that returned payload is arrow-compatible. It's generated like this: ``` @api_app.get("/satellites/positions") def get_satellite_in_time_window( from_dttm_iso: Annotated[str, Query(alias="from")], to_dttm_iso: Annotated[str, Query(alias="to")], satellite_ids: Annotated[list[int] | None, Query()] = None,...

Upd: removing a string column `name` from the response table on the server side fixed the problem. Clearly, it's something about utf8 string conversion.