in client/Apache.ShenYu.Client/Utils/Zookeeper/ZookeeperClient.cs [254:262]
public async Task<Stat> SetDataAsync(string path, byte[] data, int version = -1)
{
path = GetZooKeeperPath(path);
return await RetryUntilConnected(async () =>
{
var stat = await _zookeeperClient.setDataAsync(path, data, version);
return stat;
});
}