diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2018-05-06 14:29:44 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2018-05-06 14:29:44 +0200 |
| commit | d2eb3e07bf77bcb1fa85f1ddd768fffc5bb2a3b4 (patch) | |
| tree | 249decdde6e98e3bf4690461cee3d0553539c812 /index.js | |
| parent | c8d900349a2a518c5fee9610b6a903a2ff546e50 (diff) | |
| download | brokentalents-d2eb3e07bf77bcb1fa85f1ddd768fffc5bb2a3b4.tar.gz brokentalents-d2eb3e07bf77bcb1fa85f1ddd768fffc5bb2a3b4.zip | |
remove rate limit, do not crash on http 4xx
Diffstat (limited to 'index.js')
| -rw-r--r-- | index.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ function main() { const firstOfMay = moment('2018-05-01'); const later = R.curry((base, hs) => base.clone().add(hs, 'hours')); - const hours = R.range(0, 24 * 4); + const hours = R.range(0, 24 * 5); const laterMoments = R.map(later(firstOfMay), hours); const futures = R.map(loadFTimestamped, laterMoments); |
