You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by il...@apache.org on 2021/04/07 09:07:45 UTC

[ignite] branch master updated: IGNITE-14482 replaced ref with value in code snippet - Fixes #8974.

This is an automated email from the ASF dual-hosted git repository.

ilyak pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new b94aa78  IGNITE-14482 replaced ref with value in code snippet - Fixes #8974.
b94aa78 is described below

commit b94aa78a4f7367f516a8ebf4fe1c302f3404fd62
Author: IgGusev <de...@mail.ru>
AuthorDate: Wed Apr 7 12:04:41 2021 +0300

    IGNITE-14482 replaced ref with value in code snippet - Fixes #8974.
    
    Signed-off-by: Ilya Kasnacheev <il...@gmail.com>
---
 docs/_docs/clustering/discovery-in-the-cloud.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/_docs/clustering/discovery-in-the-cloud.adoc b/docs/_docs/clustering/discovery-in-the-cloud.adoc
index 6372015..0d74b81 100644
--- a/docs/_docs/clustering/discovery-in-the-cloud.adoc
+++ b/docs/_docs/clustering/discovery-in-the-cloud.adoc
@@ -249,7 +249,7 @@ tab:XML[]
     <bean class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">
       <property name="ipFinder">
         <bean class="org.apache.ignite.spi.discovery.tcp.ipfinder.gce.TcpDiscoveryGoogleStorageIpFinder">
-          <property name="projectName" ref="YOUR_GOOGLE_PLATFORM_PROJECT_NAME"/>
+          <property name="projectName" value="YOUR_GOOGLE_PLATFORM_PROJECT_NAME"/>
           <property name="bucketName" value="YOUR_BUCKET_NAME"/>
           <property name="serviceAccountId" value="YOUR_SERVICE_ACCOUNT_ID"/>
           <property name="serviceAccountP12FilePath" value="PATH_TO_YOUR_PKCS12_KEY"/>