Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ The following emojis are used to highlight certain changes:

### Changed

- `ipns`: The `DefaultRecordTTL` changed from `1h` to `5m` [#859](https://github.com/ipfs/boxo/pull/859)

### Removed

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion ipns/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ const (
// cache before checking for update again. The function of this TTL is
// similar to TTL of DNS record, and the default here is a trade-off
// between faster updates and benefiting from various types of caching.
DefaultRecordTTL = 1 * time.Hour
DefaultRecordTTL = 5 * time.Minute
)