Skip to content

Commit 800e8ea

Browse files
committed
increase oeis update interval
1 parent 43b3858 commit 800e8ea

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ To install or update LODA, please follow the [installation instructions](https:/
22

33
## [Unreleased]
44

5+
### Enhancements
6+
7+
* Increase default OEIS update interval
8+
59
## v22.12.1
610

711
### Bugfixes

src/include/setup.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,9 @@ class Setup {
7878
private:
7979
static constexpr int64_t UNDEFINED_INT = -2; // cannot use -1
8080
static constexpr int64_t DEFAULT_GITHUB_UPDATE_INTERVAL = 1; // 1 day default
81-
static constexpr int64_t DEFAULT_OEIS_UPDATE_INTERVAL = 7; // 1 week default
82-
static constexpr int64_t DEFAULT_MAX_PROGRAM_AGE = 14; // 2 weeks default
81+
static constexpr int64_t DEFAULT_OEIS_UPDATE_INTERVAL =
82+
30; // 1 month default
83+
static constexpr int64_t DEFAULT_MAX_PROGRAM_AGE = 14; // 2 weeks default
8384
static constexpr int64_t DEFAULT_MAX_PHYSICAL_MEMORY = 1024; // 1 GB
8485

8586
static std::string LODA_HOME;

0 commit comments

Comments
 (0)