set reporter.enabled default to true (#786)

pull/794/head
lepdou 2 years ago committed by GitHub
parent 4a5a39c5f7
commit ee14101339
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -20,3 +20,4 @@
- [Feature: support nacos registry](https://github.com/Tencent/spring-cloud-tencent/pull/757)
- [Bugfix: fix reactor concurrent bug when get instances & fix spring-retry fuse not working bug](https://github.com/Tencent/spring-cloud-tencent/pull/775)
- [Fix issue: prompt no registration if web dependence was not imported.](https://github.com/Tencent/spring-cloud-tencent/pull/777)
- [set reporter.enabled default to true](https://github.com/Tencent/spring-cloud-tencent/pull/786)

@ -35,7 +35,7 @@ public class RpcEnhancementReporterProperties {
/**
* Whether report call result to polaris.
*/
private boolean enabled;
private boolean enabled = true;
/**
* Specify the Http status code(s) that needs to be reported as FAILED.

@ -9,7 +9,7 @@
{
"name": "spring.cloud.tencent.rpc-enhancement.reporter.enabled",
"type": "java.lang.Boolean",
"defaultValue": false,
"defaultValue": true,
"description": "Whether report call result to polaris."
},
{

Loading…
Cancel
Save