From 145c1f78ae0762e6ecdb3f6f12d464b300fca92a Mon Sep 17 00:00:00 2001
From: Randy Coulman <rcoulman@influxdata.com>
Date: Tue, 31 Dec 2019 12:18:50 -0800
Subject: [PATCH 1/2] feat(bucket): Increase default retention to 30 days

---
 CHANGELOG.md                            | 1 +
 ui/src/buckets/components/Retention.tsx | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index bd572212a1e..fa363646649 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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. [TBD](https://github.com/influxdata/influxdb/pull/TBD): Increase default bucket retention period to 30 days
 
 ### Bug Fixes
 
diff --git a/ui/src/buckets/components/Retention.tsx b/ui/src/buckets/components/Retention.tsx
index e9b14049799..5d0c8d3566c 100644
--- a/ui/src/buckets/components/Retention.tsx
+++ b/ui/src/buckets/components/Retention.tsx
@@ -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'},

From c0649d4d4b2fd5e2bc7023942ab7f24c5796fa0e Mon Sep 17 00:00:00 2001
From: Randy Coulman <rcoulman@influxdata.com>
Date: Thu, 2 Jan 2020 13:51:08 -0800
Subject: [PATCH 2/2] docs(CHANGELOG): Update PR number in changelog

---
 CHANGELOG.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index fa363646649..38eb22735c6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -26,7 +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. [TBD](https://github.com/influxdata/influxdb/pull/TBD): Increase default bucket retention period to 30 days
+1. [16389](https://github.com/influxdata/influxdb/pull/16389): Increase default bucket retention period to 30 days
 
 ### Bug Fixes