[GitHub] cloudstack pull request: UI localization - hu

2015-05-02 Thread milamberspace
Github user milamberspace commented on the pull request:

https://github.com/apache/cloudstack/pull/224#issuecomment-98329583
  
Hello,

Thanks for your PR.

The file plugins/hypervisors/kvm/pom.xml don't need to be modify to add the 
Hungarian language (mistake?)

It's would be better to add this language on master branch, and cherry-pick 
after on 4.5 / 4.4 branches.

File tools/transifex/sync-transifex-ui.sh must be modify to add the ISO 
code of Hungary
In line:
LIST_LANG=ar ca de_DE es fr_FR it_IT ja ko_KR nb_NO pt_BR ru_RU zh_CN

Can you update your pull request? after I can commit on the repo, and make 
the sync between Transifex/Cloudstack UI.

(I would more better if you can finish the Hungarian translation on 
Transifex before, for 4.6 and 4.4 :-))

Milamber@a.o


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack pull request: server: Introduce Unknown Status to be us...

2015-05-02 Thread DaanHoogland
Github user DaanHoogland commented on the pull request:

https://github.com/apache/cloudstack/pull/222#issuecomment-98372480
  
@koushik-das not needed.  The null check is needed to prevent npe. The
unknown status will fall through.

On Sat, 2 May 2015 17:45 koushik-das notificati...@github.com wrote:

 I thought the intent of introducing 'Unkonwn' host status was to replace
 the entire null semantics that was thought to be confusing in the
 investigators. By doing it partially aren't we introducing more confusion 
-
 now there is 'null' as well as 'Unknown' semantics.

 Also specific to the change I see the below code removed
 if (vmState == null) {continue;}

 Shouldn't it be
 if (vmState == Status.Unknown) {continue;}

 —
 Reply to this email directly or view it on GitHub
 https://github.com/apache/cloudstack/pull/222#issuecomment-98372263.




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack pull request: server: Introduce Unknown Status to be us...

2015-05-02 Thread koushik-das
Github user koushik-das commented on the pull request:

https://github.com/apache/cloudstack/pull/222#issuecomment-98374391
  
@DaanHoogland It is not only to prevent NPE but also to go to the next item 
in the list when the status cannot be determined. Think of it like this - 
status cannot be determined using the current host, so move to the next one in 
the list immediately without any further processing.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack pull request: server: Introduce Unknown Status to be us...

2015-05-02 Thread bhaisaab
Github user bhaisaab commented on the pull request:

https://github.com/apache/cloudstack/pull/222#issuecomment-98360696
  
@remibergsma thanks man! I'm too working this weekend in order to test ACS 
and cut a 4.5.1 RC candidate on monday.

@koushik-das I've not touched any other code, other than testIpAddress and 
its consumers. #211 and this PR only try to introduce changes for better 
debugging. If we want to change the consumers of investigate() or isAlive it 
could be done separately and if you look at the code they are not returning 
Unknown at all, their return types remain same.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack pull request: server: Introduce Unknown Status to be us...

2015-05-02 Thread koushik-das
Github user koushik-das commented on the pull request:

https://github.com/apache/cloudstack/pull/222#issuecomment-98372263
  
I thought the intent of introducing 'Unkonwn' host status was to replace 
the entire null semantics that was thought to be confusing in the 
investigators. By doing it partially aren't we introducing more confusion - now 
there is 'null' as well as 'Unknown' semantics.

Also specific to the change I see the below code removed
if (vmState == null) {continue;}

Shouldn't it be 
if (vmState == Status.Unknown) {continue;}


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


RE: marvin test cases + travis

2015-05-02 Thread Raja Pullela
-1 for the time... 
since these tests run independently if we can spawn more threads/vms to bring 
down the run time, that will be good.
Another thing that can be looked at the run only tests in SMOKE folder.   
BTW, more tests in  SMOKE  should be added on a continuous basis.

-Original Message-
From: Rajani Karuturi [mailto:raj...@apache.org] 
Sent: Friday, May 1, 2015 11:09 PM
To: dev@cloudstack.apache.org
Subject: Re: marvin test cases + travis

-1 on increasing the time
As a reviewer, I would like an immediate response on a pull request. By the 
time I review the code, if CI gives a +1(or -1) I can close the PR then and 
there instead of coming back again to merge.

I would suggest running all the jobs under 30 min and increasing the number of 
parallel jobs as much as possible. we are running 10 jobs now. may be we could 
increase this to 15(dont know if this is possible)

we should aim to run only the smoke tests and not the entire regression suite 
always.

Making the jobs run on containers will speed them up. This needs some work on 
removing the sudo dependency on the jobs (which is required to install some 
additional packages and marvin).

~Rajani

On Fri, May 1, 2015 at 8:25 AM, Abhinandan Prateek  
abhinandan.prat...@shapeblue.com wrote:

 +1 for increased timeouts.

 At the moment we get less than 24 commits per day on master. Only a 
 couple on other branches per day.
 We can increase the timeout to upto 70 minutes or more. Will try to 
 ensure that in general a single run does not take more than an hour.

 A timeout window slightly higher will ensure that we do not see 
 timeout failures.

  On 30-Apr-2015, at 11:25 pm, Daan Hoogland daan.hoogl...@gmail.com
 wrote:
 
  Travis is starting to indue the, 'oh,  a timeout again' - blindness 
  in
 me.
  Let's put a safe time on it.  A result should mean something and 
  those
 time
  out are like the (decreasing) abundance of Jenkins failures.
 
  So +1 for increasing the time
 
  On Thu, 30 Apr 2015 18:46 Ian Duffy i...@ianduffy.ie wrote:
 
  Do we need to ask for an increase in run time?
 
  From my experience I wouldn't say its required however *it would be 
  very nice*.
  At the moment what we do is create new parallel jobs and balance 
  the tests across them so each job is under 50mins.
 
  Anywho, just my 2c, see what others say/think.
 
  On 30 April 2015 at 17:34, David Nalley da...@gnsa.us wrote:
  Do we need to ask for an increase in run time?
  50 minutes is the OSS default, but the ASF is a paying customer 
  and we can ask for longer timeouts.
 
  --David
 
  On Thu, Apr 30, 2015 at 10:06 AM, Abhinandan Prateek 
  abhinandan.prat...@shapeblue.com wrote:
  One of the run did timeout. Will balance the runs.
 
  On 30-Apr-2015, at 5:59 pm, Abhinandan Prateek 
  abhinandan.prat...@shapeblue.com wrote:
 
  Yes, thanks for checking. I was worried that now some of them 
  may
  start timing out.
  I have another 10 suites tested, will add them once everything 
  seems
  fine.
 
  -abhi
 
 
  On 30-Apr-2015, at 5:32 pm, Rajani Karuturi raj...@apache.org
  wrote:
 
  after correcting the test file path, its working fine
 
  https://travis-ci.org/karuturi/cloudstack/jobs/60681263
 
 
 
  ~Rajani
 
  On Thu, Apr 30, 2015 at 4:51 PM, Rajani Karuturi 
  raj...@apache.org
 
  wrote:
 
  I think its due to this commit
 
 
 
 https://github.com/apache/cloudstack/commit/b941480e0df0bfa3377e797126
 b96cf9b3fbee77
 
  Here, test file name is changed from testname to
  [smoke,component]/testname
 
  But, while running each test file in the for loop, it prepends 
  the
  name
  with smoke and hence, it cant find the file and none of the 
  tests
 in
  the
  file are run
 
 
 
  ~Rajani
 
  On Thu, Apr 30, 2015 at 4:37 PM, Abhinandan Prateek  
  abhinandan.prat...@shapeblue.com wrote:
 
  It is possible, I will check.
 
  On 30-Apr-2015, at 3:43 pm, Rajani Karuturi 
  raj...@apache.org
  wrote:
 
  Hey Abhi,
 
  In the recent travis runs, its not printing the test case in
  output (
  https://travis-ci.org/apache/cloudstack/jobs/60634577#L5443)
 
  It used to print the test case name and status (
  https://travis-ci.org/apache/cloudstack/jobs/59958134#L4205)
 
  Do you think it can be due to any recent changes?
 
  ~Rajani
 
  On Thu, Apr 30, 2015 at 10:32 AM, Abhinandan Prateek  
  abhinandan.prat...@shapeblue.com wrote:
 
 
  There are more than 10 additional suites that can still be
  included
  to
  the travis-CI.
  Since the current set runs comfortably I will go ahead and 
  add
  more. If
  the system gets overloaded, then we can balance the kind of 
  test
  suites and
  amount of test suits that run comfortably on travis.
 
  -abhi
 
 
 
 
  Find out more about ShapeBlue and our range of CloudStack
 related
  services
 
  IaaS Cloud Design  Build
  http://secure-web.cisco.com/1pHXa6i2ZxbTOD2YXCa6-c3x2dmzvOC
  AO7sBNrnkLXSQymtVtK2camOyotDd30Er1Nv2cLCRcXANhkRKDgTT7O62LQ
  HevV4v385DJAE5OBIwid5XAuJ2LbMh28DLqFVuAVDwzsu5Or_LlLENaeL6O
  

Re: marvin test cases + travis

2015-05-02 Thread Rohit Yadav
Hi Rajani,

 On 01-May-2015, at 7:39 pm, Rajani Karuturi raj...@apache.org wrote:

 -1 on increasing the time
 As a reviewer, I would like an immediate response on a pull request. By the
 time I review the code, if CI gives a +1(or -1) I can close the PR then and
 there instead of coming back again to merge.

I understand your sentiments but the issue was to increase the TravisCI job 
timeout. We can continue to optimize tests and build processes to decrease the 
round trip time.

 I would suggest running all the jobs under 30 min and increasing the number
 of parallel jobs as much as possible. we are running 10 jobs now. may be we
 could increase this to 15(dont know if this is possible)

A typical build on TravisCI is observed to take anywhere from 15-25 mins. That 
would only leave 5-15 mins for smoke tests to run, so we will have to aim to 
create jobs assuming the minimum available time window (5mins). Skipping unit 
tests could introduce regressions

 we should aim to run only the smoke tests and not the entire regression
 suite always.

 Making the jobs run on containers will speed them up. This needs some work
 on removing the sudo dependency on the jobs (which is required to install
 some additional packages and marvin).

Agree. But to do that we’ll have to figure out any other way to do the 
following;
- install, setup mysql-server, tomcat, uuid-runtime genisoimage 
python-setuptools python-pip
- pip installs
- install marvin

Regards,
Rohit Yadav
Software Architect, ShapeBlue
M. +91 88 262 30892 | rohit.ya...@shapeblue.com
Blog: bhaisaab.org | Twitter: @_bhaisaab

Find out more about ShapeBlue and our range of CloudStack related services

IaaS Cloud Design  Buildhttp://shapeblue.com/iaas-cloud-design-and-build//
CSForge – rapid IaaS deployment frameworkhttp://shapeblue.com/csforge/
CloudStack Consultinghttp://shapeblue.com/cloudstack-consultancy/
CloudStack Software 
Engineeringhttp://shapeblue.com/cloudstack-software-engineering/
CloudStack Infrastructure 
Supporthttp://shapeblue.com/cloudstack-infrastructure-support/
CloudStack Bootcamp Training Courseshttp://shapeblue.com/cloudstack-training/

This email and any attachments to it may be confidential and are intended 
solely for the use of the individual to whom it is addressed. Any views or 
opinions expressed are solely those of the author and do not necessarily 
represent those of Shape Blue Ltd or related companies. If you are not the 
intended recipient of this email, you must neither take any action based upon 
its contents, nor copy or show it to anyone. Please contact the sender if you 
believe you have received this email in error. Shape Blue Ltd is a company 
incorporated in England  Wales. ShapeBlue Services India LLP is a company 
incorporated in India and is operated under license from Shape Blue Ltd. Shape 
Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is 
operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company 
registered by The Republic of South Africa and is traded under license from 
Shape Blue Ltd. ShapeBlue is a registered trademark.


Secondary Storage vlan/routing question

2015-05-02 Thread Andrija Panic
Hi people,

I have a question regarding vlan tagging of (Secondary)Storage network (and
Public network for that matter).


Current setup:

cloudbr0 -- eth0 Management Net (1G)
eth2+eth3 = bond0 (10G+10G)
cloudbr1 -- bond0.112 Primary Storage Net
cloudbr2 -- bond0.113 Secondary Storage Net
cloudbr3 -- bond0.150 Guest VLAN [for vxlans] net
cloudbr4 -- bond0.160 Public net

My question,


-- 

Andrija Panić


Build failed in Jenkins: build-master-slowbuild #1443

2015-05-02 Thread jenkins
See http://jenkins.buildacloud.org/job/build-master-slowbuild/1443/

--
[...truncated 27152 lines...]
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SBucketDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SHostDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SMetaDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectItemDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/UserCredentialsDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/S3Constants.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/controller/s3/ServletAction.java.  Ensure this class 
was instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/core/s3/S3BucketAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/JsonAccessor.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XElement.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XFlatten.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XOmitNull.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializable.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializerAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
Report time: 101823ms

[ERROR] May 02, 2015 5:25:45 PM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData
INFO: Cobertura: Loaded information on 6393 classes.

[INFO] Cobertura Report generation was successful.
[INFO] Cobertura 2.0.3 - GNU GPL License (NO WARRANTY) - See COPYRIGHT file
Report time: 11609ms

[ERROR] May 02, 2015 5:27:27 PM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData

Build failed in Jenkins: build-master-slowbuild #1442

2015-05-02 Thread jenkins
See http://jenkins.buildacloud.org/job/build-master-slowbuild/1442/

--
[...truncated 27152 lines...]
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SBucketDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SHostDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SMetaDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectItemDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/UserCredentialsDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/S3Constants.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/controller/s3/ServletAction.java.  Ensure this class 
was instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/core/s3/S3BucketAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/JsonAccessor.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XElement.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XFlatten.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XOmitNull.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializable.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializerAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
Report time: 101294ms

[ERROR] May 02, 2015 2:24:11 PM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData
INFO: Cobertura: Loaded information on 6393 classes.

[INFO] Cobertura Report generation was successful.
[INFO] Cobertura 2.0.3 - GNU GPL License (NO WARRANTY) - See COPYRIGHT file
Report time: 11428ms

[ERROR] May 02, 2015 2:25:53 PM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData

Build failed in Jenkins: build-master-slowbuild #1437

2015-05-02 Thread jenkins
See http://jenkins.buildacloud.org/job/build-master-slowbuild/1437/

--
[...truncated 27152 lines...]
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SBucketDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SHostDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SMetaDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectItemDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/UserCredentialsDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/S3Constants.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/controller/s3/ServletAction.java.  Ensure this class 
was instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/core/s3/S3BucketAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/JsonAccessor.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XElement.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XFlatten.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XOmitNull.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializable.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializerAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
Report time: 100711ms

[ERROR] May 01, 2015 11:24:06 PM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData
INFO: Cobertura: Loaded information on 6393 classes.

[INFO] Cobertura Report generation was successful.
[INFO] Cobertura 2.0.3 - GNU GPL License (NO WARRANTY) - See COPYRIGHT file
Report time: 11342ms

[ERROR] May 01, 2015 11:25:47 PM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData

Build failed in Jenkins: build-master-slowbuild #1441

2015-05-02 Thread jenkins
See http://jenkins.buildacloud.org/job/build-master-slowbuild/1441/

--
[...truncated 27152 lines...]
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SBucketDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SHostDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SMetaDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectItemDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/UserCredentialsDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/S3Constants.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/controller/s3/ServletAction.java.  Ensure this class 
was instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/core/s3/S3BucketAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/JsonAccessor.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XElement.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XFlatten.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XOmitNull.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializable.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializerAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
Report time: 103509ms

[ERROR] May 02, 2015 11:23:16 AM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData
INFO: Cobertura: Loaded information on 6393 classes.

[INFO] Cobertura Report generation was successful.
[INFO] Cobertura 2.0.3 - GNU GPL License (NO WARRANTY) - See COPYRIGHT file
Report time: 11347ms

[ERROR] May 02, 2015 11:25:00 AM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData

Build failed in Jenkins: build-master-slowbuild #1439

2015-05-02 Thread jenkins
See http://jenkins.buildacloud.org/job/build-master-slowbuild/1439/

--
[...truncated 27152 lines...]
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SBucketDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SHostDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SMetaDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectItemDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/UserCredentialsDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/S3Constants.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/controller/s3/ServletAction.java.  Ensure this class 
was instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/core/s3/S3BucketAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/JsonAccessor.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XElement.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XFlatten.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XOmitNull.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializable.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializerAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
Report time: 101198ms

[ERROR] May 02, 2015 5:23:54 AM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData
INFO: Cobertura: Loaded information on 6393 classes.

[INFO] Cobertura Report generation was successful.
[INFO] Cobertura 2.0.3 - GNU GPL License (NO WARRANTY) - See COPYRIGHT file
Report time: 11322ms

[ERROR] May 02, 2015 5:25:36 AM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData

Build failed in Jenkins: build-master-slowbuild #1440

2015-05-02 Thread jenkins
See http://jenkins.buildacloud.org/job/build-master-slowbuild/1440/

--
[...truncated 27152 lines...]
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SBucketDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SHostDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SMetaDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectItemDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/UserCredentialsDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/S3Constants.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/controller/s3/ServletAction.java.  Ensure this class 
was instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/core/s3/S3BucketAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/JsonAccessor.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XElement.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XFlatten.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XOmitNull.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializable.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializerAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
Report time: 99736ms

[ERROR] May 02, 2015 8:23:39 AM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData
INFO: Cobertura: Loaded information on 6393 classes.

[INFO] Cobertura Report generation was successful.
[INFO] Cobertura 2.0.3 - GNU GPL License (NO WARRANTY) - See COPYRIGHT file
Report time: 11125ms

[ERROR] May 02, 2015 8:25:19 AM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData

Build failed in Jenkins: build-master-slowbuild #1438

2015-05-02 Thread jenkins
See http://jenkins.buildacloud.org/job/build-master-slowbuild/1438/

--
[...truncated 27159 lines...]
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SBucketDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SHostDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SMetaDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectItemDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/UserCredentialsDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/S3Constants.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/controller/s3/ServletAction.java.  Ensure this class 
was instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/core/s3/S3BucketAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/JsonAccessor.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XElement.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XFlatten.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XOmitNull.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializable.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializerAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
Report time: 99685ms

[ERROR] May 02, 2015 2:24:30 AM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData
INFO: Cobertura: Loaded information on 6393 classes.

[INFO] Cobertura Report generation was successful.
[INFO] Cobertura 2.0.3 - GNU GPL License (NO WARRANTY) - See COPYRIGHT file
Report time: 11218ms

[ERROR] May 02, 2015 2:26:10 AM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData

Build failed in Jenkins: build-master-slowbuild #1436

2015-05-02 Thread jenkins
See http://jenkins.buildacloud.org/job/build-master-slowbuild/1436/changes

Changes:

[Rajani Karuturi] CLOUDSTACK-8429: travis: running junit tests only in the 
first job

--
[...truncated 27152 lines...]
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SBucketDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SHostDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SMetaDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectItemDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/UserCredentialsDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/S3Constants.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/controller/s3/ServletAction.java.  Ensure this class 
was instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/core/s3/S3BucketAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/JsonAccessor.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XElement.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XFlatten.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XOmitNull.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializable.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializerAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
Report time: 102385ms

[ERROR] May 01, 2015 8:23:53 PM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData
INFO: Cobertura: Loaded information on 6393 classes.

[INFO] Cobertura Report generation was successful.
[INFO] Cobertura 2.0.3 - GNU GPL License (NO WARRANTY) - See COPYRIGHT file
Report time: 11434ms

[ERROR] 

Re: marvin test cases + travis

2015-05-02 Thread Daan Hoogland
If we can lets increase, but if we can't let's not allow for false negatives

Op vr 1 mei 2015 om 19:39 schreef Rajani Karuturi raj...@apache.org:

 -1 on increasing the time
 As a reviewer, I would like an immediate response on a pull request. By the
 time I review the code, if CI gives a +1(or -1) I can close the PR then and
 there instead of coming back again to merge.

 I would suggest running all the jobs under 30 min and increasing the number
 of parallel jobs as much as possible. we are running 10 jobs now. may be we
 could increase this to 15(dont know if this is possible)

 we should aim to run only the smoke tests and not the entire regression
 suite always.

 Making the jobs run on containers will speed them up. This needs some work
 on removing the sudo dependency on the jobs (which is required to install
 some additional packages and marvin).

 ~Rajani

 On Fri, May 1, 2015 at 8:25 AM, Abhinandan Prateek 
 abhinandan.prat...@shapeblue.com wrote:

  +1 for increased timeouts.
 
  At the moment we get less than 24 commits per day on master. Only a
 couple
  on other branches per day.
  We can increase the timeout to upto 70 minutes or more. Will try to
 ensure
  that in general a single run does not take more than an hour.
 
  A timeout window slightly higher will ensure that we do not see timeout
  failures.
 
   On 30-Apr-2015, at 11:25 pm, Daan Hoogland daan.hoogl...@gmail.com
  wrote:
  
   Travis is starting to indue the, 'oh,  a timeout again' - blindness in
  me.
   Let's put a safe time on it.  A result should mean something and those
  time
   out are like the (decreasing) abundance of Jenkins failures.
  
   So +1 for increasing the time
  
   On Thu, 30 Apr 2015 18:46 Ian Duffy i...@ianduffy.ie wrote:
  
   Do we need to ask for an increase in run time?
  
   From my experience I wouldn't say its required however *it would be
 very
   nice*.
   At the moment what we do is create new parallel jobs and balance the
   tests across them so each job is under 50mins.
  
   Anywho, just my 2c, see what others say/think.
  
   On 30 April 2015 at 17:34, David Nalley da...@gnsa.us wrote:
   Do we need to ask for an increase in run time?
   50 minutes is the OSS default, but the ASF is a paying customer and
 we
   can ask for longer timeouts.
  
   --David
  
   On Thu, Apr 30, 2015 at 10:06 AM, Abhinandan Prateek
   abhinandan.prat...@shapeblue.com wrote:
   One of the run did timeout. Will balance the runs.
  
   On 30-Apr-2015, at 5:59 pm, Abhinandan Prateek 
   abhinandan.prat...@shapeblue.com wrote:
  
   Yes, thanks for checking. I was worried that now some of them may
   start timing out.
   I have another 10 suites tested, will add them once everything
 seems
   fine.
  
   -abhi
  
  
   On 30-Apr-2015, at 5:32 pm, Rajani Karuturi raj...@apache.org
   wrote:
  
   after correcting the test file path, its working fine
  
   https://travis-ci.org/karuturi/cloudstack/jobs/60681263
  
  
  
   ~Rajani
  
   On Thu, Apr 30, 2015 at 4:51 PM, Rajani Karuturi 
 raj...@apache.org
  
   wrote:
  
   I think its due to this commit
  
  
  
 
 https://github.com/apache/cloudstack/commit/b941480e0df0bfa3377e797126b96cf9b3fbee77
  
   Here, test file name is changed from testname to
   [smoke,component]/testname
  
   But, while running each test file in the for loop, it prepends
 the
   name
   with smoke and hence, it cant find the file and none of the tests
  in
   the
   file are run
  
  
  
   ~Rajani
  
   On Thu, Apr 30, 2015 at 4:37 PM, Abhinandan Prateek 
   abhinandan.prat...@shapeblue.com wrote:
  
   It is possible, I will check.
  
   On 30-Apr-2015, at 3:43 pm, Rajani Karuturi raj...@apache.org
 
   wrote:
  
   Hey Abhi,
  
   In the recent travis runs, its not printing the test case in
   output (
   https://travis-ci.org/apache/cloudstack/jobs/60634577#L5443)
  
   It used to print the test case name and status (
   https://travis-ci.org/apache/cloudstack/jobs/59958134#L4205)
  
   Do you think it can be due to any recent changes?
  
   ~Rajani
  
   On Thu, Apr 30, 2015 at 10:32 AM, Abhinandan Prateek 
   abhinandan.prat...@shapeblue.com wrote:
  
  
   There are more than 10 additional suites that can still be
   included
   to
   the travis-CI.
   Since the current set runs comfortably I will go ahead and add
   more. If
   the system gets overloaded, then we can balance the kind of
 test
   suites and
   amount of test suits that run comfortably on travis.
  
   -abhi
  
  
  
  
   Find out more about ShapeBlue and our range of CloudStack
  related
   services
  
   IaaS Cloud Design  Build
   http://shapeblue.com/iaas-cloud-design-and-build//
   CSForge – rapid IaaS deployment framework
   http://shapeblue.com/csforge/
   CloudStack Consulting
   http://shapeblue.com/cloudstack-consultancy/
   CloudStack Software Engineering
   http://shapeblue.com/cloudstack-software-engineering/
   CloudStack Infrastructure Support
   http://shapeblue.com/cloudstack-infrastructure-support/

Re: [4.6] Trouble with virtual router

2015-05-02 Thread Mike Tutkowski
Thanks, Wilder

So, I'm not that familiar looking through those log files, but I
copy/pasted what seemed like relevant parts below.

Would you be able to take a quick look and see if anything sticks out
(there are some failure messages, but it's not clear to me why)?

Thanks!

This is part of my XenServer's SMlog:

May  1 23:28:59 XenServer-6 SM: [25878] ['/bin/bash', '-c', iptables-save
| grep '\\-A BRIDGE-FIREWALL' | grep 'r-4-VM' | sed 's/-A/-D/']
May  1 23:28:59 XenServer-6 SM: [25878]   pread SUCCESS
May  1 23:28:59 XenServer-6 SM: [25878] ['iptables', '-D',
'BRIDGE-FIREWALL', '-m', 'physdev', '--physdev-in', 'vif7.0',
'--physdev-is-bridged', '-j', 'r-4-VM']
May  1 23:28:59 XenServer-6 SM: [25878]   pread SUCCESS
May  1 23:28:59 XenServer-6 SM: [25878] ['iptables', '-D',
'BRIDGE-FIREWALL', '-m', 'physdev', '--physdev-in', 'vif7.1',
'--physdev-is-bridged', '-j', 'r-4-VM']
May  1 23:28:59 XenServer-6 SM: [25878]   pread SUCCESS
May  1 23:28:59 XenServer-6 SM: [25878] ['iptables', '-D',
'BRIDGE-FIREWALL', '-m', 'physdev', '--physdev-out', 'vif7.1',
'--physdev-is-bridged', '-j', 'r-4-VM']
May  1 23:28:59 XenServer-6 SM: [25878]   pread SUCCESS
May  1 23:28:59 XenServer-6 SM: [25878] ['iptables', '-D',
'BRIDGE-FIREWALL', '-m', 'physdev', '--physdev-out', 'vif7.0',
'--physdev-is-bridged', '-j', 'r-4-VM']
May  1 23:28:59 XenServer-6 SM: [25878]   pread SUCCESS
May  1 23:28:59 XenServer-6 SM: [25878] ['iptables', '-F', 'r-4-VM']
May  1 23:28:59 XenServer-6 SM: [25878]   pread SUCCESS
May  1 23:28:59 XenServer-6 SM: [25878] ['iptables', '-X', 'r-4-VM']
May  1 23:28:59 XenServer-6 SM: [25878]   pread SUCCESS
May  1 23:28:59 XenServer-6 SM: [25878] ['/bin/bash', '-c', ebtables-save
| grep 'r-4-VM' | sed 's/-A/-D/']
May  1 23:28:59 XenServer-6 SM: [25878]   pread SUCCESS
May  1 23:28:59 XenServer-6 SM: [25878] ['ebtables', '-F', 'r-4-VM']
May  1 23:28:59 XenServer-6 SM: [25878] FAILED in util.pread: (rc 255)
stdout: '', stderr: 'Chain 'r-4-VM' doesn't exist.
May  1 23:28:59 XenServer-6 SM: [25878] '
May  1 23:28:59 XenServer-6 SM: [25878] ['/bin/bash', '-c', arptables -vL
FORWARD | grep 'r-4-VM' | sed 's/-i any//' | sed 's/-o any//' | awk '{print
$1,$2,$3,$4}' ]
May  1 23:28:59 XenServer-6 SM: [25878]   pread SUCCESS
May  1 23:28:59 XenServer-6 SM: [25878] ['arptables', '-F', 'r-4-VM']
May  1 23:28:59 XenServer-6 SM: [25878] FAILED in util.pread: (rc 1)
stdout: '', stderr: 'arptables: No chain/target/match by that name
May  1 23:28:59 XenServer-6 SM: [25878] '
May  1 23:28:59 XenServer-6 SM: [25878] ['iptables', '-F', 'r-4-VM']
May  1 23:28:59 XenServer-6 SM: [25878] FAILED in util.pread: (rc 1)
stdout: '', stderr: 'iptables: No chain/target/match by that name
May  1 23:28:59 XenServer-6 SM: [25878] '
May  1 23:28:59 XenServer-6 SM: [25878] ['iptables', '-F', 'r-4-VM-eg']
May  1 23:28:59 XenServer-6 SM: [25878] FAILED in util.pread: (rc 1)
stdout: '', stderr: 'iptables: No chain/target/match by that name

This is part of my VR's cloud.log file:

2015-05-02 05:32:35,197 Executing ip addr show dev eth1
2015-05-02 05:32:35,205 Will remove all configured addresses on device eth1
2015-05-02 05:32:35,206 Removing addresses from device eth1
2015-05-02 05:32:35,213 Removed address 169.254.1.204/16 from device eth1
2015-05-02 05:32:35,216 Added 1 Table_eth1 to file /etc/iproute2/rt_tables
RTNETLINK answers: Cannot assign requested address
2015-05-02 05:32:35,223 Removed address 169.254.1.204/16 from device eth1
2015-05-02 05:32:35,224 Executing ip addr show dev eth0
2015-05-02 05:32:35,232 Will remove all configured addresses on device eth0
2015-05-02 05:32:35,232 Removing addresses from device eth0
2015-05-02 05:32:35,240 Removed address 192.168.128.39/19 from device eth0
2015-05-02 05:32:35,241 Added 0 Table_eth0 to file /etc/iproute2/rt_tables
RTNETLINK answers: Cannot assign requested address
2015-05-02 05:32:35,248 Removed address 192.168.128.39/19 from device eth0

On Thu, Apr 30, 2015 at 4:39 AM, Wilder Rodrigues 
wrodrig...@schubergphilis.com wrote:

 Hi Mike,

 I’m actually using the same VHD as you and it is just working fine.

 Have you checked the /var/log/SMlog on your xen host?

 Also, if you can check the logs of the SSVM under /var/log/cloud.log and
 see what it says concerning the communication between the SSVM and the
 agent would be nice.

 Cheers,
 Wilder

 On 30 Apr 2015, at 09:19, Mike Tutkowski mike.tutkow...@solidfire.com
 wrote:

  That's what I'm thinking.
 
  On Thu, Apr 30, 2015 at 1:04 AM, Marcus shadow...@gmail.com wrote:
 
  So it could be a systemvm template change, perhaps?
 
  On Wed, Apr 29, 2015 at 11:13 PM, Mike Tutkowski
  mike.tutkow...@solidfire.com wrote:
  I logged into the VR, noticed the IP addresses weren't showing up as
  expected when I ran ifconfig, then I restarted networking services,
 which
  set the IP addresses up properly.
 
  On Thu, Apr 30, 2015 at 12:08 AM, Marcus shadow...@gmail.com wrote:
 
  Logged into the router?
 
 
  On Wed, Apr 29, 2015 at 10:58 PM, Mike 

Build failed in Jenkins: build-master-slowbuild #1444

2015-05-02 Thread jenkins
See http://jenkins.buildacloud.org/job/build-master-slowbuild/1444/

--
[...truncated 27149 lines...]
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SBucketDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SHostDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SMetaDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectItemDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/UserCredentialsDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/S3Constants.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/controller/s3/ServletAction.java.  Ensure this class 
was instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/core/s3/S3BucketAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/JsonAccessor.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XElement.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XFlatten.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XOmitNull.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializable.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializerAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
Report time: 101138ms

[ERROR] May 02, 2015 8:24:23 PM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData
INFO: Cobertura: Loaded information on 6393 classes.

[INFO] Cobertura Report generation was successful.
[INFO] Cobertura 2.0.3 - GNU GPL License (NO WARRANTY) - See COPYRIGHT file
Report time: 11385ms

[ERROR] May 02, 2015 8:26:04 PM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData

Re: Build failed in Jenkins: build-master-slowbuild #1434

2015-05-02 Thread Daan Hoogland
CRY,

findbugs found 42 new issues in code that wasn't changed since the last
build! I still want to have them out of the way. I think we should strive
for zero.

thoughts?

Op vr 1 mei 2015 om 16:50 schreef jenk...@cloudstack.org:

See http://jenkins.buildacloud.org/job/build-master-slowbuild/1434/changes

 Changes:

 [Rohit Yadav] CLOUDSTACK-6139: Fix regression, allow zone level systemvm
 localstorage config

 --
 [...truncated 27144 lines...]
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/persist/dao/SBucketDao.java.  Ensure this class was
 instrumented, and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/persist/dao/SHostDao.java.  Ensure this class was
 instrumented, and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/persist/dao/SMetaDao.java.  Ensure this class was
 instrumented, and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/persist/dao/SObjectDao.java.  Ensure this class was
 instrumented, and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/persist/dao/SObjectItemDao.java.  Ensure this class was
 instrumented, and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/persist/dao/UserCredentialsDao.java.  Ensure this class
 was instrumented, and this data file contains the instrumentation
 information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/service/S3Constants.java.  Ensure this class was
 instrumented, and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/service/controller/s3/ServletAction.java.  Ensure this
 class was instrumented, and this data file contains the instrumentation
 information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/service/core/s3/S3BucketAdapter.java.  Ensure this class
 was instrumented, and this data file contains the instrumentation
 information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/util/JsonAccessor.java.  Ensure this class was
 instrumented, and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/util/XElement.java.  Ensure this class was instrumented,
 and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/util/XFlatten.java.  Ensure this class was instrumented,
 and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/util/XOmitNull.java.  Ensure this class was instrumented,
 and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/util/XSerializable.java.  Ensure this class was
 instrumented, and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/util/XSerializerAdapter.java.  Ensure this class was
 instrumented, and this data file contains the instrumentation information.
 Report time: 101281ms

 [ERROR] May 01, 2015 2:47:25 PM
 

IP clearance for ec2stack and gstack has passed

2015-05-02 Thread Sebastien Goasguen
The vote for IP clearance of ec2stack and gstack has passed.

I create INFRA tickets to create git repo within our TLP to host those two 
subproject (ala cloudmonkey).

I will let you know when the code is dropped

-sebastien

Re: [ANNOUNCE] New committer: Remi Bergsma

2015-05-02 Thread Remi Bergsma
Thanks all for the kind words :-) Looking forward to continue working with you 
and making CloudStack even better!

Regards, Remi 

 On 01 May 2015, at 14:24, Pierre-Luc Dion pd...@cloudops.com wrote:
 
 Congrats Remi!
 
 
 On Fri, May 1, 2015 at 8:07 AM, Mike Tutkowski mike.tutkow...@solidfire.com
 wrote:
 
 Congratulations, Remi!
 
 On Friday, May 1, 2015, Daan Hoogland daan.hoogl...@gmail.com wrote:
 
 The Project Management Committee (PMC) for Apache CloudStack
 has asked Remi Bergsma to become a committer and we are pleased to
 announce that he has accepted.
 
 Remi has reported and helped in investigating and solving many bugs. He
 has
 given talks on managing clouds on several occasions.
 
 Being a committer allows many contributors to contribute more
 autonomously. For developers, it makes it easier to submit changes and
 eliminates the need to have contributions reviewed via the patch
 submission process. Whether contributions are development-related or
 otherwise, it is a recognition of a contributor's participation in the
 project and commitment to the project and the Apache Way.
 
 Please join me in congratulating Remi
 
 --Daan Hoogland
 on behalf of the CloudStack PMC
 
 
 --
 *Mike Tutkowski*
 *Senior CloudStack Developer, SolidFire Inc.*
 e: mike.tutkow...@solidfire.com
 o: 303.746.7302
 Advancing the way the world uses the cloud
 http://solidfire.com/solution/overview/?video=play*™*
 


Re: KVM HA

2015-05-02 Thread Tilak Raj Singh
goto boot menu to enable intel virtualisation...in newer intel motherboards
its under security in boot menu..

On Fri, May 1, 2015 at 8:46 PM, Somesh Naidu somesh.na...@citrix.com
wrote:

 There may not be any specific KVM.HA configuration. What are you looking
 for?

 Somesh
 CloudPlatform Escalations
 Citrix Systems, Inc.


 -Original Message-
 From: Budur Nagaraju [mailto:nbud...@gmail.com]
 Sent: Thursday, April 30, 2015 5:38 AM
 To: dev@cloudstack.apache.org
 Subject: KVM HA

  HI
   New to cloud stack struggled searching for configuring KVM HA unable to
 find any document .
   Pls any help to configure KVM HA in cloud stack ,really helps a lot.

 Thanks,
 Nagaraju



Re: [ANNOUNCE] New committer: Remi Bergsma

2015-05-02 Thread Jan-Arve Nygård
Congratulations!

Den fredag 1. mai 2015 skrev Daan Hoogland daan.hoogl...@gmail.com
følgende:

 The Project Management Committee (PMC) for Apache CloudStack
 has asked Remi Bergsma to become a committer and we are pleased to
 announce that he has accepted.

 Remi has reported and helped in investigating and solving many bugs. He has
 given talks on managing clouds on several occasions.

 Being a committer allows many contributors to contribute more
 autonomously. For developers, it makes it easier to submit changes and
 eliminates the need to have contributions reviewed via the patch
 submission process. Whether contributions are development-related or
 otherwise, it is a recognition of a contributor's participation in the
 project and commitment to the project and the Apache Way.

 Please join me in congratulating Remi

 --Daan Hoogland
 on behalf of the CloudStack PMC



Re: Secondary Storage vlan/routing question

2015-05-02 Thread Andrija Panic
Sorry, fast fingers...:

My question:

Since I already provisioned vlan interfaces for Public and (Secondary)
Storage networks - should I not define VLAN/VNI for these 2 networks,
during creation of new Zone in ACS ? My understanding is that I dont need
to define it, based on what I know on how ACS provision vlan interfaces...

Another question:
- I see while defining Secondary Storage net - I need to define GTW - is
this GTW really used for anything - I read some docs, but still I'm not
clear on this part...
Because:
All KVM hosts are dirrectly attached to management, primary storage,
secondary stroage networks - and I understadn SSVM will be also attached to
both management and the secondary straoge networks as well - so why is GTW
needed if no routing is needed in betwenn ?

Thanks,
Andrija


On 2 May 2015 at 17:34, Andrija Panic andrija.pa...@gmail.com wrote:

 Hi people,

 I have a question regarding vlan tagging of (Secondary)Storage network
 (and Public network for that matter).


 Current setup:

 cloudbr0 -- eth0 Management Net (1G)
 eth2+eth3 = bond0 (10G+10G)
 cloudbr1 -- bond0.112 Primary Storage Net
 cloudbr2 -- bond0.113 Secondary Storage Net
 cloudbr3 -- bond0.150 Guest VLAN [for vxlans] net
 cloudbr4 -- bond0.160 Public net

 My question,


 --

 Andrija Panić




-- 

Andrija Panić


[GitHub] cloudstack pull request: added favicon

2015-05-02 Thread K0zka
GitHub user K0zka opened a pull request:

https://github.com/apache/cloudstack/pull/225

added favicon

Signed-off-by: Laszlo Hornyak laszlo.horn...@gmail.com

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/K0zka/cloudstack favicon_master

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cloudstack/pull/225.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #225


commit 6d41b72d03f09a365d48c8c1f2d878b48dfa4908
Author: Laszlo Hornyak laszlo.horn...@gmail.com
Date:   2015-05-02T21:22:23Z

added favicon

Signed-off-by: Laszlo Hornyak laszlo.horn...@gmail.com




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: Build failed in Jenkins: build-master-slowbuild #1434

2015-05-02 Thread Rohit Yadav
Yeah, we should strive for zero. Looks like all of them are in 
vmware/vmware-base and network plugins:
http://jenkins.buildacloud.org/job/build-master-slowbuild/1444/findbugsResult/new/

 On 01-May-2015, at 7:14 pm, Daan Hoogland daan.hoogl...@gmail.com wrote:

 CRY,

 findbugs found 42 new issues in code that wasn't changed since the last
 build! I still want to have them out of the way. I think we should strive
 for zero.

 thoughts?

 Op vr 1 mei 2015 om 16:50 schreef jenk...@cloudstack.org:

 See http://jenkins.buildacloud.org/job/build-master-slowbuild/1434/changes

 Changes:

 [Rohit Yadav] CLOUDSTACK-6139: Fix regression, allow zone level systemvm
 localstorage config

 --
 [...truncated 27144 lines...]
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/persist/dao/SBucketDao.java.  Ensure this class was
 instrumented, and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/persist/dao/SHostDao.java.  Ensure this class was
 instrumented, and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/persist/dao/SMetaDao.java.  Ensure this class was
 instrumented, and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/persist/dao/SObjectDao.java.  Ensure this class was
 instrumented, and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/persist/dao/SObjectItemDao.java.  Ensure this class was
 instrumented, and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/persist/dao/UserCredentialsDao.java.  Ensure this class
 was instrumented, and this data file contains the instrumentation
 information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/service/S3Constants.java.  Ensure this class was
 instrumented, and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/service/controller/s3/ServletAction.java.  Ensure this
 class was instrumented, and this data file contains the instrumentation
 information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/service/core/s3/S3BucketAdapter.java.  Ensure this class
 was instrumented, and this data file contains the instrumentation
 information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/util/JsonAccessor.java.  Ensure this class was
 instrumented, and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/util/XElement.java.  Ensure this class was instrumented,
 and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/util/XFlatten.java.  Ensure this class was instrumented,
 and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/util/XOmitNull.java.  Ensure this class was instrumented,
 and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does not
 contain instrumentation information for the file
 com/cloud/bridge/util/XSerializable.java.  Ensure this class was
 instrumented, and this data file contains the instrumentation information.
 [cobertura] INFO  [main]
 net.sourceforge.cobertura.reporting.html.HTMLReport - Data file does 

[GitHub] cloudstack pull request: server: Introduce Unknown Status to be us...

2015-05-02 Thread bhaisaab
Github user bhaisaab commented on the pull request:

https://github.com/apache/cloudstack/pull/222#issuecomment-98408236
  
@koushik-das the new fix ensures that testIpAddress does not return null; 
and there is no need to check for null and then continue


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Build failed in Jenkins: build-master-slowbuild #1445

2015-05-02 Thread jenkins
See http://jenkins.buildacloud.org/job/build-master-slowbuild/1445/

--
[...truncated 27152 lines...]
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SBucketDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SHostDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SMetaDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectItemDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/UserCredentialsDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/S3Constants.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/controller/s3/ServletAction.java.  Ensure this class 
was instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/core/s3/S3BucketAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/JsonAccessor.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XElement.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XFlatten.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XOmitNull.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializable.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializerAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
Report time: 102082ms

[ERROR] May 02, 2015 11:22:32 PM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData
INFO: Cobertura: Loaded information on 6393 classes.

[INFO] Cobertura Report generation was successful.
[INFO] Cobertura 2.0.3 - GNU GPL License (NO WARRANTY) - See COPYRIGHT file
Report time: 11427ms

[ERROR] May 02, 2015 11:24:14 PM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData

Build failed in Jenkins: build-master-slowbuild #1448

2015-05-02 Thread jenkins
See http://jenkins.buildacloud.org/job/build-master-slowbuild/1448/

--
[...truncated 27152 lines...]
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SBucketDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SHostDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SMetaDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectItemDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/UserCredentialsDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/S3Constants.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/controller/s3/ServletAction.java.  Ensure this class 
was instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/core/s3/S3BucketAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/JsonAccessor.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XElement.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XFlatten.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XOmitNull.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializable.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializerAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
Report time: 101693ms

[ERROR] May 03, 2015 5:24:08 AM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData
INFO: Cobertura: Loaded information on 6393 classes.

[INFO] Cobertura Report generation was successful.
[INFO] Cobertura 2.0.3 - GNU GPL License (NO WARRANTY) - See COPYRIGHT file
Report time: 11342ms

[ERROR] May 03, 2015 5:25:50 AM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData

[GitHub] cloudstack pull request: server: Introduce Unknown Status to be us...

2015-05-02 Thread abhinandanprateek
Github user abhinandanprateek commented on the pull request:

https://github.com/apache/cloudstack/pull/222#issuecomment-98430113
  
The issue has got entangled, let me try to summarise what each of us has 
been trying to do:

The initial fix itself takes a step into right direction. Use of a proper 
state instead of null is a good idea. Right now that change is localised in 
only one of the investigator method. On the whole there is no change to code 
flow and the change makes it even more readable.

If you look at the HA code holistically then this breaks a pattern for the 
good, but then the whole code should be made consistent, which means when any 
investigator i.e. a host investigator or a vm investigator does not know the 
state of the resource for sure it passes 'UNKNOWN' and not 'null'. I think that 
will be bit disruptive for a maintenance release, but if can be done that is 
fine too.

So if majority agrees that they will continue to work on making this code 
consistent eventually then that is best way forward . As of now it does not 
change code flow but only effects the semantic consistency.




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: marvin test cases + travis

2015-05-02 Thread Abhinandan Prateek
I think it is a choice between fast response Vs more accurate response. I will 
rather wait for additional 20 minutes to get a better response.
With the commit rate we have that should not overload the system.
Yes we should definitely look for quality and coverage of the tests picked then 
the number.

 On 01-May-2015, at 11:09 pm, Rajani Karuturi raj...@apache.org wrote:

 -1 on increasing the time
 As a reviewer, I would like an immediate response on a pull request. By the
 time I review the code, if CI gives a +1(or -1) I can close the PR then and
 there instead of coming back again to merge.

 I would suggest running all the jobs under 30 min and increasing the number
 of parallel jobs as much as possible. we are running 10 jobs now. may be we
 could increase this to 15(dont know if this is possible)

 we should aim to run only the smoke tests and not the entire regression
 suite always.

 Making the jobs run on containers will speed them up. This needs some work
 on removing the sudo dependency on the jobs (which is required to install
 some additional packages and marvin).

 ~Rajani

 On Fri, May 1, 2015 at 8:25 AM, Abhinandan Prateek 
 abhinandan.prat...@shapeblue.com wrote:

 +1 for increased timeouts.

 At the moment we get less than 24 commits per day on master. Only a couple
 on other branches per day.
 We can increase the timeout to upto 70 minutes or more. Will try to ensure
 that in general a single run does not take more than an hour.

 A timeout window slightly higher will ensure that we do not see timeout
 failures.

 On 30-Apr-2015, at 11:25 pm, Daan Hoogland daan.hoogl...@gmail.com
 wrote:

 Travis is starting to indue the, 'oh,  a timeout again' - blindness in
 me.
 Let's put a safe time on it.  A result should mean something and those
 time
 out are like the (decreasing) abundance of Jenkins failures.

 So +1 for increasing the time

 On Thu, 30 Apr 2015 18:46 Ian Duffy i...@ianduffy.ie wrote:

 Do we need to ask for an increase in run time?

 From my experience I wouldn't say its required however *it would be very
 nice*.
 At the moment what we do is create new parallel jobs and balance the
 tests across them so each job is under 50mins.

 Anywho, just my 2c, see what others say/think.

 On 30 April 2015 at 17:34, David Nalley da...@gnsa.us wrote:
 Do we need to ask for an increase in run time?
 50 minutes is the OSS default, but the ASF is a paying customer and we
 can ask for longer timeouts.

 --David

 On Thu, Apr 30, 2015 at 10:06 AM, Abhinandan Prateek
 abhinandan.prat...@shapeblue.com wrote:
 One of the run did timeout. Will balance the runs.

 On 30-Apr-2015, at 5:59 pm, Abhinandan Prateek 
 abhinandan.prat...@shapeblue.com wrote:

 Yes, thanks for checking. I was worried that now some of them may
 start timing out.
 I have another 10 suites tested, will add them once everything seems
 fine.

 -abhi


 On 30-Apr-2015, at 5:32 pm, Rajani Karuturi raj...@apache.org
 wrote:

 after correcting the test file path, its working fine

 https://travis-ci.org/karuturi/cloudstack/jobs/60681263



 ~Rajani

 On Thu, Apr 30, 2015 at 4:51 PM, Rajani Karuturi raj...@apache.org

 wrote:

 I think its due to this commit



 https://github.com/apache/cloudstack/commit/b941480e0df0bfa3377e797126b96cf9b3fbee77

 Here, test file name is changed from testname to
 [smoke,component]/testname

 But, while running each test file in the for loop, it prepends the
 name
 with smoke and hence, it cant find the file and none of the tests
 in
 the
 file are run



 ~Rajani

 On Thu, Apr 30, 2015 at 4:37 PM, Abhinandan Prateek 
 abhinandan.prat...@shapeblue.com wrote:

 It is possible, I will check.

 On 30-Apr-2015, at 3:43 pm, Rajani Karuturi raj...@apache.org
 wrote:

 Hey Abhi,

 In the recent travis runs, its not printing the test case in
 output (
 https://travis-ci.org/apache/cloudstack/jobs/60634577#L5443)

 It used to print the test case name and status (
 https://travis-ci.org/apache/cloudstack/jobs/59958134#L4205)

 Do you think it can be due to any recent changes?

 ~Rajani

 On Thu, Apr 30, 2015 at 10:32 AM, Abhinandan Prateek 
 abhinandan.prat...@shapeblue.com wrote:


 There are more than 10 additional suites that can still be
 included
 to
 the travis-CI.
 Since the current set runs comfortably I will go ahead and add
 more. If
 the system gets overloaded, then we can balance the kind of test
 suites and
 amount of test suits that run comfortably on travis.

 -abhi




 Find out more about ShapeBlue and our range of CloudStack
 related
 services

 IaaS Cloud Design  Build
 http://shapeblue.com/iaas-cloud-design-and-build//
 CSForge – rapid IaaS deployment framework
 http://shapeblue.com/csforge/
 CloudStack Consulting
 http://shapeblue.com/cloudstack-consultancy/
 CloudStack Software Engineering
 http://shapeblue.com/cloudstack-software-engineering/
 CloudStack Infrastructure Support
 http://shapeblue.com/cloudstack-infrastructure-support/
 CloudStack Bootcamp Training Courses
 

Build failed in Jenkins: build-master-slowbuild #1446

2015-05-02 Thread jenkins
See http://jenkins.buildacloud.org/job/build-master-slowbuild/1446/

--
[...truncated 27165 lines...]
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SBucketDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SHostDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SMetaDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectItemDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/UserCredentialsDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/S3Constants.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/controller/s3/ServletAction.java.  Ensure this class 
was instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/core/s3/S3BucketAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/JsonAccessor.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XElement.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XFlatten.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XOmitNull.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializable.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializerAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
Report time: 98546ms

[ERROR] May 03, 2015 12:47:50 AM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData
INFO: Cobertura: Loaded information on 6393 classes.

[INFO] Cobertura Report generation was successful.
[INFO] Cobertura 2.0.3 - GNU GPL License (NO WARRANTY) - See COPYRIGHT file
Report time: 11464ms

[ERROR] May 03, 2015 12:49:29 AM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData

Re: IP clearance for ec2stack and gstack has passed

2015-05-02 Thread Ian Duffy
Awesome! Great to her Sebastien.

On 2 May 2015 at 23:00, Rohit Yadav rohit.ya...@shapeblue.com wrote:
 That’s good news. The other day I was trying to setup ec2stack for someone 
 and its users were skeptic in using ec2stack because it was not a ACS 
 (sub)project (yet), now hopefully they will have more assurance!

 On 02-May-2015, at 6:02 pm, Sebastien Goasguen run...@gmail.com wrote:

 The vote for IP clearance of ec2stack and gstack has passed.

 I create INFRA tickets to create git repo within our TLP to host those two 
 subproject (ala cloudmonkey).

 I will let you know when the code is dropped

 -sebastien

 Regards,
 Rohit Yadav
 Software Architect, ShapeBlue
 M. +91 88 262 30892 | rohit.ya...@shapeblue.com
 Blog: bhaisaab.org | Twitter: @_bhaisaab



 Find out more about ShapeBlue and our range of CloudStack related services

 IaaS Cloud Design  Buildhttp://shapeblue.com/iaas-cloud-design-and-build//
 CSForge – rapid IaaS deployment frameworkhttp://shapeblue.com/csforge/
 CloudStack Consultinghttp://shapeblue.com/cloudstack-consultancy/
 CloudStack Software 
 Engineeringhttp://shapeblue.com/cloudstack-software-engineering/
 CloudStack Infrastructure 
 Supporthttp://shapeblue.com/cloudstack-infrastructure-support/
 CloudStack Bootcamp Training 
 Courseshttp://shapeblue.com/cloudstack-training/

 This email and any attachments to it may be confidential and are intended 
 solely for the use of the individual to whom it is addressed. Any views or 
 opinions expressed are solely those of the author and do not necessarily 
 represent those of Shape Blue Ltd or related companies. If you are not the 
 intended recipient of this email, you must neither take any action based upon 
 its contents, nor copy or show it to anyone. Please contact the sender if you 
 believe you have received this email in error. Shape Blue Ltd is a company 
 incorporated in England  Wales. ShapeBlue Services India LLP is a company 
 incorporated in India and is operated under license from Shape Blue Ltd. 
 Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is 
 operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company 
 registered by The Republic of South Africa and is traded under license from 
 Shape Blue Ltd. ShapeBlue is a registered trademark.


Build failed in Jenkins: build-master-slowbuild #1447

2015-05-02 Thread jenkins
See http://jenkins.buildacloud.org/job/build-master-slowbuild/1447/

--
[...truncated 27152 lines...]
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SBucketDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SHostDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SMetaDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/SObjectItemDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/persist/dao/UserCredentialsDao.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/S3Constants.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/controller/s3/ServletAction.java.  Ensure this class 
was instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/service/core/s3/S3BucketAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/JsonAccessor.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XElement.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XFlatten.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XOmitNull.java.  Ensure this class was instrumented, and 
this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializable.java.  Ensure this class was instrumented, 
and this data file contains the instrumentation information.
[cobertura] INFO  [main] net.sourceforge.cobertura.reporting.html.HTMLReport - 
Data file does not contain instrumentation information for the file 
com/cloud/bridge/util/XSerializerAdapter.java.  Ensure this class was 
instrumented, and this data file contains the instrumentation information.
Report time: 102444ms

[ERROR] May 03, 2015 2:24:20 AM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData
INFO: Cobertura: Loaded information on 6393 classes.

[INFO] Cobertura Report generation was successful.
[INFO] Cobertura 2.0.3 - GNU GPL License (NO WARRANTY) - See COPYRIGHT file
Report time: 11198ms

[ERROR] May 03, 2015 2:26:03 AM 
net.sourceforge.cobertura.coveragedata.CoverageDataFileHandler loadCoverageData

Re: marvin test cases + travis

2015-05-02 Thread Abhinandan Prateek
We can control the number of tests that travis runs. It is possible to say run 
more variety of test cases on each 10th run.
This will ensure that 9 out of 10 times travis runs a small sub set of tests. 
We can do this as travis provides the build number in an environment variable. 
If we can trigger the travis automatically at certain time of day then we can 
use that run to run just the regression suite. In that case we can have per 
commit run of smoke and once a day run of regression suite.

Even with this scheme we will need to increase the timeout. So I think it is ok 
to increase the timeout, but to get faster results most of the time, tune 
travis to run only a smaller subset of tests most of the time or for each 
commit.

If we leave out test cases out of travis that it can run, then we will be 
dependant on individuals/companies to do it once in a while and that is not 
automation.

With better control of travis we can have it run unit tests once (recently 
added by Rajani as an optimisation), have it run find bug, regressions say once 
in n runs etc. We should look forward to a highly customisable and useful 
travis instead of working in past limitations.


 On 02-May-2015, at 10:22 am, Raja Pullela raja.pull...@citrix.com wrote:

 -1 for the time...
 since these tests run independently if we can spawn more threads/vms to bring 
 down the run time, that will be good.
 Another thing that can be looked at the run only tests in SMOKE folder.
 BTW, more tests in  SMOKE  should be added on a continuous basis.

 -Original Message-
 From: Rajani Karuturi [mailto:raj...@apache.org]
 Sent: Friday, May 1, 2015 11:09 PM
 To: dev@cloudstack.apache.org
 Subject: Re: marvin test cases + travis

 -1 on increasing the time
 As a reviewer, I would like an immediate response on a pull request. By the 
 time I review the code, if CI gives a +1(or -1) I can close the PR then and 
 there instead of coming back again to merge.

 I would suggest running all the jobs under 30 min and increasing the number 
 of parallel jobs as much as possible. we are running 10 jobs now. may be we 
 could increase this to 15(dont know if this is possible)

 we should aim to run only the smoke tests and not the entire regression suite 
 always.

 Making the jobs run on containers will speed them up. This needs some work on 
 removing the sudo dependency on the jobs (which is required to install some 
 additional packages and marvin).

 ~Rajani

 On Fri, May 1, 2015 at 8:25 AM, Abhinandan Prateek  
 abhinandan.prat...@shapeblue.com wrote:

 +1 for increased timeouts.

 At the moment we get less than 24 commits per day on master. Only a
 couple on other branches per day.
 We can increase the timeout to upto 70 minutes or more. Will try to
 ensure that in general a single run does not take more than an hour.

 A timeout window slightly higher will ensure that we do not see
 timeout failures.

 On 30-Apr-2015, at 11:25 pm, Daan Hoogland daan.hoogl...@gmail.com
 wrote:

 Travis is starting to indue the, 'oh,  a timeout again' - blindness
 in
 me.
 Let's put a safe time on it.  A result should mean something and
 those
 time
 out are like the (decreasing) abundance of Jenkins failures.

 So +1 for increasing the time

 On Thu, 30 Apr 2015 18:46 Ian Duffy i...@ianduffy.ie wrote:

 Do we need to ask for an increase in run time?

 From my experience I wouldn't say its required however *it would be
 very nice*.
 At the moment what we do is create new parallel jobs and balance
 the tests across them so each job is under 50mins.

 Anywho, just my 2c, see what others say/think.

 On 30 April 2015 at 17:34, David Nalley da...@gnsa.us wrote:
 Do we need to ask for an increase in run time?
 50 minutes is the OSS default, but the ASF is a paying customer
 and we can ask for longer timeouts.

 --David

 On Thu, Apr 30, 2015 at 10:06 AM, Abhinandan Prateek
 abhinandan.prat...@shapeblue.com wrote:
 One of the run did timeout. Will balance the runs.

 On 30-Apr-2015, at 5:59 pm, Abhinandan Prateek 
 abhinandan.prat...@shapeblue.com wrote:

 Yes, thanks for checking. I was worried that now some of them
 may
 start timing out.
 I have another 10 suites tested, will add them once everything
 seems
 fine.

 -abhi


 On 30-Apr-2015, at 5:32 pm, Rajani Karuturi raj...@apache.org
 wrote:

 after correcting the test file path, its working fine

 https://travis-ci.org/karuturi/cloudstack/jobs/60681263



 ~Rajani

 On Thu, Apr 30, 2015 at 4:51 PM, Rajani Karuturi
 raj...@apache.org

 wrote:

 I think its due to this commit



 https://github.com/apache/cloudstack/commit/b941480e0df0bfa3377e797126
 b96cf9b3fbee77

 Here, test file name is changed from testname to
 [smoke,component]/testname

 But, while running each test file in the for loop, it prepends
 the
 name
 with smoke and hence, it cant find the file and none of the
 tests
 in
 the
 file are run



 ~Rajani

 On Thu, Apr 30, 2015 at 4:37 PM, Abhinandan Prateek 
 abhinandan.prat...@shapeblue.com