zrlw
zrlw
i mean you could write an junit test by calling java ```Process``` to run your script and assert its result.
> I will look into this and add a comment when I made changes Any progress?
it's might have more concise way to fix https://github.com/apache/dubbo/issues/15843 see details at https://github.com/apache/dubbo/pull/15872
> This issue is not just about the subscription page; it involves all places where names are displayed in Nacos, including the configuration center and metadataReport. The simplest way to...
set dubbo.onlyUseMetadataV2 of your provider to false
``` dubbo: registry: address: nacos://127.0.0.1:8848?username=nacos&password=nacos register-mode: instance protocols: tri: name: tri port: 8080 dubbo: name: dubbo port: 20880 ``` you should use "```" to enclosed your configuration or code snippet...
debug ExporterDeployListener#onModuleStarted at your provider side to see why metadataServiceExporter doesn't export v1.
or you might bypass it by changing provider metadataType from local to remote ``` dubbo: application: metadata-type: remote ```
``` ds.setTestWhileIdle(true); ``` druid空闲保活还需要设置keepAlive为true,否则无效
add test cases to check its effectiveness?