DaanHoogland opened a new pull request #3969: Snapshot deletion issues
URL: https://github.com/apache/cloudstack/pull/3969
 
 
   ## Description
   <!--- Describe your changes in detail -->
   copy of PR #3649 on joint account for easier cooperation.
   
   Tested both cases:
   - Snapshot backed up on Secondary (stored on primary and secondary) 
   - Snapshot stored only on primary storage.
   
   This fix works for KVM  and XenServer.
   
   **Note**: I changed the name of the strategy from 
_XenserverSnapshotStrategy_ to _DefaultSnapshotStrategy_ due to the fact that 
the "Xenserver" strategy handles also Ceph, KVM, and do return 
`StrategyPriority.DEFAULT` in any case except _REVERT_.
   
   ```
       @Override
       public StrategyPriority canHandle(Snapshot snapshot, SnapshotOperation 
op) {
           if (SnapshotOperation.REVERT.equals(op)) {
               long volumeId = snapshot.getVolumeId();
               VolumeVO volumeVO = volumeDao.findById(volumeId);
   
               if (volumeVO != null && 
ImageFormat.QCOW2.equals(volumeVO.getFormat())) {
                   return StrategyPriority.DEFAULT;
               }
               return StrategyPriority.CANT_HANDLE;
           }
           return StrategyPriority.DEFAULT;
       }
   ```
   
   Fixes: #3646
   
   ## Types of changes
   <!--- What types of changes does your code introduce? Put an `x` in all the 
boxes that apply: -->
   - [ ] Breaking change (fix or feature that would cause existing 
functionality to change)
   - [ ] New feature (non-breaking change which adds functionality)
   - [x] Bug fix (non-breaking change which fixes an issue)
   - [ ] Enhancement (improves an existing feature and functionality)
   - [ ] Cleanup (Code refactoring and cleanup, that may add test cases)

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to