Set WAL_BUCKET_SCOPE_PREFIX to the empty string

This commit is contained in:
Sergey Dudoladov 2018-03-01 11:16:47 +01:00
parent cb55749c1b
commit bcb8caeddf
1 changed files with 1 additions and 0 deletions

View File

@ -773,6 +773,7 @@ func (c *Cluster) generateCloneEnvironment(description *spec.CloneDescription) [
result = append(result, v1.EnvVar{Name: "CLONE_WAL_S3_BUCKET", Value: c.OpConfig.WALES3Bucket})
result = append(result, v1.EnvVar{Name: "CLONE_TARGET_TIME", Value: description.EndTimestamp})
result = append(result, v1.EnvVar{Name: "CLONE_WAL_BUCKET_SCOPE_SUFFIX", Value: getWALBucketScopeSuffix(description.Uid)})
result = append(result, v1.EnvVar{Name: "WAL_BUCKET_SCOPE_PREFIX", Value: ""})
}
return result