Matthew Moisen

Results 34 comments of Matthew Moisen

I'm also seeing this. I can authenticate using python's `python-ldap` module fine over port 389, but cannot do it in nginx. Any solutions?

I'm having the same timout issue. Did you find a solution?

I somehow fixed it and got it working, after undergoing rigorous trial and error. Of course, by the time it started working, I did not remember my original configuration. Have...

Hi @zzzeek Do you know a workaround in 1.4 to use `insert().values()` with different ORM field names vs database column names? My library function basically receives a model and a...

> insert(model).values({getattr(model, key): value for key, value in kwargs.items()}) Much more simple than mine; thanks.

Hi @nieldlr , One thing worth mentioning is that my calculation here only takes simplified into account. I noticed from the source code, that you are combining traditional and simplified,...

Hi @nickodell > The ORM broker is the slowest broker (in that it needs to repeatedly poll the database to find new work) and the least robust (in that exactly-once...