Daniel Golding
Daniel Golding
Hi, it's interesting that you mention code generation. I didn't think to suggest it, as I thought maybe you were trying to stay dynamic. I implemented essentially the `from_dict` part...
Looks like there were breaking changes in https://github.com/mirage/io-page/releases/tag/v2.4.0 I imagine the real solution is for `mirage-block-unix` to set an upper bound for the that package, or update to deal with...
Assuming localhost, with self-signed certs, and server config ``` [mysqld] bind-address = 127.0.0.1 mysqlx-bind-address = 127.0.0.1 require_secure_transport = ON ``` this works ```python import pymysql import ssl ctx = ssl.create_default_context()...
Ok. A shorter working example. Not sure if if violates some knowledge of the internals, but this works as at writing. ```python import pymysql conn = pymysql.connect(user='root', host='127.0.0.1', ssl={"verify_mode": None})...
For the documenting of `ssl` taking an SSLContext, #1045 has been merged. I forgot to mention this issue in there when opened that PR, 😅 , but hopefully that will...
Upstream issue is fixed in https://github.com/aio-libs/aiohttp/releases/tag/v3.9.4
~It seems the github actions are actually [failing](https://github.com/cakemanny/kubectl-trace/actions/runs/8953164652) still, I'll have to come back to this. I've put in draft mode for now. I also tried to follow the instructions...
@fntlnz, would you be the one to look at this?
Hey @fntlnz, I guess you've still not had time? Or is there something I can do to help, such as break parts out or explain better anything that looks a...
Hey, am I not right in thinking this was resolved by #14 with the addition of the `--all-namespaces` flag ?