-
Notifications
You must be signed in to change notification settings - Fork 258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error parsing args when use_papa = True #930
Comments
Hi, @k4nar, Thank you, |
@scottkmaxwell : Can I assign you to this one ? |
I can pull request my proposal, but I'm not really sure it's correct, it could have side effects. |
We are already splitting the args at some point, so I think that |
Yeah, it sounds like I was expecting args to already be a list at this point. I am completely swamped at the moment but I can try to have a look toward the end of the week if somebody hasn't figured out a proper fix yet. |
@scottkmaxwell any update here? |
Sorry this took so long. |
@k4nar when can we expect a release containing this fix? |
@ayashjorden : Sorry for the delay, I'll try to make a new release this week. |
Thank you @k4nar :) |
Hey all, has the fix been released yet? |
Sorry, I've been experiencing some troubles with our tests suite (cf #984 for progress), and I would really like to fix that before releasing a new version. I'll push as much effort as I can to make it happen this week. |
I've merged #984. I'm giving some time to the opened PRs to be rebased & merged, and I'll release a new version. |
Thank you for the update, looking forward to it :) On Tue, Jul 5, 2016 at 2:13 PM, Yannick PÉROUX notifications@github.com
|
@ayashjorden : I just released Circus 0.14. Sorry for the (very) long delay! |
Thank you! @k4nar |
Hi,
we've found that Circus 0.12.2 is not parsing args correctly when
use_papa = True
. With this config file:The debug log shows:
and the process keeps flapping.
Commenting out in
papa_process_proxy.py
theself.args
assign:seems to fix this behaviour, because args is being processed as a string, not a list. I'm not really sure what
_fix_socket_name()
is doing. Maybe this fix is enough?Regards
The text was updated successfully, but these errors were encountered: