You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"List of URLs to listen on for the metrics and health endpoints.",
773
773
)
774
-
fs.UintVar(&cfg.MaxSnapFiles, "max-snapshots", cfg.MaxSnapFiles, "Maximum number of snapshot files to retain (0 is unlimited). Deprecated in v3.6 and will be decommissioned in v3.7.")
774
+
fs.UintVar(&cfg.MaxSnapFiles, "max-snapshots", cfg.MaxSnapFiles, "Maximum number of snapshot files to retain (0 is unlimited). Deprecated in v3.6 and will be decommissioned in v3.8.")
775
775
fs.UintVar(&cfg.MaxWalFiles, "max-wals", cfg.MaxWalFiles, "Maximum number of wal files to retain (0 is unlimited).")
776
776
fs.StringVar(&cfg.Name, "name", cfg.Name, "Human-readable name for this member.")
777
777
fs.Uint64Var(&cfg.SnapshotCount, "snapshot-count", cfg.SnapshotCount, "Number of committed transactions to trigger a snapshot to disk. Deprecated in v3.6 and will be decommissioned in v3.7.")
Copy file name to clipboardExpand all lines: server/etcdmain/config.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ var (
60
60
deprecatedFlags=map[string]string{
61
61
// TODO: remove in 3.7.
62
62
"snapshot-count": "--snapshot-count is deprecated in 3.6 and will be decommissioned in 3.7.",
63
-
"max-snapshots": "--max-snapshots is deprecated in 3.6 and will be decommissioned in 3.7.",
63
+
"max-snapshots": "--max-snapshots is deprecated in 3.6 and will be decommissioned in 3.8.",
64
64
"v2-deprecation": "--v2-deprecation is deprecated and scheduled for removal in v3.8. The default value is enforced, ignoring user input.",
65
65
"experimental-compact-hash-check-enabled": "--experimental-compact-hash-check-enabled is deprecated in 3.6 and will be decommissioned in 3.7. Use '--feature-gates=CompactHashCheck=true' instead.",
66
66
"experimental-compact-hash-check-time": "--experimental-compact-hash-check-time is deprecated in 3.6 and will be decommissioned in 3.7. Use '--compact-hash-check-time' instead.",
0 commit comments