disable featureTransactional in alicloud tablestore statae backend (#2742)

Signed-off-by: handlerww <handlerww@gmail.com>
This commit is contained in:
Yiwen Chen 2023-04-04 01:49:29 +08:00 committed by GitHub
parent 9a27383b01
commit 6262e138a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ type tablestoreMetadata struct {
func NewAliCloudTableStore(logger logger.Logger) state.Store {
return &AliCloudTableStore{
features: []state.Feature{state.FeatureETag, state.FeatureTransactional},
features: []state.Feature{state.FeatureETag},
logger: logger,
}
}