Trenton Broughton

Results 18 comments of Trenton Broughton

After looking at the Jira docs, it looks like they require an account id for assignee and reporter. Testing it out with the following snip worked: ```go Assignee: &jira.User{ AccountID:...

This seems more like a problem in the design of how [routes are keyed](https://github.com/twisted/klein/blob/master/src/klein/app.py#L202) in Klein: ```python kwargs.setdefault('endpoint', f.__name__) ``` This makes the name of the function or method subtly...

I think that would be fantastic, and really I don't see why not.

To add to @garo 's comment (and to save you some digging) you can add `-e STORAGE_REDIRECT=true` to your docker command if you are running this in a container.

Looking through the python, it appears that there would be an issue mapping the recursive groups on incremental updates. For `--full` runs it is fine, but when running without `--full`,...

This first stab will cache nested groups, but only on a full sync: https://github.com/google/nsscache/compare/master...trenton42:nested-groups Using this code with incremental updates will be subtly broken, as changes in memberships in child...

Thanks @jaqx0r! I added those changes in #84. Let me know if that looks good.

@miketb24 A lot of the deep internals in txmongo (especially things that deal with IO, like cursors) are not directly compatible with pymongo. It is very difficult (if not impossible)...

Yes yes yes! I would like to help with this. Out of curiosity, I went over to the pymongo project to see if they had anything, but they didn't. Do...