fix bug: filer DELETE

This commit is contained in:
DaLin
2016-06-11 01:16:19 +08:00
parent e416679cea
commit fa2a7b5f2f
4 changed files with 19 additions and 7 deletions

View File

@@ -68,16 +68,16 @@ func (c *CassandraStore) Get(fullFileName string) (fid string, err error) {
}
// Currently the fid is not returned
func (c *CassandraStore) Delete(fullFileName string) (fid string, err error) {
func (c *CassandraStore) Delete(fullFileName string) (err error) {
if err := c.session.Query(
`DELETE FROM seaweed_files WHERE path = ?`,
fullFileName).Exec(); err != nil {
if err != gocql.ErrNotFound {
glog.V(0).Infof("Failed to delete file %s: %v", fullFileName, err)
}
return "", err
return err
}
return "", nil
return nil
}
func (c *CassandraStore) Close() {