Browse Source

Merge branch 'master' into mq

pull/5890/head
chrislu 8 months ago
parent
commit
77a7c5c2a0
  1. 2
      k8s/charts/seaweedfs/Chart.yaml
  2. 2
      weed/replication/sink/s3sink/s3_sink.go
  3. 1
      weed/stats/disk_openbsd.go

2
k8s/charts/seaweedfs/Chart.yaml

@ -2,4 +2,4 @@ apiVersion: v1
description: SeaweedFS
name: seaweedfs
appVersion: "3.67"
version: 3.67.0
version: 3.67.1

2
weed/replication/sink/s3sink/s3_sink.go

@ -1,6 +1,7 @@
package S3Sink
import (
"encoding/base64"
"fmt"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/credentials"
@ -11,7 +12,6 @@ import (
"github.com/seaweedfs/seaweedfs/weed/s3api/s3_constants"
"strconv"
"strings"
"encoding/base64"
"github.com/seaweedfs/seaweedfs/weed/filer"
"github.com/seaweedfs/seaweedfs/weed/glog"

1
weed/stats/disk_openbsd.go

@ -22,4 +22,3 @@ func fillInDiskStatus(disk *volume_server_pb.DiskStatus) {
disk.PercentUsed = float32((float64(disk.Used) / float64(disk.All)) * 100)
return
}
Loading…
Cancel
Save