Re: Trouble with deployDataCenter.py

2013-06-04 Thread Mike Tutkowski
Thanks, Prasanna! Just so that I know for future reference, do you think I just missed reading an e-mail that came out about this or was there some other way I should have detected this? Thanks again! On Mon, Jun 3, 2013 at 10:41 PM, Prasanna Santhanam t...@apache.org wrote: On Mon, Jun 03,

Re: Trouble with deployDataCenter.py

2013-06-03 Thread Mike Tutkowski
I have fixed this in a patch I submitted last week. I'm not sure when it began, but I noticed it a long time ago and had just sent out an e-mail then and corrected it in my sandbox. Let me see if I can find what I did to fix it. On Mon, Jun 3, 2013 at 10:09 AM, Will Stevens

Re: Trouble with deployDataCenter.py

2013-06-03 Thread Mike Tutkowski
Surprisingly this has been like this for a long time. It kind of makes me wonder if anyone uses DevCloud. I use it all the time. If others were using it, I would have expected this to be corrected like a month or two ago. I am alone in using DevCloud? On Mon, Jun 3, 2013 at 11:05 AM, Mike

Re: Trouble with deployDataCenter.py

2013-06-03 Thread Will Stevens
Thanks Mike. Ya, I also did the same change locally and then did the following to not track the hack in my branch. git update-index --assume-unchanged tools/marvin/marvin/cloudstackConnection.py Thanks for submitting a patch for that. Cheers, Will On Mon, Jun 3, 2013 at 1:05 PM, Mike

Re: Trouble with deployDataCenter.py

2013-06-03 Thread Mike Tutkowski
Ah, OK. I tend to re-deploy daily. :) On Mon, Jun 3, 2013 at 11:19 AM, Will Stevens wstev...@cloudops.com wrote: I think a lot of people use DevCloud but they don't redeploy very often so bugs like this don't get noticed. I use DevCloud all the time. On Mon, Jun 3, 2013 at 1:07 PM, Mike

Re: Trouble with deployDataCenter.py

2013-06-03 Thread Wei ZHOU
I just built the latest source code, and deployed on devcloud , everything is ok. -Wei 2013/6/3 Will Stevens wstev...@cloudops.com Has anyone else experience this? I just pulled in the master code into my branch and now I am getting this in my dev environment. [DEBUG] Executing command

Re: Trouble with deployDataCenter.py

2013-06-03 Thread Prasanna Santhanam
On Mon, Jun 03, 2013 at 01:10:20PM -0400, Will Stevens wrote: Thanks Mike. Ya, I also did the same change locally and then did the following to not track the hack in my branch. git update-index --assume-unchanged tools/marvin/marvin/cloudstackConnection.py Thanks for submitting a patch

Re: Trouble with deployDataCenter.py

2013-05-06 Thread Mike Tutkowski
I don't have much Python experience, but it looks like we're trying to pass in a named parameter that doesn't exist on the receiving side. Perhaps I need to update a Python package? def listUsers(self, command, postdata={}): response = listUsersResponse() response =

Re: Trouble with deployDataCenter.py

2013-05-06 Thread Mike Tutkowski
It looks like the marvin_request method in cloudstackConnection.py does not have a parameter named 'data'. I changed the signature locally to the following and it works now: def marvin_request(self, cmd, response_type=None, method='GET', data=''): On Mon, May 6, 2013 at 2:59 PM, Mike Tutkowski