georgexsh

Results 21 comments of georgexsh

Is there any documentation for the `fzf_action` option? I found it by read the source code.

We have experienced the same issue with 1 out of 9 containers, it looks like related to docker and python3 and gevent.

@cloverstd 我理解你的意思是不要形成请求重放,但你说的方法其实是无法做到的,接口幂等只能是微信侧通过商户业务单号保证,从文档和之前行为看,微信支付是保证了的。

@stephane why not subclass `ModelConverter` and extent `type_mapping`? ``` class MyModelConverter(marshmallow_sqlalchemy.ModelConverter): @property def type_mapping(self): mapping = super(MyModelConverter, self).type_mapping mapping.update({ datetime.datetime: UnixTiemstampField, }) return mapping class SomeSchema(ma.ModelSchema): class Meta: model_converter =...

I think celery should defer `init_worker` call inside the worker process with the prefork pool, which will resolve this and many other issues together. (following message is copied from a...

for now, I am trying to find a workaround for our application by subclassing `AppLoader`, let `init_worker` do nothing in the master process if the prefork pool is used because...

a quick and dirty demo: ```python from celery.loaders.app import AppLoader class ForkLazyAppLoader(AppLoader): def _is_in_child_process(self): # FIXME assert prefork pool from billiard.process import current_process p = current_process() if p._parent_pid is not...

> Have you been able to test this locally? of course, it is workable. On Mon, May 25, 2020 at 10:08 PM Josue Balandrano Coronel < [email protected]> wrote: > @georgexsh...