diff options
| author | Chris Lu <chris.lu@gmail.com> | 2018-10-06 17:10:15 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2018-10-06 17:10:15 -0700 |
| commit | a5b5887efce03252b0f64b9918e81a0ea59beac7 (patch) | |
| tree | 1ea7a6b66a84be5684a21ef0c4e5822e22347e33 | |
| parent | 84d4a2c8a067518f403a3777790c67955d64ade3 (diff) | |
| download | seaweedfs-a5b5887efce03252b0f64b9918e81a0ea59beac7.tar.xz seaweedfs-a5b5887efce03252b0f64b9918e81a0ea59beac7.zip | |
add filer replication to aws s3
| -rw-r--r-- | weed/command/filer_replication.go | 2 | ||||
| -rw-r--r-- | weed/replication/sink/s3sink/s3_sink.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/weed/command/filer_replication.go b/weed/command/filer_replication.go index 02b6f70eb..c62b01445 100644 --- a/weed/command/filer_replication.go +++ b/weed/command/filer_replication.go @@ -77,7 +77,7 @@ func runFilerReplicate(cmd *Command, args []string) bool { } if dataSink == nil { - println("no data sink defined:") + println("no data sink configured:") for _, sk := range sink.Sinks { println(" " + sk.GetName()) } diff --git a/weed/replication/sink/s3sink/s3_sink.go b/weed/replication/sink/s3sink/s3_sink.go index 997bed30b..ad41a0e99 100644 --- a/weed/replication/sink/s3sink/s3_sink.go +++ b/weed/replication/sink/s3sink/s3_sink.go @@ -29,7 +29,7 @@ func init() { } func (s3sink *S3Sink) GetName() string { - return "filer" + return "s3" } func (s3sink *S3Sink) GetSinkToDirectory() string { |
