From 1e99a52cb1194d1d1d3b6f2eb886c6130fa1a58b Mon Sep 17 00:00:00 2001 From: Viktors Garkavijs <45557691+progvb@users.noreply.github.com> Date: Thu, 16 Jan 2025 00:45:05 +0900 Subject: [PATCH] docs: fix references about other integrations in spanner doc (#3413) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * docs: fix references about other integrations (#1) The original text says: > Other Google Cloud database-related integrations like Spanner and Firestore can introduce `PlatformTransactionManager` … However, the docs _are_ about Spanner integration. * add Datastore to text as other Google Cloud database-related integrations. --------- Co-authored-by: Min Zhu --- docs/src/main/asciidoc/spanner.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/spanner.adoc b/docs/src/main/asciidoc/spanner.adoc index 6ac8a776e5..492cb7a06a 100644 --- a/docs/src/main/asciidoc/spanner.adoc +++ b/docs/src/main/asciidoc/spanner.adoc @@ -960,7 +960,7 @@ This feature requires a bean of `SpannerTransactionManager`, which is provided w If a method annotated with `@Transactional` calls another method also annotated, then both methods will work within the same transaction. `performReadOnlyTransaction` and `performReadWriteTransaction` cannot be used in `@Transactional` annotated methods because Cloud Spanner does not support transactions within transactions. -Other Google Cloud database-related integrations like Spanner and Firestore can introduce `PlatformTransactionManager` beans, and can interfere with Datastore Transaction Manager. To disambiguate, explicitly specify the name of the transaction manager bean for such `@Transactional` methods. Example: +Other Google Cloud database-related integrations like Datastore and Firestore can introduce `PlatformTransactionManager` beans, and can interfere with Spanner Transaction Manager. To disambiguate, explicitly specify the name of the transaction manager bean for such `@Transactional` methods. Example: [source,java] ----