aboutsummaryrefslogtreecommitdiff
path: root/weed/shell
diff options
context:
space:
mode:
Diffstat (limited to 'weed/shell')
-rw-r--r--weed/shell/command_fs_mkdir.go3
-rw-r--r--weed/shell/command_volume_tier_move.go5
2 files changed, 7 insertions, 1 deletions
diff --git a/weed/shell/command_fs_mkdir.go b/weed/shell/command_fs_mkdir.go
index 71a9daece..11b663eec 100644
--- a/weed/shell/command_fs_mkdir.go
+++ b/weed/shell/command_fs_mkdir.go
@@ -6,6 +6,7 @@ import (
"github.com/chrislusf/seaweedfs/weed/util"
"io"
"os"
+ "time"
)
func init() {
@@ -43,6 +44,8 @@ func (c *commandFsMkdir) Do(args []string, commandEnv *CommandEnv, writer io.Wri
Name: name,
IsDirectory: true,
Attributes: &filer_pb.FuseAttributes{
+ Mtime: time.Now().Unix(),
+ Crtime: time.Now().Unix(),
FileMode: uint32(0777 | os.ModeDir),
},
},
diff --git a/weed/shell/command_volume_tier_move.go b/weed/shell/command_volume_tier_move.go
index 9e38c936d..19a515dab 100644
--- a/weed/shell/command_volume_tier_move.go
+++ b/weed/shell/command_volume_tier_move.go
@@ -8,6 +8,7 @@ import (
"github.com/chrislusf/seaweedfs/weed/wdclient"
"io"
"path/filepath"
+ "strings"
"time"
"github.com/chrislusf/seaweedfs/weed/storage/needle"
@@ -136,7 +137,9 @@ func doVolumeTierMove(commandEnv *CommandEnv, writer io.Writer, vid needle.Volum
for _, loc := range locations {
if loc.Url != dst.dataNode.Id {
if err = deleteVolume(commandEnv.option.GrpcDialOption, vid, loc.Url); err != nil {
- fmt.Fprintf(writer, "failed to delete volume %d on %s\n", vid, loc.Url)
+ if !strings.Contains(err.Error(), "not found") {
+ fmt.Fprintf(writer, "failed to delete volume %d on %s: %v\n", vid, loc.Url, err)
+ }
}
}
}