Alexander Mohr

Results 302 comments of Alexander Mohr

technically it's supposed to GC the connection when it's no longer referenced, so there may be a bug in aiohttp

btw in the original code you're closing the client, you can't close the client if you're going to stream the object back out. Also don't need to call close on...

ah, looks like I had to add: ``` load( "@io_bazel_rules_appengine//appengine:sdk.bzl", "appengine_repositories", ) appengine_repositories() ``` may be worth mentioning in docs for post 0.0.8?

found another issue, on this line: https://github.com/bazelbuild/rules_appengine/blob/master/appengine/py/appengine_deploy.sh.template#L26 `TMPDIR` ends with a slash on my system, so you get a double slash, and a subsequent error because it can't find the...

so now it seems like the `requests_toolbelt.adapters` is not getting loaded update: I had to set `overwrite_appengine_config = False`, worth documenting as well for backwards compatibility

let me know what you guys think: https://github.com/bazelbuild/rules_appengine/pull/91

I've run into this same issue with python, and the developer was able to reproduce it with the C impl so it seems to be a core issue: https://github.com/zeromq/pyzmq/issues/832

@daveyarwood unfortunately not, no responses from the libzmq ppl. IIRC of interest is that it doesn't seem to occur on osx so the guess was that this is some sort...

nice detective work. we can drop the proxy, just means we'll have to be more careful when upgrading On Mon, Mar 11, 2024, 7:07 AM Jakob Keller ***@***.***> wrote: >...

actually I think there may be a bug. We have a service and at the start it does [`.add_job`](https://github.com/agronholm/apscheduler/blob/3.0/apscheduler/schedulers/base.py#L728-L732), it will first try to add the job, then if it...