Issue 511 - Fix config names, config file indentation.

This commit is contained in:
Mayuresh Nirhali
2025-09-17 22:50:02 +05:30
parent 5bbd6f3a3c
commit 979763b5ec
3 changed files with 41 additions and 17 deletions

View File

@@ -22,8 +22,14 @@ modules:
handler:
type: std
role: bap
registryUrl: http://localhost:8080/reg
plugins:
registry:
id: registry
config:
url: http://localhost:8080/reg
retry_max: "3"
retry_wait_min: "100ms"
retry_wait_max: "500ms"
keyManager:
id: keymanager
config:
@@ -59,8 +65,14 @@ modules:
handler:
type: std
role: bap
registryUrl: http://localhost:8080/reg
plugins:
registry:
id: registry
config:
url: http://localhost:8080/reg
retry_max: "3"
retry_wait_min: "100ms"
retry_wait_max: "500ms"
keyManager:
id: keymanager
config:
@@ -92,8 +104,14 @@ modules:
handler:
type: std
role: bpp
registryUrl: http://localhost:8080/reg
plugins:
registry:
id: registry
config:
url: http://localhost:8080/reg
retry_max: "3"
retry_wait_min: "100ms"
retry_wait_max: "500ms"
keyManager:
id: keymanager
config:
@@ -125,8 +143,14 @@ modules:
handler:
type: std
role: bpp
registryUrl: http://localhost:8080/reg
plugins:
registry:
id: registry
config:
url: http://localhost:8080/reg
retry_max: "3"
retry_wait_min: "100ms"
retry_wait_max: "500ms"
keyManager:
id: keymanager
config:

View File

@@ -23,7 +23,7 @@ modules:
type: std
role: bap
plugins:
registry:
registry:
id: registry
config:
url: http://registry:3030/subscribers
@@ -42,7 +42,7 @@ modules:
cache:
id: cache
config:
addr: localhost:6379
addr: redis:6379
schemaValidator:
id: schemavalidator
config:
@@ -68,7 +68,7 @@ modules:
type: std
role: bap
plugins:
registry:
registry:
id: registry
config:
url: http://registry:3030/subscribers
@@ -87,7 +87,7 @@ modules:
cache:
id: cache
config:
addr: localhost:6379
addr: redis:6379
router:
id: router
config:
@@ -109,7 +109,7 @@ modules:
type: std
role: bpp
plugins:
registry:
registry:
id: registry
config:
url: http://registry:3030/subscribers
@@ -128,7 +128,7 @@ modules:
cache:
id: cache
config:
addr: localhost:6379
addr: redis:6379
schemaValidator:
id: schemavalidator
config:
@@ -148,7 +148,7 @@ modules:
type: std
role: bpp
plugins:
registry:
registry:
id: registry
config:
url: http://registry:3030/subscribers
@@ -167,7 +167,7 @@ modules:
cache:
id: cache
config:
addr: localhost:6379
addr: redis:6379
router:
id: router
config:
@@ -176,4 +176,4 @@ modules:
id: signer
steps:
- addRoute
- sign
- sign

View File

@@ -16,10 +16,10 @@ import (
// Config holds configuration parameters for the registry client.
type Config struct {
URL string
RetryMax int
RetryWaitMin time.Duration
RetryWaitMax time.Duration
URL string `yaml:"url" json:"url"`
RetryMax int `yaml:"retry_max" json:"retry_max"`
RetryWaitMin time.Duration `yaml:"retry_wait_min" json:"retry_wait_min"`
RetryWaitMax time.Duration `yaml:"retry_wait_max" json:"retry_wait_max"`
}
// RegistryClient encapsulates the logic for calling the registry endpoints.