Skip to content

Commit

Permalink
Change polling rate
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorgullmark committed Feb 8, 2022
1 parent 5ca8dde commit b9b4299
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.

## [1.1.7] - 2022-02-08
#### Changed
- Changed polling interval to reduce load towards poe.ninja

## [1.1.6] - 2021-11-04
#### Fixed
- Fixed a bug where maps in Scourge leagues werent priced
Expand Down
2 changes: 1 addition & 1 deletion ExilenceNextApp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "exilence-next-app",
"version": "1.1.6",
"version": "1.1.7",
"private": true,
"dependencies": {
"@emotion/react": "^11.4.1",
Expand Down
2 changes: 1 addition & 1 deletion ExilenceNextApp/public/i18n/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
"here": "here",
"to_update_now": "to update now!",
"prices_fetched_from": "Prices fetched from ",
"prices_fetched_from_interval": "Updated every 20 minutes",
"prices_fetched_from_interval": "Updated hourly",
"not_available": "N/A",
"hour_suffix": "/ h",
"low_confidence_pricing": "Activate low confidence pricing",
Expand Down
2 changes: 1 addition & 1 deletion ExilenceNextApp/src/store/priceStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class PriceStore {
@observable activePriceSourceUuid: string = '';
@observable isUpdatingPrices: boolean = false;

@observable pollingIntervalMinutes: number = 20;
@observable pollingIntervalMinutes: number = 60;
@observable checkInterval: number = 60 * 1000 * 1;

constructor(private rootStore: RootStore) {
Expand Down

0 comments on commit b9b4299

Please sign in to comment.