Skip to content

Commit

Permalink
[core] Adjust default value of 'snapshot.expire.limit' (#4508)
Browse files Browse the repository at this point in the history
  • Loading branch information
askwang authored Nov 13, 2024
1 parent 3ffeab9 commit 5e3c24b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/layouts/shortcodes/generated/core_configuration.html
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@
</tr>
<tr>
<td><h5>snapshot.expire.limit</h5></td>
<td style="word-wrap: break-word;">10</td>
<td style="word-wrap: break-word;">50</td>
<td>Integer</td>
<td>The maximum number of snapshots allowed to expire at a time.</td>
</tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ public class CoreOptions implements Serializable {
public static final ConfigOption<Integer> SNAPSHOT_EXPIRE_LIMIT =
key("snapshot.expire.limit")
.intType()
.defaultValue(10)
.defaultValue(50)
.withDescription(
"The maximum number of snapshots allowed to expire at a time.");

Expand Down

0 comments on commit 5e3c24b

Please sign in to comment.