1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-29 05:41:02 +02:00
This commit is contained in:
Chris Lu 2020-12-02 00:09:19 -08:00
parent f3bb645018
commit 003b6245e7

View file

@ -108,7 +108,7 @@ func batchVacuumVolumeCommit(grpcDialOption grpc.DialOption, vl *VolumeLayout, v
resp, err := volumeServerClient.VacuumVolumeCommit(context.Background(), &volume_server_pb.VacuumVolumeCommitRequest{
VolumeId: uint32(vid),
})
if resp.IsReadOnly {
if resp != nil && resp.IsReadOnly {
isReadOnly = true
}
return err