Disable OrphanResponseLogReporter via YML file config

I would like to know if it is possible to disable OrphanResponseLogReporter via YML file config in a SpringBoot app. , setting the logIntervalNanos to 0

Hi @sandro_rey, the SDK can disable it if you set a system property.

com.couchbase.orphanResponseReportingEnabled=false

should do the trick. Whether you can fold that in via YML I have no idea, maybe spring boot allows you to set system properties through yaml files. If not you always have the option to manually disable it on the environment config in spring when creating the bean.

1 Like