Skip to content
Open
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
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
<module>resourceconfig</module>
<module>plugin/iscsi</module>
<module>abstraction</module>
<module>test</module>
</modules>

<dependencyManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class PrimaryStorageGlobalConfig {

@GlobalConfigValidation(validValues = {"true", "false"})
@BindResourceConfig({PrimaryStorageVO.class})
@GlobalConfigDef(defaultValue = "false", type = Boolean.class, description = "Whether undo temp snapshot after template uploaded")
@GlobalConfigDef(defaultValue = "true", type = Boolean.class, description = "Whether undo temp snapshot after template uploaded")
public static GlobalConfig UNDO_TEMP_SNAPSHOT = new GlobalConfig(CATEGORY, "undo.tempSnapshot");
@GlobalConfigValidation(min = 1)
@GlobalConfigDef(defaultValue = "1", type = Long.class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ public class VolumeSnapshotGlobalConfig {
public static GlobalConfig SNAPSHOT_BEFORE_REVERTVOLUME = new GlobalConfig(CATEGORY, "snapshot.before.revertvolume");

@GlobalConfigValidation(validValues = {"true", "false"})
@GlobalConfigDef(defaultValue = "false", type = Boolean.class, description = "effective count with detached volumes")
@GlobalConfigDef(defaultValue = "true", type = Boolean.class, description = "effective count with detached volumes")
public static GlobalConfig EFFECTIVE_COUNT_WITH_DETACHED_VOLUMES = new GlobalConfig(CATEGORY, "effectiveCount.withDetachedVolumes");
}
Loading