diff --git a/server/src/com/cloud/configuration/Config.java b/server/src/com/cloud/configuration/Config.java index 9ae1274079b..61a3119f484 100755 --- a/server/src/com/cloud/configuration/Config.java +++ b/server/src/com/cloud/configuration/Config.java @@ -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), diff --git a/server/src/com/cloud/test/DatabaseConfig.java b/server/src/com/cloud/test/DatabaseConfig.java index f6c99a4cbad..ed257219ebc 100755 --- a/server/src/com/cloud/test/DatabaseConfig.java +++ b/server/src/com/cloud/test/DatabaseConfig.java @@ -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");