cluster: extend usage of the ZoneRegionsFileName constant

Signed-off-by: Alejandro Mery <amery@jpi.io>
This commit is contained in:
2024-03-02 20:34:10 +00:00
parent 45dc2291bf
commit d51275fb1e
+2 -2
View File
@@ -191,7 +191,7 @@ func (z *Zone) SyncRegions() error {
}
func (z *Zone) syncZoneRegions() error {
name := filepath.Join(z.Name, "regions")
name := filepath.Join(z.Name, ZoneRegionsFileName)
if len(z.Regions) > 0 {
var buf bytes.Buffer
@@ -210,7 +210,7 @@ func (z *Zone) syncZoneRegions() error {
// SyncRegions writes to the file system the regions covered
// by this meta-region
func (r *Region) SyncRegions() error {
name := filepath.Join(r.Name, "regions")
name := filepath.Join(r.Name, ZoneRegionsFileName)
if len(r.Regions) > 0 {
var buf bytes.Buffer