fix gRpc nil response

This commit is contained in:
Chris Lu 2018-05-14 00:17:22 -07:00
parent c5cf9bd290
commit 67401f1908
2 changed files with 2 additions and 2 deletions

View file

@ -108,5 +108,5 @@ func (fs *FilerServer) DeleteEntry(ctx context.Context, req *filer_pb.DeleteEntr
}
}
}
return nil, err
return &filer_pb.DeleteEntryResponse{}, err
}

View file

@ -1,5 +1,5 @@
package util
const (
VERSION = "0.77"
VERSION = "0.78"
)