Browse Source

S3 Tables: use os.ModeDir constant in filer_ops.go

- Replace magic number 1<<31 with os.ModeDir for better readability.
- Added necessary os import.
pull/8147/head
Chris Lu 3 days ago
parent
commit
5cea00ff07
  1. 3
      weed/s3api/s3tables/filer_ops.go

3
weed/s3api/s3tables/filer_ops.go

@ -4,6 +4,7 @@ import (
"context"
"errors"
"fmt"
"os"
"time"
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
@ -27,7 +28,7 @@ func (h *S3TablesHandler) createDirectory(ctx context.Context, client filer_pb.S
Attributes: &filer_pb.FuseAttributes{
Mtime: now,
Crtime: now,
FileMode: uint32(0755 | 1<<31), // Directory mode
FileMode: uint32(0755 | os.ModeDir), // Directory mode
},
},
})

Loading…
Cancel
Save