Sega76 commented on a change in pull request #8294:
URL: https://github.com/apache/ignite/pull/8294#discussion_r532715389



##########
File path: 
modules/ducktests/tests/ignitetest/services/utils/templates/cache_macro.j2
##########
@@ -22,10 +22,20 @@
                 {% for cache in caches %}
                 <bean 
class="org.apache.ignite.configuration.CacheConfiguration">
                     <property name="name" value="{{ cache.name }}"/>
+                    <property name="cacheMode" value="{{ cache.cache_mode or 
'PARTITIONED' }}"/>
                     {% if cache.cache_mode == 'PARTITIONED' %}
-                        <property name="backups" value="{{ cache.backups or 0 
}}"/>
+                    <property name="backups" value="{{ cache.backups or 0 }}"/>
                     {% endif %}
                     <property name="atomicityMode" value="{{ 
cache.atomicity_mode or 'ATOMIC' }}"/>
+                    {% if cache.indexed_types %}
+                    <property name="indexedTypes">

Review comment:
       what for?
   this is part of the cache config




----------------------------------------------------------------
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.

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


Reply via email to