Skip to content
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

fix:fix agent2023 lossless not work #192

Merged
merged 4 commits into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,18 @@ spring.cloud.polaris.ratelimit.maxQueuingTime=1000
spring.cloud.tencent.rpc-enhancement.enabled=true
# switch for rpc-enhancement reporter feature
spring.cloud.tencent.rpc-enhancement.reporter.enabled=true
# switch for lossless feature
spring.cloud.polaris.lossless.enabled=true
andrewshan marked this conversation as resolved.
Show resolved Hide resolved
# switch for lossless port feature
spring.cloud.polaris.lossless.port=28080
# switch for lossless delayRegisterInterval feature
spring.cloud.polaris.lossless.delayRegisterInterval=30000
# switch for polaris stat feature
spring.cloud.polaris.stat.enabled=false
# port for polaris stat
spring.cloud.polaris.stat.port=0
# path for polaris stat
spring.cloud.polaris.stat.path=/metrics
# log level feature
logging.level.root=INFO

logging.level.root=INFO
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ public ConfigurationParserInterceptor() {
beanInjectors.add(new RouterBeanInjector());
beanInjectors.add(new LoadbalancerBeanInjector());
beanInjectors.add(new ConfigBeanInjector());
beanInjectors.add(new LosslessBeanInjector());
}


Expand Down