zrlw commented on PR #637:
URL:
https://github.com/apache/dubbo-spi-extensions/pull/637#issuecomment-2978997454
according to
org.apache.dubbo.metadata.store.zookeeper.ZookeeperMetadataReport, all of them
should be taken as persistent data.
ZookeeperMetadataReport.java
```
@Override
protected void doStoreProviderMetadata(MetadataIdentifier
providerMetadataIdentifier, String serviceDefinitions) {
storeMetadata(providerMetadataIdentifier, serviceDefinitions);
}
@Override
protected void doStoreConsumerMetadata(MetadataIdentifier
consumerMetadataIdentifier, String value) {
storeMetadata(consumerMetadataIdentifier, value);
}
private void storeMetadata(MetadataIdentifier metadataIdentifier, String
v) {
zkClient.createOrUpdate(getNodePath(metadataIdentifier), v, false);
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]