ivandasch commented on a change in pull request #8686: URL: https://github.com/apache/ignite/pull/8686#discussion_r577509176
########## File path: modules/ducktests/tests/ignitetest/services/utils/ignite_aware.py ########## @@ -420,10 +420,10 @@ def _update_ssl_config_with_globals(self, dict_name: str, default_jks: str): """ Update ssl configuration. """ - _dict = self.globals.get(dict_name) - if _dict is not None: - ssl_context_factory = SslContextFactory(self.install_root, **_dict) + _dict = self.globals.get(dict_name) + if _dict is not None and "ssl" in _dict: + ssl_context_factory = SslContextFactory(self.install_root, **_dict.get("ssl")) else: Review comment: just `**_dict['ssl']` ---------------------------------------------------------------- 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: us...@infra.apache.org