Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -586,3 +586,14 @@ UPDATE cloud.configuration
SET description = "Use SSL method used to encrypt copy traffic between zones. Also ensures that the certificate assigned to the zone is used when
generating links for external access."
WHERE name = 'secstorage.encrypt.copy';

-- allow isolated networks without services to be used as is.
UPDATE `cloud`.`networks` ntwk
SET ntwk.state = 'Implemented'
WHERE ntwk.network_offering_id in
(SELECT id FROM `cloud`.`network_offerings` ntwkoff
WHERE (SELECT count(*) FROM `cloud`.`ntwk_offering_service_map` ntwksrvcmp WHERE ntwksrvcmp.network_offering_id = ntwkoff.id) = 0
AND ntwkoff.is_persistent = 1) AND
ntwk.state = 'Setup' AND
ntwk.removed is NULL AND
ntwk.guest_type = 'Isolated';
2 changes: 1 addition & 1 deletion ui/src/views/compute/CreateSnapshotWizard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export default {
fetchData () {
this.loading = true

api('listVolumes', { virtualMachineId: this.resource.id })
api('listVolumes', { virtualMachineId: this.resource.id, listall: true })
.then(json => {
this.listVolumes = json.listvolumesresponse.volume || []
})
Expand Down