Updated Branches: refs/heads/master e25cbd66d -> 551fdd7df
CLOUDSTACK-3605 Make the display_offering = true by default in the code. Signed off by : nitin mehta<[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/551fdd7d Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/551fdd7d Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/551fdd7d Branch: refs/heads/master Commit: 551fdd7df43cfd7ca2e3ebea5b988ee80db9c6c3 Parents: e25cbd6 Author: Nitin Mehta <[email protected]> Authored: Thu Jul 18 15:10:47 2013 +0530 Committer: Nitin Mehta <[email protected]> Committed: Thu Jul 18 15:12:29 2013 +0530 ---------------------------------------------------------------------- engine/schema/src/com/cloud/storage/DiskOfferingVO.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/551fdd7d/engine/schema/src/com/cloud/storage/DiskOfferingVO.java ---------------------------------------------------------------------- diff --git a/engine/schema/src/com/cloud/storage/DiskOfferingVO.java b/engine/schema/src/com/cloud/storage/DiskOfferingVO.java index 8cbda14..975619f 100755 --- a/engine/schema/src/com/cloud/storage/DiskOfferingVO.java +++ b/engine/schema/src/com/cloud/storage/DiskOfferingVO.java @@ -119,7 +119,7 @@ public class DiskOfferingVO implements DiskOffering { Long iopsWriteRate; @Column(name="display_offering") - boolean displayOffering; + boolean displayOffering = true; public DiskOfferingVO() { this.uuid = UUID.randomUUID().toString();
