This is an automated email from the ASF dual-hosted git repository.
ivandasch 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 597acab9b46 IGNITE-19117 [ducktests] Allow to disable the partition
awareness in the thin client configuration (#10606)
597acab9b46 is described below
commit 597acab9b466dbd3ebe81afbfe92f30010ab8556
Author: Sergey Korotkov <[email protected]>
AuthorDate: Mon Mar 27 15:37:35 2023 +0700
IGNITE-19117 [ducktests] Allow to disable the partition awareness in the
thin client configuration (#10606)
---
.../ignitetest/services/utils/templates/client_configuration_macro.j2 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/modules/ducktests/tests/ignitetest/services/utils/templates/client_configuration_macro.j2
b/modules/ducktests/tests/ignitetest/services/utils/templates/client_configuration_macro.j2
index ce03ccb297a..1b7630caeba 100644
---
a/modules/ducktests/tests/ignitetest/services/utils/templates/client_configuration_macro.j2
+++
b/modules/ducktests/tests/ignitetest/services/utils/templates/client_configuration_macro.j2
@@ -40,7 +40,7 @@
<property name="sslTrustCertificateKeyStorePassword" value="{{
config.ssl_params.trust_store_password }}"/>
{% endif %}
- {% if config.partition_awareness_enabled %}
+ {% if config.partition_awareness_enabled != None %}
<property name="partitionAwarenessEnabled" value="{{
config.partition_awareness_enabled }}"/>
{% endif %}
</bean>