Results 193 comments of Jeremy Whitlock

I don't understand the first issue you brought up. The way the swagger-tools/sway middlewares work for Connect/Express is that they listen to all requests _(this is configurable of course using...

Yes. That's the nature of async. In the first version, you're wiring your route handler **after** the swagger-tools middleware gets wired up. In the second version, you're wiring your route...

I'm using the following properties: `group_query = "objectClass=groupOfNames" group_member_attribute = "member" user_query = "objectClass=posixAccount" userid_attribute = "uid"` Group RDN's are 'CN's. The user = query at the top of `create_group_model`...

So the LDAP version is a CLI option but paging _(and its options)_ aren't. Thoughts?

Sounds like a reasonable request.

There are no examples so I'm unsure what you're asking for. When I tested this, I tested with AD and OpenDirectory.

More details from previous issue. Yeah, we've had the same issue. `os.remove(tmp_authz_path)` cannot remove the file due to it being used by `another process`, or as I suspect, the same...

Unbind alone does not work since the server is busy. Adding a loop to retry when unbinding worked: ``` python for i in range(1, 3): try: groups = search_for_groups(ldapobject) break...

I've seen this as well and the way I addressed it was I pass a cloned schema to z-schema to avoid the original being modified. This might help until there...

Yes, for validation errors the path is there. I was just wondering about a more general API that isn't directly tied to validation.