Github user serg38 commented on the issue:

    https://github.com/apache/cloudstack/pull/1692
  
    @jburwell Sorry my bad. It is PR 871 . The reason the test fails is:
    ```
    After running test_vm_snapshots.py we're getting exception on 
test_01_test_vm_volume_snapshot as it was expected before your changes in this 
PR.
    
    We're getting: 'CloudstackAPIException: Execute cmd: createsnapshot failed, 
due to: errorCode: 431, errorText:Volume snapshot is not allowed, please detach 
it from VM with VM Snapshots\n']
    
    This is consistent with VolumeApiServiceImpl.allocSnapshot method, in which 
it is:
    
            if (volume.getInstanceId() != null) {
                // Check that Vm to which this volume is attached does not have 
VM Snapshots
                if (_vmSnapshotDao.findByVm(volume.getInstanceId()).size() > 0) 
{
                    throw new InvalidParameterValueException("Volume snapshot 
is not allowed, please detach it from VM with VM Snapshots");
                }
            }
    ```


---
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.
---

Reply via email to