Skip to content

Commit be6e8f7

Browse files
authored
[QoS][CometBFT] Use CometBFT QoS for Pocket* services (#325)
## Summary Use CometBFT as QoS for Pocket* services. ### Primary Changes: - Map all Pocket services to CometBFT QoS. ## Issue NoOp QoS was being used for Pocket services. - Issue or PR: #{ISSUE_OR_PR_NUMBER} ## Type of change Select one or more from the following: - [ ] New feature, functionality or library - [x] Bug fix - [ ] Code health or cleanup - [ ] Documentation - [ ] Other (specify) ## QoS Checklist ### E2E Validation & Tests - [x] `make path_up` - [ ] `make test_e2e_evm_shannon` - [ ] `make test_e2e_evm_morse` ### Observability - [x] 1. `make path_up` - [ ] 2. Run one of the following: - For `Shannon` with `anvil`: `make test_request__shannon_relay_util_100` - For `Morse` with `F00C`: `make test_request__morse_relay_util_100` - [ ] 3. Visit [PATH Relay Grafana Dashboard](http://localhost:3003/d/relays/path-service-requests) to view results ## Sanity Checklist - [x] I have updated the GitHub Issue `assignees`, `reviewers`, `labels`, `project`, `iteration` and `milestone` - [ ] For docs, I have run `make docusaurus_start` - [ ] For code, I have run `make test_all` - [ ] For configurations, I have updated the documentation - [ ] I added `TODO`s where applicable
1 parent 1a41fbb commit be6e8f7

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

config/service_qos_config.go

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,8 +429,21 @@ var shannonServices = []ServiceQoSConfig{
429429
// Osmosis
430430
cometbft.NewCometBFTServiceQoSConfig("osmosis", "osmosis"),
431431

432+
// *** Pocket Services ***
433+
434+
// Pocket Mainnet and Beta Testnet
435+
cometbft.NewCometBFTServiceQoSConfig("pocket", "pocket"),
436+
437+
// Pocket Mainnet
438+
cometbft.NewCometBFTServiceQoSConfig("pocket-alpha", "pocket-alpha"),
439+
cometbft.NewCometBFTServiceQoSConfig("pocket-beta", "pocket-beta"),
440+
432441
// Pocket Beta Testnet
433-
cometbft.NewCometBFTServiceQoSConfig("pocket-beta-rpc", "pocket-beta"),
442+
cometbft.NewCometBFTServiceQoSConfig("pocket-beta1", "pocket-beta1"),
443+
cometbft.NewCometBFTServiceQoSConfig("pocket-beta2", "pocket-beta2"),
444+
cometbft.NewCometBFTServiceQoSConfig("pocket-beta3", "pocket-beta3"),
445+
cometbft.NewCometBFTServiceQoSConfig("pocket-beta4", "pocket-beta4"),
446+
cometbft.NewCometBFTServiceQoSConfig("pocket-beta5", "pocket-beta5"),
434447

435448
// Cosmos Hub
436449
cometbft.NewCometBFTServiceQoSConfig("cometbft", "cosmoshub-4"),

0 commit comments

Comments
 (0)