Enable all S3 features when initializing the store.

This commit is contained in:
miyuko
2026-04-11 11:14:56 +00:00
parent 86259acf9c
commit f400f8d246

View File

@@ -179,6 +179,12 @@ func NewS3Backend(ctx context.Context, config *S3Config) (*S3Backend, error) {
if err != nil {
return nil, err
}
err = (&S3Backend{client: client, bucket: bucket}).
EnableFeature(ctx, FeatureCheckDomainMarker)
if err != nil {
return nil, err
}
}
initS3BackendMetrics()