Closed tayfunelmas closed 1 month ago
Adding @khorolets as reviewer due to the flag change for Indexers.
Attention: Patch coverage is 21.21212%
with 26 lines
in your changes missing coverage. Please review.
Project coverage is 71.59%. Comparing base (
ea8ec28
) to head (511de97
). Report is 4 commits behind head on master.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
We change the
--download-config
parameter to take a string.neard init --download-config validator
downloads theconfig.json
file for validators (tracking single shard, loading memtries).neard init --download-config rpc
downloads theconfig.json
file for non-validator RPC nodes (tracking all shards, NOT loading memtries).neard init --download-config archival
downloads theconfig.json
file for non-validator archival nodes (tracking all shards, NOT loading memtries, archive field set to true).neard init --download-config
(with no value) defaults tovalidator
config (for backwards compatibility).We map the flag to a specific URL containing the config type. The new config files per config type can be found at https://github.com/tayfunelmas/near-configs. The new config files are already uploaded to AWS S3 with the new URLs.
NOTE: For indexer and chainsync-loadtest params, we use
rpc
config type.Next: We will update the Near validator documentation to use the new flag value.
Tracking issue: #12070