mirror of https://github.com/apache/cloudstack.git
bug 8390: description of weekly and monthly snapshot policy contains hourly in global configuration
status 8390:resolved fixed
This commit is contained in:
parent
6e399aa698
commit
8798fce36d
|
|
@ -94,9 +94,9 @@ public enum Config {
|
|||
|
||||
// Snapshots
|
||||
SnapshotHourlyMax("Snapshots", SnapshotManager.class, Integer.class, "snapshot.max.hourly", "8", "Maximum hourly snapshots for a volume", null),
|
||||
SnapshotDailyMax("Snapshots", SnapshotManager.class, Integer.class, "snapshot.max.daily", "8", "Maximum dalily snapshots for a volume", null),
|
||||
SnapshotWeeklyMax("Snapshots", SnapshotManager.class, Integer.class, "snapshot.max.weekly", "8", "Maximum hourly snapshots for a volume", null),
|
||||
SnapshotMonthlyMax("Snapshots", SnapshotManager.class, Integer.class, "snapshot.max.monthly", "8", "Maximum hourly snapshots for a volume", null),
|
||||
SnapshotDailyMax("Snapshots", SnapshotManager.class, Integer.class, "snapshot.max.daily", "8", "Maximum daily snapshots for a volume", null),
|
||||
SnapshotWeeklyMax("Snapshots", SnapshotManager.class, Integer.class, "snapshot.max.weekly", "8", "Maximum weekly snapshots for a volume", null),
|
||||
SnapshotMonthlyMax("Snapshots", SnapshotManager.class, Integer.class, "snapshot.max.monthly", "8", "Maximum monthly snapshots for a volume", null),
|
||||
SnapshotPollInterval("Snapshots", SnapshotManager.class, Integer.class, "snapshot.poll.interval", "300", "The time interval in seconds when the management server polls for snapshots to be scheduled.", null),
|
||||
SnapshotDeltaMax("Snapshots", SnapshotManager.class, Integer.class, "snapshot.delta.max", "16", "max delta snapshots between two full snapshots.", null),
|
||||
|
||||
|
|
|
|||
|
|
@ -202,9 +202,9 @@ public class DatabaseConfig {
|
|||
s_configurationDescriptions.put("use.local.storage", "Indicates whether to use local storage pools or shared storage pools for system VMs.");
|
||||
s_configurationDescriptions.put("snapshot.poll.interval", "The time interval in seconds when the management server polls for snapshots to be scheduled.");
|
||||
s_configurationDescriptions.put("snapshot.max.hourly", "Maximum hourly snapshots for a volume");
|
||||
s_configurationDescriptions.put("snapshot.max.daily", "Maximum dalily snapshots for a volume");
|
||||
s_configurationDescriptions.put("snapshot.max.weekly", "Maximum hourly snapshots for a volume");
|
||||
s_configurationDescriptions.put("snapshot.max.monthly", "Maximum hourly snapshots for a volume");
|
||||
s_configurationDescriptions.put("snapshot.max.daily", "Maximum daily snapshots for a volume");
|
||||
s_configurationDescriptions.put("snapshot.max.weekly", "Maximum weekly snapshots for a volume");
|
||||
s_configurationDescriptions.put("snapshot.max.monthly", "Maximum monthly snapshots for a volume");
|
||||
s_configurationDescriptions.put("snapshot.delta.max", "max delta snapshots between two full snapshots.");
|
||||
s_configurationDescriptions.put("snapshot.recurring.test", "Flag for testing recurring snapshots");
|
||||
s_configurationDescriptions.put("snapshot.test.minutes.per.hour", "Set it to a smaller value to take more recurring snapshots");
|
||||
|
|
|
|||
Loading…
Reference in New Issue