Skip to content

Commit

Permalink
fix: bump to 80 again and set volume autoextend (#652)
Browse files Browse the repository at this point in the history
* fix: bump to 80 again

* fix: add auto-extend volume size
  • Loading branch information
hussedev authored Sep 2, 2024
1 parent 5efc429 commit 16753d0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion fly.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ kill_timeout = '5s'
[[mounts]]
source = 'indexer_staging'
destination = '/mnt/indexer'
initial_size = '50gb'
initial_size = '50GB'
auto_extend_size_threshold = 80
auto_extend_size_increment = "5GB"
auto_extend_size_limit = "100GB"
processes = ['indexer', 'web']

[http_service]
Expand Down
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type CoingeckoSupportedChainId =
| 42220
| 1088;

const CHAIN_DATA_VERSION = "79";
const CHAIN_DATA_VERSION = "80";

export type Token = {
code: string;
Expand Down

0 comments on commit 16753d0

Please sign in to comment.