Ian Denhardt

Results 522 comments of Ian Denhardt

How many threads is the server using? the example apache config in INSTALL.rst specifies two, which is going to limit concurrency.

Another thought: the performance problem we hit with CI way back could be rearing its head when we're legitimately making a ton of api calls; password auth is going to...

Ok -- see if cranking that number up makes it any better. Quoting Naved Ansari (2018-11-16 15:29:30) > I specified four threads there > WSGIDaemonProcess hil user=hil group=hil threads=4 >...

A couple more ideas: * I noticed you have process=5 in the client -- if you up that to 16 as well does it make a difference? * Is it...

The python interpreter doesn't actually support multiple threads executing Python code at once; there's a single mutex that covers the entire interpreter state (the "Giant Interpreter Lock (GIL)"). Threads can...

Unrelated to your immediate question, but it got me looking more closely at the code so I'll bring it up: Don't use `ast.literal_eval` to parse json; use `json.loads`. The Python...

No objections here. For posterity: the conversation in #680 provides some context; basically @kylehogan submitted code that requires 2.7+ and I mentioned that we should be explicit about what to...

@xuhang57, the trouble with 2to3 is that it leaves your code in a state where it *only* works with python 3, which is not a leap I'm willing to make...

@xuhang57, I think someone should submit a PR that adds an item to our build matrix to run the tests against python 3, and flags them allowed to fail. We're...

Just pushed this to a branch: https://github.com/zenhack/hil/commit/80b536b6bb83be02c5b169d6aeaf304d27b1d39b If travis seems to do the right thing with that, I'll submit a pr.