Skip to content

Commit

Permalink
feat(bucket): Increase default retention to 30 days (#16389)
Browse files Browse the repository at this point in the history
* feat(bucket): Increase default retention to 30 days

* chore: Update PR number in changelog
  • Loading branch information
Randy Coulman authored Jan 2, 2020
1 parent 9e9bb1c commit 17634df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
1. [16347](https://github.com/influxdata/influxdb/pull/16347): Drop legacy inmem service implementation in favor of kv service with inmem dependency
1. [16348](https://github.com/influxdata/influxdb/pull/16348): Drop legacy bolt service implementation in favor of kv service with bolt dependency
1. [16014](https://github.com/influxdata/influxdb/pull/16014): While creating check, also display notification rules that would match check based on tag rules
1. [16389](https://github.com/influxdata/influxdb/pull/16389): Increase default bucket retention period to 30 days

### Bug Fixes

Expand Down
2 changes: 1 addition & 1 deletion ui/src/buckets/components/Retention.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {extractBucketMaxRetentionSeconds} from 'src/cloud/utils/limits'
// Types
import {AppState} from 'src/types'

export const DEFAULT_SECONDS = 259200 // 72 hours
export const DEFAULT_SECONDS = 30 * 24 * 60 * 60 // 30 days

export const DURATION_OPTIONS: DurationOption[] = [
{duration: '1h', displayText: '1 hour'},
Expand Down

0 comments on commit 17634df

Please sign in to comment.