update server names

Chris Lu 2021-01-22 19:41:57 -08:00
parent 5589a46af9
commit 08d1b95e84
3 changed files with 10 additions and 13 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 104 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 110 KiB

After

Width:  |  Height:  |  Size: 104 KiB

@ -1,20 +1,23 @@
WeedMount.Start{
meta_updates = WeedFiler.PublishSubscribe{
Mount.Background{
meta_updates = Filer.PublishSubscribe{
}
}
fileContent = WeedMount.ReadFile{
location = WeedFiler.LookupVolumeId{
Content = Mount.Read{
metadata = LocalMetadata{
}
location = Filer.LookupVolumeId{
location = CachedLookup{}
location = Master.IfCacheMiss{}
}
chunks = VolumeServer.ReadChunks(){}
}
success = WeedMount.WriteFile{
fileIds = WeedFiler.Assign{
success = Mount.WriteFile{
fileIds = Filer.Assign{
fileIds = Master.Assign{}
}
success = VolumeServer.WriteChunks(fileId){}
success = WeedFiler.WriteMetaData{
success = Filer.WriteMetaData{
success = FilerStore.SaveMetaData{}
VolumeServer.PurgeOldChunks{}
}
@ -23,11 +26,5 @@ success = WeedMount.WriteFile{
metadata = Filer.Read(path){
metadata = FilerStore.Lookup(path)
}
volumeServerLocation = WeedMaster.Lookup(volumdId)
content = VolumeServer.Read(fileId) {
}
fileContent = WeedMount.ReadFile{
metadata = WeedFiler.ReadMetaData{}
chunks = VolumeServer.ReadChunks(){}
}