From 15c650f95109057182791b7ef5ea18c9c128191c Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 3 Sep 2022 09:09:37 +0200 Subject: [PATCH 1/2] Bugfix/fix blog post link (#1216) * Fix link * Update sitemap.xml --- apps/client/src/app/pages/blog/blog-page.html | 2 +- apps/client/src/assets/sitemap.xml | 34 +++++++++---------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/apps/client/src/app/pages/blog/blog-page.html b/apps/client/src/app/pages/blog/blog-page.html index 871af06a5..2cdd2a604 100644 --- a/apps/client/src/app/pages/blog/blog-page.html +++ b/apps/client/src/app/pages/blog/blog-page.html @@ -84,7 +84,7 @@
diff --git a/apps/client/src/assets/sitemap.xml b/apps/client/src/assets/sitemap.xml index 1bc1b3bbb..b6b8a70e9 100644 --- a/apps/client/src/assets/sitemap.xml +++ b/apps/client/src/assets/sitemap.xml @@ -6,70 +6,70 @@ http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"> https://ghostfol.io - 2022-08-18T00:00:00+00:00 + 2022-09-01T00:00:00+00:00 https://ghostfol.io/de/blog/2021/07/hallo-ghostfolio - 2022-08-18T00:00:00+00:00 + 2022-09-01T00:00:00+00:00 https://ghostfol.io/en/about - 2022-08-18T00:00:00+00:00 + 2022-09-01T00:00:00+00:00 https://ghostfol.io/en/about/changelog - 2022-08-18T00:00:00+00:00 + 2022-09-01T00:00:00+00:00 https://ghostfol.io/en/blog - 2022-08-18T00:00:00+00:00 + 2022-09-01T00:00:00+00:00 https://ghostfol.io/en/blog/2021/07/hello-ghostfolio - 2022-08-18T00:00:00+00:00 + 2022-09-01T00:00:00+00:00 https://ghostfol.io/en/blog/2022/01/ghostfolio-first-months-in-open-source - 2022-08-18T00:00:00+00:00 + 2022-09-01T00:00:00+00:00 https://ghostfol.io/en/blog/2022/07/ghostfolio-meets-internet-identity - 2022-08-18T00:00:00+00:00 + 2022-09-01T00:00:00+00:00 https://ghostfol.io/en/blog/2022/07/how-do-i-get-my-finances-in-order - 2022-08-18T00:00:00+00:00 + 2022-09-01T00:00:00+00:00 https://ghostfol.io/en/blog/2022/08/500-stars-on-github - 2022-08-18T00:00:00+00:00 + 2022-09-01T00:00:00+00:00 https://ghostfol.io/en/demo - 2022-08-18T00:00:00+00:00 + 2022-09-01T00:00:00+00:00 https://ghostfol.io/en/faq - 2022-08-18T00:00:00+00:00 + 2022-09-01T00:00:00+00:00 https://ghostfol.io/en/features - 2022-08-18T00:00:00+00:00 + 2022-09-01T00:00:00+00:00 https://ghostfol.io/en/markets - 2022-08-18T00:00:00+00:00 + 2022-09-01T00:00:00+00:00 https://ghostfol.io/en/pricing - 2022-08-18T00:00:00+00:00 + 2022-09-01T00:00:00+00:00 https://ghostfol.io/en/register - 2022-08-18T00:00:00+00:00 + 2022-09-01T00:00:00+00:00 https://ghostfol.io/en/resources - 2022-08-18T00:00:00+00:00 + 2022-09-01T00:00:00+00:00 From 8cb1b3f9255a9088356ca4a80170661b71e8f0f2 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 3 Sep 2022 09:09:57 +0200 Subject: [PATCH 2/2] Feature/decrease rate limiter duration (#1217) * Decrease rate limiter duration * Update changelog --- CHANGELOG.md | 4 ++++ apps/api/src/services/data-gathering.module.ts | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 66c6e6e55..619af8173 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Changed + +- Decreased the rate limiter duration of queue jobs from 5 to 4 seconds + ### Fixed - Made the environment variables `REDIS_HOST` and `REDIS_PORT` mandatory diff --git a/apps/api/src/services/data-gathering.module.ts b/apps/api/src/services/data-gathering.module.ts index 6f81a90d6..0083a8d75 100644 --- a/apps/api/src/services/data-gathering.module.ts +++ b/apps/api/src/services/data-gathering.module.ts @@ -17,7 +17,7 @@ import { SymbolProfileModule } from './symbol-profile.module'; imports: [ BullModule.registerQueue({ limiter: { - duration: ms('5 seconds'), + duration: ms('4 seconds'), max: 1 }, name: DATA_GATHERING_QUEUE