-
Notifications
You must be signed in to change notification settings - Fork 691
feat: Add ignore-missing-files cli option to avoid crashing at startup #1896
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
acalcutt
merged 30 commits into
maptiler:master
from
andrewlaguna824:andrewlaguna824/ignore-missing-files
Jan 11, 2026
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
364c2d9
feat: Add ignore-missing-files cli option to avoid crashing at startup
andrewlaguna824 d4eb752
update
andrewlaguna824 fbce4e4
Merge branch 'master' of github.com:maptiler/tileserver-gl into andre…
andrewlaguna824 f0ab1df
cleanup
andrewlaguna824 9110fea
package lock
andrewlaguna824 83ec5ff
cli description
andrewlaguna824 7333ff7
Only add styles to repository if all sources resolve
andrewlaguna824 f04b3ad
Remove existing style from repo if it has bad sources
andrewlaguna824 3fa5265
Revert "Remove existing style from repo if it has bad sources"
andrewlaguna824 bb3d6f2
clean up log message
andrewlaguna824 1719140
Do not add style to repo if it has missing source
andrewlaguna824 52cfe83
remove redundant checks from serve_rendered.js since we validate in s…
andrewlaguna824 3a338b7
cleanup
andrewlaguna824 fb5e974
cleanup
andrewlaguna824 c7f2e2a
feat: Add ignore-missing-files cli option to avoid crashing at startup
andrewlaguna824 72ef436
update
andrewlaguna824 58a45df
cleanup
andrewlaguna824 f6c6ec1
package lock
andrewlaguna824 3b0ebde
cli description
andrewlaguna824 f42bf64
Only add styles to repository if all sources resolve
andrewlaguna824 ae97247
Remove existing style from repo if it has bad sources
andrewlaguna824 6ef9b5b
Revert "Remove existing style from repo if it has bad sources"
andrewlaguna824 959537e
clean up log message
andrewlaguna824 48c3385
Do not add style to repo if it has missing source
andrewlaguna824 e29eaff
remove redundant checks from serve_rendered.js since we validate in s…
andrewlaguna824 863fbb2
cleanup
andrewlaguna824 332fc77
cleanup
andrewlaguna824 6c0e468
Merge branch 'andrewlaguna824/ignore-missing-files' of github.com:and…
andrewlaguna824 ce8226c
pr comment: handle unconfigured data source in the style
andrewlaguna824 52b9ee3
Merge branch 'master' into andrewlaguna824/ignore-missing-files
acalcutt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tested these changes and everything works as expected, but only if the data source is configured: If there is a unconfigured data source in the style, we will have the previous behaviour.
This fixed the issue for me: okimiko@cc9cff8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Made the suggested changes and tested it on my end.