Skip to content

Commit

Permalink
fix: tiles seeding hierarchy (#31)
Browse files Browse the repository at this point in the history
* fix: tiles seeding hierarchy

* fix: use numebr format in TILES_SEEDING_MAX_ZOOM
  • Loading branch information
almog8k authored Dec 1, 2024
1 parent 116d995 commit de960d9
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions config/custom-environment-variables.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,18 @@
"taskBatchSize": {
"__name": "TILES_MERGING_TASK_BATCH_SIZE",
"__format": "number"
}
},
"tilesSeeding": {
"type": "TILES_SEEDING_TASK_TYPE",
"grid": "TILES_SEEDING_GRID",
"maxZoom": {
"__name": "TILES_SEEDING_MAX_ZOOM",
"__format": "number"
},
"tilesSeeding": {
"type": "TILES_SEEDING_TASK_TYPE",
"grid": "TILES_SEEDING_GRID",
"maxZoom": "TILES_SEEDING_MAX_ZOOM",
"skipUncached": {
"__name": "TILES_SEEDING_SKIP_UNCACHED",
"__format": "boolean"
}
"skipUncached": {
"__name": "TILES_SEEDING_SKIP_UNCACHED",
"__format": "boolean"
}
}
}
Expand Down

0 comments on commit de960d9

Please sign in to comment.