Merge pull request #7918 from blockscout/vb-monitor-memory-limit

Fix "Elixir.Indexer.Memory.Monitor",{{badkey,limit}
pull/7928/head
Victor Baranov 1 year ago committed by GitHub
commit 533a059dc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      CHANGELOG.md
  2. 3
      apps/indexer/lib/indexer/memory/monitor.ex

@ -25,7 +25,7 @@
### Chore
- [#7901](https://github.com/blockscout/blockscout/pull/7901) - Fix Docker image build
- [#7890](https://github.com/blockscout/blockscout/pull/7890) - Resolve warning: Application.get_env/2 is discouraged in the module body, use Application.compile_env/3 instead
- [#7890](https://github.com/blockscout/blockscout/pull/7890), [#7918](https://github.com/blockscout/blockscout/pull/7918) - Resolve warning: Application.get_env/2 is discouraged in the module body, use Application.compile_env/3 instead
- [#7863](https://github.com/blockscout/blockscout/pull/7863) - Add max_age for account sessions
- [#7841](https://github.com/blockscout/blockscout/pull/7841) - CORS setup for docker-compose config with new frontend
- [#7832](https://github.com/blockscout/blockscout/pull/7832), [#7891](https://github.com/blockscout/blockscout/pull/7891) - API v2: Add block_number, block_hash to logs

@ -14,7 +14,8 @@ defmodule Indexer.Memory.Monitor do
alias Indexer.Memory.Shrinkable
defstruct timer_interval: :timer.minutes(1),
defstruct limit: 0,
timer_interval: :timer.minutes(1),
timer_reference: nil,
shrinkable_set: MapSet.new()

Loading…
Cancel
Save