Viktor Danyliuk

Results 8 comments of Viktor Danyliuk

Just upgraded to the 1.8.1 kaniko to invalidate cache. But I guess such issues might still occur so might worth investigating and introducing some workarounds.

'wait-for-status' is backported to athena v2 in #162 You can find `c.GetQuery("waitForStatus")` in changes but looks like it's missing in athena v3. You can try this for #162: `curl -L...

You can try to do it without deep skills in Go: 1. Define `WEAVER_DISABLE_AUTH` [here](https://github.com/arachnys/athenapdf/blob/master/weaver/config.go#L103) in the same way as other variables. 2. Add condition on [this](https://github.com/arachnys/athenapdf/blob/master/weaver/main.go#L69) line using config...

I followed https://github.com/amplitude/GTM-Web-Demo, with GTM in the middle it sends events when the next page is loaded. I would like to avoid canceled requests but it's not critical anymore.

Fixed by this: ```python @fixture(autouse=True) def enable_transactional_tests(db_session): # Automatically enable transactions for all tests, # without importing any extra fixtures. # set defulat session options, the same as we use...

I encountered another issue with nullable. Using `anyOf` leads to a new type definition generated by a sdk generator that I use. ``` class UserInfoResponseSchema(Schema): first_name: str | None ......

Seems to be an issue with pydantic: https://github.com/pydantic/pydantic/issues/7161

I endup with a following fix, seems to work well for me: ``` from ninja.schema import NinjaGenerateJsonSchema from pydantic.json_schema import JsonSchemaValue def patch(): """ Better support for nullable fields in...