Updated Branches: refs/heads/4.2 c9548e378 -> d1b982e89
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/d1b982e8 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/d1b982e8 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/d1b982e8 Branch: refs/heads/4.2 Commit: d1b982e89f5af4dc2885c5d8a859b515c2678350 Parents: c9548e3 Author: Nitin Mehta <[email protected]> Authored: Thu Jul 18 15:10:47 2013 +0530 Committer: Nitin Mehta <[email protected]> Committed: Thu Jul 18 15:11:25 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/d1b982e8/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();
