From 6480f6c843bb4854a4880d756f36b732a1681024 Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Sun, 13 Aug 2023 16:14:59 +0200 Subject: [PATCH] Fix global shared bucket name to conform to S3 naming standards --- entrypoint/src/garage/garage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint/src/garage/garage.go b/entrypoint/src/garage/garage.go index 39788ee..8df9129 100644 --- a/entrypoint/src/garage/garage.go +++ b/entrypoint/src/garage/garage.go @@ -19,7 +19,7 @@ const ( // GlobalBucket is the name of the global garage bucket which is // accessible to all hosts in the network. - GlobalBucket = "_global" + GlobalBucket = "global-shared" // ReplicationFactor indicates the replication factor set on the garage // cluster. We currently only support a factor of 3.