diff options
Diffstat (limited to 'go/replication/store_replicate.go')
| -rw-r--r-- | go/replication/store_replicate.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/go/replication/store_replicate.go b/go/replication/store_replicate.go index bc630c5d1..3e709de44 100644 --- a/go/replication/store_replicate.go +++ b/go/replication/store_replicate.go @@ -71,7 +71,7 @@ func ReplicatedDelete(masterNode string, store *storage.Store, volumeId storage. } func distributedOperation(masterNode string, store *storage.Store, volumeId storage.VolumeId, op func(location operation.Location) bool) bool { - if lookupResult, lookupErr := operation.Lookup(masterNode, volumeId); lookupErr == nil { + if lookupResult, lookupErr := operation.Lookup(masterNode, volumeId.String()); lookupErr == nil { length := 0 selfUrl := (store.Ip + ":" + strconv.Itoa(store.Port)) results := make(chan bool) |
