Skip to content

Commit

Permalink
Graduate s3 support to non-experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
dzbarsky committed Aug 24, 2024
1 parent fc6cf1c commit 89f4161
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ You can also build from source with either go native tooling or with Bazel, see
Enable Kinesis service (default true)
-enableSQS
Enable SQS service (default true)
-enableS3
Enable S3 service (default true)
-experimental_enableDynamoDB
Enable DynamoDB service (default true)
-experimental_enableS3
Enable S3 service (default true)
-kinesisDefaultDuration duration
How long to retain messages. Can be used to control memory usage. After creation, retention can be adjusted with [Increase/Decrease]StreamRetentionPeriod (default 24h0m0s)
-kinesisInitialShardsPerStream int
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func main() {

enableDynamoDB := flag.Bool("experimental_enableDynamoDB", true, "Enable DynamoDB service")

enableS3 := flag.Bool("experimental_enableS3", true, "Enable S3 service")
enableS3 := flag.Bool("enableS3", true, "Enable S3 service")
s3InitialBuckets := flag.String("s3InitialBuckets", "", "Buckets to create at startup. Example: bucket1,bucket2,bucket3")

enableSQS := flag.Bool("enableSQS", true, "Enable SQS service")
Expand Down

0 comments on commit 89f4161

Please sign in to comment.