nit: shell snapshot retention to 3 days (#10382)
This commit is contained in:
parent
3cc9122ee2
commit
4971e96a98
1 changed files with 1 additions and 1 deletions
|
|
@ -29,7 +29,7 @@ pub struct ShellSnapshot {
|
|||
}
|
||||
|
||||
const SNAPSHOT_TIMEOUT: Duration = Duration::from_secs(10);
|
||||
const SNAPSHOT_RETENTION: Duration = Duration::from_secs(60 * 60 * 24 * 7); // 7 days retention.
|
||||
const SNAPSHOT_RETENTION: Duration = Duration::from_secs(60 * 60 * 24 * 3); // 3 days retention.
|
||||
const SNAPSHOT_DIR: &str = "shell_snapshots";
|
||||
const EXCLUDED_EXPORT_VARS: &[&str] = &["PWD", "OLDPWD"];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue