ptupitsyn commented on issue #10532:
URL: https://github.com/apache/ignite/issues/10532#issuecomment-1427387569

   @virendar5Kmr I don't know what kind of XML is used in your project. 
Assuming it is Spring XML:
   
   ```xml
       <bean id="igniteClient" class="org.apache.ignite.IgniteClientSpringBean">
           <property name="clientConfiguration">
               <bean 
class="org.apache.ignite.configuration.ClientConfiguration">
                   <property name="addresses">
                       <list>
                           <value>127.0.0.1:10800</value>
                       </list>
                   </property>
                   <property name="partitionAwarenessEnabled" value="false" />
               </bean>
           </property>
       </bean>
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to