Jason Madden

Results 153 comments of Jason Madden

Do you mean the code snippets contained in doc/articles/ZODB1.rst?

Both FileStorage and BlobStorage use BlobStorageMixin. Both of them call [BlobStorageMixin._blob_init](https://github.com/zopefoundation/ZODB/blob/master/src/ZODB/blob.py#L630) in [their constructors](https://github.com/zopefoundation/ZODB/blob/master/src/ZODB/FileStorage/FileStorage.py#L252), which calls [FileSystemHelper.create](https://github.com/zopefoundation/ZODB/blob/master/src/ZODB/blob.py#L366) to setup the directories. That method could easily check for permissions and raise...

> The bug could be fixed if we change IStorage.loadBefore(oid) to return > > `(None, serial) # serial = revision where object was deleted` > > instead of just >...

I've been very busy on other things but hope to find time to examine these PRs in depth "soon."

I appreciate the reminder, and I apologize for the no-show; there are various personal and professional reasons I haven't found the time to review this PR in depth. I will...

OK, I think I'm allowed to relay this now: The company that I co-founded and which sponsored all my open source work for the last decade or so…will, umm...not be...

The warning was added as a result of https://github.com/gevent/gevent/issues/1016. Basically, importing `requests` and then monkey-patching was essentially guaranteed to lead to a `RecursionError` (which looks like #1559).

> @jamadden do you think we should try importing gevent earlier? What has been your experience? If I remember correctly, I've seen code you shared from a project where you...

Yes, we still patch before running any gunicorn code and haven't encountered any issues as far as I know. gunicorn master and workers all respond to signal as expected, requests...

This reminds me of https://github.com/benoitc/gunicorn/issues/2698 where the user was running into socket backlog issues. Adding more workers to keep up with the number of requests or tuning TCP settings to...