Update store.go

This commit is contained in:
İsmail
2024-11-04 14:46:16 +03:00
committed by GitHub
parent 1de14010c8
commit 9b090ba8a9

View File

@@ -200,7 +200,7 @@ func NewStore(ctx context.Context, kind StoreEngine, dataDir string, metrics tel
return newPostgresStore(ctx, metrics)
case MysqlStoreEngine:
log.WithContext(ctx).Info("using MySQL store engine")
return newMySqlStore(ctx, metrics)
return newMysqlStore(ctx, metrics)
default:
return nil, fmt.Errorf("unsupported kind of store: %s", kind)
}